mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-11 18:33:14 +01:00
78 lines
1.6 KiB
C++
78 lines
1.6 KiB
C++
//===-- ir/irdsymbol.h - Codegen state for D vars/fields/params -*- C++ -*-===//
|
||
//
|
||
// LDC – the LLVM D compiler
|
||
//
|
||
// This file is distributed under the BSD-style LDC license. See the LICENSE
|
||
// file for details.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
//
|
||
// Classes for representing the status of D variables on their way though the
|
||
// codegen process.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
|
||
#ifndef LDC_IR_IRVAR_H
|
||
#define LDC_IR_IRVAR_H
|
||
|
||
#include "ir/ir.h"
|
||
#if LDC_LLVM_VER >= 303
|
||
#include "llvm/IR/Type.h"
|
||
#else
|
||
#include "llvm/Type.h"
|
||
#endif
|
||
|
||
struct IrFuncTyArg;
|
||
|
||
struct IrVar : IrBase
|
||
{
|
||
IrVar(VarDeclaration* var);
|
||
|
||
VarDeclaration* V;
|
||
llvm::Value* value;
|
||
};
|
||
|
||
// represents a global variable
|
||
struct IrGlobal : IrVar
|
||
{
|
||
IrGlobal(VarDeclaration* v);
|
||
|
||
llvm::Type *type;
|
||
llvm::Constant* constInit;
|
||
};
|
||
|
||
// represents a local variable variable
|
||
struct IrLocal : IrVar
|
||
{
|
||
IrLocal(VarDeclaration* v);
|
||
|
||
// Used for hybrid nested context creation.
|
||
int nestedDepth;
|
||
int nestedIndex;
|
||
};
|
||
|
||
// represents a function parameter
|
||
struct IrParameter : IrLocal
|
||
{
|
||
IrParameter(VarDeclaration* v);
|
||
IrFuncTyArg *arg;
|
||
bool isVthis; // true, if it is the 'this' parameter
|
||
};
|
||
|
||
// 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
|