mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-11 10:16:36 +01:00
Completely seperated type and symbol generation. Should fix a lot of bugs, but is not yet 100% complete.
47 lines
799 B
C++
47 lines
799 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, size_t idx, size_t offset = 0);
|
|
|
|
unsigned index;
|
|
unsigned unionOffset;
|
|
|
|
protected:
|
|
llvm::Constant* constInit;
|
|
};
|
|
|
|
#endif
|