2008-08-23 07:10:25 +04:00
|
|
|
//===-- CGValue.h - LLVM CodeGen wrappers for llvm::Value* ------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// These classes implement wrappers around llvm::Value in order to
|
|
|
|
// fully represent the range of values for C L- and R- values.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef CLANG_CODEGEN_CGVALUE_H
|
|
|
|
#define CLANG_CODEGEN_CGVALUE_H
|
|
|
|
|
|
|
|
#include "clang/AST/Type.h"
|
|
|
|
|
2008-09-09 05:06:48 +04:00
|
|
|
namespace llvm {
|
|
|
|
class Constant;
|
|
|
|
class Value;
|
|
|
|
}
|
|
|
|
|
2008-08-23 07:10:25 +04:00
|
|
|
namespace clang {
|
2008-08-29 12:11:39 +04:00
|
|
|
class ObjCPropertyRefExpr;
|
2009-08-20 21:02:02 +04:00
|
|
|
class ObjCImplicitSetterGetterRefExpr;
|
2008-08-29 12:11:39 +04:00
|
|
|
|
2008-08-23 07:10:25 +04:00
|
|
|
namespace CodeGen {
|
|
|
|
|
|
|
|
/// RValue - This trivial value class is used to represent the result of an
|
|
|
|
/// expression that is evaluated. It can be one of three things: either a
|
|
|
|
/// simple LLVM SSA value, a pair of SSA values for complex numbers, or the
|
|
|
|
/// address of an aggregate value in memory.
|
|
|
|
class RValue {
|
|
|
|
llvm::Value *V1, *V2;
|
|
|
|
// TODO: Encode this into the low bit of pointer for more efficient
|
|
|
|
// return-by-value.
|
|
|
|
enum { Scalar, Complex, Aggregate } Flavor;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-05-24 00:21:36 +04:00
|
|
|
bool Volatile:1;
|
2008-08-23 07:10:25 +04:00
|
|
|
public:
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-08-23 07:10:25 +04:00
|
|
|
bool isScalar() const { return Flavor == Scalar; }
|
|
|
|
bool isComplex() const { return Flavor == Complex; }
|
|
|
|
bool isAggregate() const { return Flavor == Aggregate; }
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-05-24 00:21:36 +04:00
|
|
|
bool isVolatileQualified() const { return Volatile; }
|
|
|
|
|
2009-11-03 19:11:57 +03:00
|
|
|
/// getScalarVal() - Return the Value* of this scalar value.
|
2008-08-23 07:10:25 +04:00
|
|
|
llvm::Value *getScalarVal() const {
|
|
|
|
assert(isScalar() && "Not a scalar!");
|
|
|
|
return V1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getComplexVal - Return the real/imag components of this complex value.
|
|
|
|
///
|
|
|
|
std::pair<llvm::Value *, llvm::Value *> getComplexVal() const {
|
|
|
|
return std::pair<llvm::Value *, llvm::Value *>(V1, V2);
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-08-23 07:10:25 +04:00
|
|
|
/// getAggregateAddr() - Return the Value* of the address of the aggregate.
|
|
|
|
llvm::Value *getAggregateAddr() const {
|
|
|
|
assert(isAggregate() && "Not an aggregate!");
|
|
|
|
return V1;
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-08-23 07:10:25 +04:00
|
|
|
static RValue get(llvm::Value *V) {
|
|
|
|
RValue ER;
|
|
|
|
ER.V1 = V;
|
|
|
|
ER.Flavor = Scalar;
|
2009-05-28 04:16:27 +04:00
|
|
|
ER.Volatile = false;
|
2008-08-23 07:10:25 +04:00
|
|
|
return ER;
|
|
|
|
}
|
|
|
|
static RValue getComplex(llvm::Value *V1, llvm::Value *V2) {
|
|
|
|
RValue ER;
|
|
|
|
ER.V1 = V1;
|
|
|
|
ER.V2 = V2;
|
|
|
|
ER.Flavor = Complex;
|
2009-05-28 04:16:27 +04:00
|
|
|
ER.Volatile = false;
|
2008-08-23 07:10:25 +04:00
|
|
|
return ER;
|
|
|
|
}
|
|
|
|
static RValue getComplex(const std::pair<llvm::Value *, llvm::Value *> &C) {
|
|
|
|
RValue ER;
|
|
|
|
ER.V1 = C.first;
|
|
|
|
ER.V2 = C.second;
|
|
|
|
ER.Flavor = Complex;
|
2009-05-28 04:16:27 +04:00
|
|
|
ER.Volatile = false;
|
2008-08-23 07:10:25 +04:00
|
|
|
return ER;
|
|
|
|
}
|
2009-05-24 00:21:36 +04:00
|
|
|
// FIXME: Aggregate rvalues need to retain information about whether they are
|
|
|
|
// volatile or not. Remove default to find all places that probably get this
|
|
|
|
// wrong.
|
|
|
|
static RValue getAggregate(llvm::Value *V, bool Vol = false) {
|
2008-08-23 07:10:25 +04:00
|
|
|
RValue ER;
|
|
|
|
ER.V1 = V;
|
|
|
|
ER.Flavor = Aggregate;
|
2009-05-24 00:21:36 +04:00
|
|
|
ER.Volatile = Vol;
|
2008-08-23 07:10:25 +04:00
|
|
|
return ER;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/// LValue - This represents an lvalue references. Because C/C++ allow
|
|
|
|
/// bitfields, this is not a simple LLVM pointer, it may be a pointer plus a
|
|
|
|
/// bitrange.
|
|
|
|
class LValue {
|
|
|
|
// FIXME: alignment?
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-08-23 07:10:25 +04:00
|
|
|
enum {
|
|
|
|
Simple, // This is a normal l-value, use getAddress().
|
|
|
|
VectorElt, // This is a vector element l-value (V[i]), use getVector*
|
|
|
|
BitField, // This is a bitfield l-value, use getBitfield*.
|
2008-08-29 12:11:39 +04:00
|
|
|
ExtVectorElt, // This is an extended vector subset, use getExtVectorComp
|
2008-11-23 01:30:21 +03:00
|
|
|
PropertyRef, // This is an Objective-C property reference, use
|
2008-08-29 12:11:39 +04:00
|
|
|
// getPropertyRefExpr
|
2008-11-23 01:30:21 +03:00
|
|
|
KVCRef // This is an objective-c 'implicit' property ref,
|
|
|
|
// use getKVCRefExpr
|
2008-08-23 07:10:25 +04:00
|
|
|
} LVType;
|
2008-11-19 03:59:10 +03:00
|
|
|
|
2008-08-23 07:10:25 +04:00
|
|
|
llvm::Value *V;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-08-23 07:10:25 +04:00
|
|
|
union {
|
|
|
|
// Index into a vector subscript: V[i]
|
|
|
|
llvm::Value *VectorIdx;
|
|
|
|
|
|
|
|
// ExtVector element subset: V.xyx
|
|
|
|
llvm::Constant *VectorElts;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-08-23 07:10:25 +04:00
|
|
|
// BitField start bit and size
|
|
|
|
struct {
|
|
|
|
unsigned short StartBit;
|
|
|
|
unsigned short Size;
|
|
|
|
bool IsSigned;
|
|
|
|
} BitfieldData;
|
2008-08-29 12:11:39 +04:00
|
|
|
|
|
|
|
// Obj-C property reference expression
|
|
|
|
const ObjCPropertyRefExpr *PropertyRefExpr;
|
2008-11-23 01:30:21 +03:00
|
|
|
// ObjC 'implicit' property reference expression
|
2009-08-20 21:02:02 +04:00
|
|
|
const ObjCImplicitSetterGetterRefExpr *KVCRefExpr;
|
2008-08-23 07:10:25 +04:00
|
|
|
};
|
|
|
|
|
2009-09-24 23:53:00 +04:00
|
|
|
// 'const' is unused here
|
|
|
|
Qualifiers Quals;
|
2008-11-19 03:59:10 +03:00
|
|
|
|
2008-11-20 23:53:20 +03:00
|
|
|
// objective-c's ivar
|
|
|
|
bool Ivar:1;
|
2009-09-18 04:04:00 +04:00
|
|
|
|
|
|
|
// objective-c's ivar is an array
|
2009-09-21 22:54:29 +04:00
|
|
|
bool ObjIsArray:1;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-21 03:30:43 +03:00
|
|
|
// LValue is non-gc'able for any reason, including being a parameter or local
|
|
|
|
// variable.
|
|
|
|
bool NonGC: 1;
|
2008-11-20 23:53:20 +03:00
|
|
|
|
2009-05-05 03:27:20 +04:00
|
|
|
// Lvalue is a global reference of an objective-c object
|
|
|
|
bool GlobalObjCRef : 1;
|
|
|
|
|
2009-09-25 02:25:38 +04:00
|
|
|
Expr *BaseIvarExp;
|
2008-08-23 07:10:25 +04:00
|
|
|
private:
|
2009-09-24 23:53:00 +04:00
|
|
|
void SetQualifiers(Qualifiers Quals) {
|
|
|
|
this->Quals = Quals;
|
|
|
|
|
2009-05-16 11:57:57 +04:00
|
|
|
// FIXME: Convenient place to set objc flags to 0. This should really be
|
|
|
|
// done in a user-defined constructor instead.
|
2009-09-24 23:53:00 +04:00
|
|
|
this->Ivar = this->ObjIsArray = this->NonGC = this->GlobalObjCRef = false;
|
2009-09-25 02:25:38 +04:00
|
|
|
this->BaseIvarExp = 0;
|
2008-08-23 07:10:25 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-08-23 07:10:25 +04:00
|
|
|
public:
|
|
|
|
bool isSimple() const { return LVType == Simple; }
|
|
|
|
bool isVectorElt() const { return LVType == VectorElt; }
|
|
|
|
bool isBitfield() const { return LVType == BitField; }
|
|
|
|
bool isExtVectorElt() const { return LVType == ExtVectorElt; }
|
2008-08-29 12:11:39 +04:00
|
|
|
bool isPropertyRef() const { return LVType == PropertyRef; }
|
2008-11-23 01:30:21 +03:00
|
|
|
bool isKVCRef() const { return LVType == KVCRef; }
|
2008-08-29 12:11:39 +04:00
|
|
|
|
2009-09-24 23:53:00 +04:00
|
|
|
bool isVolatileQualified() const { return Quals.hasVolatile(); }
|
|
|
|
bool isRestrictQualified() const { return Quals.hasRestrict(); }
|
|
|
|
unsigned getVRQualifiers() const {
|
|
|
|
return Quals.getCVRQualifiers() & ~Qualifiers::Const;
|
2009-02-17 01:25:49 +03:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-11-20 23:53:20 +03:00
|
|
|
bool isObjCIvar() const { return Ivar; }
|
2009-09-21 22:54:29 +04:00
|
|
|
bool isObjCArray() const { return ObjIsArray; }
|
2009-02-21 03:30:43 +03:00
|
|
|
bool isNonGC () const { return NonGC; }
|
2009-05-05 03:27:20 +04:00
|
|
|
bool isGlobalObjCRef() const { return GlobalObjCRef; }
|
2009-09-24 23:53:00 +04:00
|
|
|
bool isObjCWeak() const { return Quals.getObjCGCAttr() == Qualifiers::Weak; }
|
|
|
|
bool isObjCStrong() const { return Quals.getObjCGCAttr() == Qualifiers::Strong; }
|
2009-09-25 02:25:38 +04:00
|
|
|
|
|
|
|
Expr *getBaseIvarExp() const { return BaseIvarExp; }
|
|
|
|
void setBaseIvarExp(Expr *V) { BaseIvarExp = V; }
|
2009-07-22 07:08:17 +04:00
|
|
|
|
2009-09-24 23:53:00 +04:00
|
|
|
unsigned getAddressSpace() const { return Quals.getAddressSpace(); }
|
2009-07-22 07:08:17 +04:00
|
|
|
|
2008-11-21 21:14:01 +03:00
|
|
|
static void SetObjCIvar(LValue& R, bool iValue) {
|
|
|
|
R.Ivar = iValue;
|
2008-11-20 23:53:20 +03:00
|
|
|
}
|
2009-09-21 22:54:29 +04:00
|
|
|
static void SetObjCArray(LValue& R, bool iValue) {
|
|
|
|
R.ObjIsArray = iValue;
|
2009-09-18 04:04:00 +04:00
|
|
|
}
|
2009-05-05 03:27:20 +04:00
|
|
|
static void SetGlobalObjCRef(LValue& R, bool iValue) {
|
|
|
|
R.GlobalObjCRef = iValue;
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-21 03:30:43 +03:00
|
|
|
static void SetObjCNonGC(LValue& R, bool iValue) {
|
|
|
|
R.NonGC = iValue;
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-08-23 07:10:25 +04:00
|
|
|
// simple lvalue
|
|
|
|
llvm::Value *getAddress() const { assert(isSimple()); return V; }
|
|
|
|
// vector elt lvalue
|
|
|
|
llvm::Value *getVectorAddr() const { assert(isVectorElt()); return V; }
|
|
|
|
llvm::Value *getVectorIdx() const { assert(isVectorElt()); return VectorIdx; }
|
|
|
|
// extended vector elements.
|
|
|
|
llvm::Value *getExtVectorAddr() const { assert(isExtVectorElt()); return V; }
|
|
|
|
llvm::Constant *getExtVectorElts() const {
|
|
|
|
assert(isExtVectorElt());
|
|
|
|
return VectorElts;
|
|
|
|
}
|
|
|
|
// bitfield lvalue
|
|
|
|
llvm::Value *getBitfieldAddr() const { assert(isBitfield()); return V; }
|
|
|
|
unsigned short getBitfieldStartBit() const {
|
|
|
|
assert(isBitfield());
|
|
|
|
return BitfieldData.StartBit;
|
|
|
|
}
|
|
|
|
unsigned short getBitfieldSize() const {
|
|
|
|
assert(isBitfield());
|
|
|
|
return BitfieldData.Size;
|
|
|
|
}
|
|
|
|
bool isBitfieldSigned() const {
|
|
|
|
assert(isBitfield());
|
|
|
|
return BitfieldData.IsSigned;
|
|
|
|
}
|
2008-08-29 12:11:39 +04:00
|
|
|
// property ref lvalue
|
|
|
|
const ObjCPropertyRefExpr *getPropertyRefExpr() const {
|
|
|
|
assert(isPropertyRef());
|
|
|
|
return PropertyRefExpr;
|
|
|
|
}
|
2008-08-23 07:10:25 +04:00
|
|
|
|
2008-11-23 01:30:21 +03:00
|
|
|
// 'implicit' property ref lvalue
|
2009-08-20 21:02:02 +04:00
|
|
|
const ObjCImplicitSetterGetterRefExpr *getKVCRefExpr() const {
|
2008-11-23 01:30:21 +03:00
|
|
|
assert(isKVCRef());
|
|
|
|
return KVCRefExpr;
|
|
|
|
}
|
|
|
|
|
2009-09-24 23:53:00 +04:00
|
|
|
static LValue MakeAddr(llvm::Value *V, Qualifiers Quals) {
|
2008-08-23 07:10:25 +04:00
|
|
|
LValue R;
|
|
|
|
R.LVType = Simple;
|
|
|
|
R.V = V;
|
2009-09-24 23:53:00 +04:00
|
|
|
R.SetQualifiers(Quals);
|
2008-08-23 07:10:25 +04:00
|
|
|
return R;
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-08-23 07:10:25 +04:00
|
|
|
static LValue MakeVectorElt(llvm::Value *Vec, llvm::Value *Idx,
|
2009-09-24 23:53:00 +04:00
|
|
|
unsigned CVR) {
|
2008-08-23 07:10:25 +04:00
|
|
|
LValue R;
|
|
|
|
R.LVType = VectorElt;
|
|
|
|
R.V = Vec;
|
|
|
|
R.VectorIdx = Idx;
|
2009-09-24 23:53:00 +04:00
|
|
|
R.SetQualifiers(Qualifiers::fromCVRMask(CVR));
|
2008-08-23 07:10:25 +04:00
|
|
|
return R;
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-08-23 07:10:25 +04:00
|
|
|
static LValue MakeExtVectorElt(llvm::Value *Vec, llvm::Constant *Elts,
|
2009-09-24 23:53:00 +04:00
|
|
|
unsigned CVR) {
|
2008-08-23 07:10:25 +04:00
|
|
|
LValue R;
|
|
|
|
R.LVType = ExtVectorElt;
|
|
|
|
R.V = Vec;
|
|
|
|
R.VectorElts = Elts;
|
2009-09-24 23:53:00 +04:00
|
|
|
R.SetQualifiers(Qualifiers::fromCVRMask(CVR));
|
2008-08-23 07:10:25 +04:00
|
|
|
return R;
|
|
|
|
}
|
|
|
|
|
|
|
|
static LValue MakeBitfield(llvm::Value *V, unsigned short StartBit,
|
|
|
|
unsigned short Size, bool IsSigned,
|
2009-09-24 23:53:00 +04:00
|
|
|
unsigned CVR) {
|
2008-08-23 07:10:25 +04:00
|
|
|
LValue R;
|
|
|
|
R.LVType = BitField;
|
|
|
|
R.V = V;
|
|
|
|
R.BitfieldData.StartBit = StartBit;
|
|
|
|
R.BitfieldData.Size = Size;
|
|
|
|
R.BitfieldData.IsSigned = IsSigned;
|
2009-09-24 23:53:00 +04:00
|
|
|
R.SetQualifiers(Qualifiers::fromCVRMask(CVR));
|
2008-08-23 07:10:25 +04:00
|
|
|
return R;
|
|
|
|
}
|
2008-08-29 12:11:39 +04:00
|
|
|
|
2009-05-16 11:57:57 +04:00
|
|
|
// FIXME: It is probably bad that we aren't emitting the target when we build
|
|
|
|
// the lvalue. However, this complicates the code a bit, and I haven't figured
|
|
|
|
// out how to make it go wrong yet.
|
2008-08-29 12:11:39 +04:00
|
|
|
static LValue MakePropertyRef(const ObjCPropertyRefExpr *E,
|
2009-09-24 23:53:00 +04:00
|
|
|
unsigned CVR) {
|
2008-08-29 12:11:39 +04:00
|
|
|
LValue R;
|
|
|
|
R.LVType = PropertyRef;
|
|
|
|
R.PropertyRefExpr = E;
|
2009-09-24 23:53:00 +04:00
|
|
|
R.SetQualifiers(Qualifiers::fromCVRMask(CVR));
|
2008-08-29 12:11:39 +04:00
|
|
|
return R;
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
|
|
|
static LValue MakeKVCRef(const ObjCImplicitSetterGetterRefExpr *E,
|
2009-09-24 23:53:00 +04:00
|
|
|
unsigned CVR) {
|
2008-11-23 01:30:21 +03:00
|
|
|
LValue R;
|
|
|
|
R.LVType = KVCRef;
|
|
|
|
R.KVCRefExpr = E;
|
2009-09-24 23:53:00 +04:00
|
|
|
R.SetQualifiers(Qualifiers::fromCVRMask(CVR));
|
2008-11-23 01:30:21 +03:00
|
|
|
return R;
|
|
|
|
}
|
2008-08-23 07:10:25 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace CodeGen
|
|
|
|
} // end namespace clang
|
|
|
|
|
|
|
|
#endif
|