mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-07 11:26:02 +03:00
35 lines
685 B
C++
35 lines
685 B
C++
#ifndef LLVMDC_IR_IRFUNCTION_H
|
|
#define LLVMDC_IR_IRFUNCTION_H
|
|
|
|
#include "ir/ir.h"
|
|
#include "ir/irlandingpad.h"
|
|
|
|
#include <vector>
|
|
|
|
// represents a function
|
|
struct IrFunction : IrBase
|
|
{
|
|
llvm::Function* func;
|
|
llvm::Instruction* allocapoint;
|
|
FuncDeclaration* decl;
|
|
TypeFunction* type;
|
|
|
|
bool queued;
|
|
bool defined;
|
|
llvm::Value* retArg;
|
|
llvm::Value* thisVar;
|
|
llvm::Value* nestedVar;
|
|
llvm::Value* _arguments;
|
|
llvm::Value* _argptr;
|
|
llvm::Constant* dwarfSubProg;
|
|
|
|
llvm::AllocaInst* srcfileArg;
|
|
llvm::AllocaInst* msgArg;
|
|
|
|
// landing pads for try statements
|
|
IRLandingPad landingPad;
|
|
|
|
IrFunction(FuncDeclaration* fd);
|
|
};
|
|
|
|
#endif
|