mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-04-29 06:30:39 +03:00
29 lines
1,016 B
C++
29 lines
1,016 B
C++
//===-- gen/function-inlining.h ---------------------------------*- C++ -*-===//
|
||
//
|
||
// LDC – the LLVM D compiler
|
||
//
|
||
// This file is distributed under the BSD-style LDC license. See the LICENSE
|
||
// file for details.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
//
|
||
// Determines whether a function is fit for inlining or not.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
|
||
#ifndef LDC_GEN_FUNCTION_INLINING_H
|
||
#define LDC_GEN_FUNCTION_INLINING_H
|
||
|
||
class FuncDeclaration;
|
||
|
||
/// Check whether the frontend knows that the function is already defined
|
||
/// in some other module (see DMD's FuncDeclaration::toObjFile).
|
||
bool alreadyOrWillBeDefined(FuncDeclaration &fdecl);
|
||
|
||
/// Returns whether `fdecl` should be emitted with externally_available
|
||
/// linkage to make it available for inlining.
|
||
///
|
||
/// If true, `semantic3` will have been run on the declaration.
|
||
bool defineAsExternallyAvailable(FuncDeclaration &fdecl);
|
||
|
||
#endif
|