mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 19:33:13 +01:00
50 lines
855 B
C++
50 lines
855 B
C++
#ifndef LDC_IR_IRVAR_H
|
|
#define LDC_IR_IRVAR_H
|
|
|
|
#include "ir/ir.h"
|
|
#include "llvm/Type.h"
|
|
|
|
struct IrVar : IrBase
|
|
{
|
|
IrVar(VarDeclaration* var);
|
|
|
|
VarDeclaration* V;
|
|
llvm::Value* value;
|
|
};
|
|
|
|
// represents a global variable
|
|
struct IrGlobal : IrVar
|
|
{
|
|
IrGlobal(VarDeclaration* v);
|
|
|
|
llvm::PATypeHolder type;
|
|
llvm::Constant* constInit;
|
|
};
|
|
|
|
// represents a local variable variable
|
|
struct IrLocal : IrVar
|
|
{
|
|
IrLocal(VarDeclaration* v);
|
|
|
|
bool byref; // Not used for -nested-ctx=array
|
|
int nestedDepth; // ditto
|
|
int nestedIndex;
|
|
};
|
|
|
|
// represents an aggregate field variable
|
|
struct IrField : IrVar
|
|
{
|
|
IrField(VarDeclaration* v);
|
|
|
|
unsigned index;
|
|
unsigned unionOffset;
|
|
|
|
llvm::Constant* getDefaultInit();
|
|
|
|
protected:
|
|
/// FIXME: only used for StructLiteralsExps
|
|
llvm::Constant* constInit;
|
|
};
|
|
|
|
#endif
|