Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 1 | //===-- CGValue.h - LLVM CodeGen wrappers for llvm::Value* ------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // These classes implement wrappers around llvm::Value in order to |
| 11 | // fully represent the range of values for C L- and R- values. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #ifndef CLANG_CODEGEN_CGVALUE_H |
| 16 | #define CLANG_CODEGEN_CGVALUE_H |
| 17 | |
Daniel Dunbar | 5cf8bfe | 2010-08-21 02:53:44 +0000 | [diff] [blame] | 18 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 19 | #include "clang/AST/Type.h" |
| 20 | |
Daniel Dunbar | 46f45b9 | 2008-09-09 01:06:48 +0000 | [diff] [blame] | 21 | namespace llvm { |
| 22 | class Constant; |
| 23 | class Value; |
| 24 | } |
| 25 | |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 26 | namespace clang { |
Daniel Dunbar | 85c59ed | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 27 | class ObjCPropertyRefExpr; |
| 28 | |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 29 | namespace CodeGen { |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 30 | class AggValueSlot; |
Daniel Dunbar | f0fe5bc | 2010-04-05 21:36:35 +0000 | [diff] [blame] | 31 | class CGBitFieldInfo; |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 32 | |
| 33 | /// RValue - This trivial value class is used to represent the result of an |
| 34 | /// expression that is evaluated. It can be one of three things: either a |
| 35 | /// simple LLVM SSA value, a pair of SSA values for complex numbers, or the |
| 36 | /// address of an aggregate value in memory. |
| 37 | class RValue { |
Benjamin Kramer | 81bf3b3 | 2010-05-02 14:59:10 +0000 | [diff] [blame] | 38 | enum Flavor { Scalar, Complex, Aggregate }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 39 | |
Benjamin Kramer | 81bf3b3 | 2010-05-02 14:59:10 +0000 | [diff] [blame] | 40 | // Stores first value and flavor. |
| 41 | llvm::PointerIntPair<llvm::Value *, 2, Flavor> V1; |
| 42 | // Stores second value and volatility. |
| 43 | llvm::PointerIntPair<llvm::Value *, 1, bool> V2; |
| 44 | |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 45 | public: |
Benjamin Kramer | 81bf3b3 | 2010-05-02 14:59:10 +0000 | [diff] [blame] | 46 | bool isScalar() const { return V1.getInt() == Scalar; } |
| 47 | bool isComplex() const { return V1.getInt() == Complex; } |
| 48 | bool isAggregate() const { return V1.getInt() == Aggregate; } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 49 | |
Benjamin Kramer | 81bf3b3 | 2010-05-02 14:59:10 +0000 | [diff] [blame] | 50 | bool isVolatileQualified() const { return V2.getInt(); } |
Mike Stump | 8b3d93a | 2009-05-23 20:21:36 +0000 | [diff] [blame] | 51 | |
Mike Stump | 519202d | 2009-11-03 16:11:57 +0000 | [diff] [blame] | 52 | /// getScalarVal() - Return the Value* of this scalar value. |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 53 | llvm::Value *getScalarVal() const { |
| 54 | assert(isScalar() && "Not a scalar!"); |
Benjamin Kramer | 81bf3b3 | 2010-05-02 14:59:10 +0000 | [diff] [blame] | 55 | return V1.getPointer(); |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | /// getComplexVal - Return the real/imag components of this complex value. |
| 59 | /// |
| 60 | std::pair<llvm::Value *, llvm::Value *> getComplexVal() const { |
Benjamin Kramer | 81bf3b3 | 2010-05-02 14:59:10 +0000 | [diff] [blame] | 61 | return std::make_pair(V1.getPointer(), V2.getPointer()); |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 62 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 63 | |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 64 | /// getAggregateAddr() - Return the Value* of the address of the aggregate. |
| 65 | llvm::Value *getAggregateAddr() const { |
| 66 | assert(isAggregate() && "Not an aggregate!"); |
Benjamin Kramer | 81bf3b3 | 2010-05-02 14:59:10 +0000 | [diff] [blame] | 67 | return V1.getPointer(); |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 68 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 69 | |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 70 | static RValue get(llvm::Value *V) { |
| 71 | RValue ER; |
Benjamin Kramer | 81bf3b3 | 2010-05-02 14:59:10 +0000 | [diff] [blame] | 72 | ER.V1.setPointer(V); |
| 73 | ER.V1.setInt(Scalar); |
| 74 | ER.V2.setInt(false); |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 75 | return ER; |
| 76 | } |
| 77 | static RValue getComplex(llvm::Value *V1, llvm::Value *V2) { |
| 78 | RValue ER; |
Benjamin Kramer | 81bf3b3 | 2010-05-02 14:59:10 +0000 | [diff] [blame] | 79 | ER.V1.setPointer(V1); |
| 80 | ER.V2.setPointer(V2); |
| 81 | ER.V1.setInt(Complex); |
| 82 | ER.V2.setInt(false); |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 83 | return ER; |
| 84 | } |
| 85 | static RValue getComplex(const std::pair<llvm::Value *, llvm::Value *> &C) { |
Benjamin Kramer | 81bf3b3 | 2010-05-02 14:59:10 +0000 | [diff] [blame] | 86 | return getComplex(C.first, C.second); |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 87 | } |
Mike Stump | 8b3d93a | 2009-05-23 20:21:36 +0000 | [diff] [blame] | 88 | // FIXME: Aggregate rvalues need to retain information about whether they are |
| 89 | // volatile or not. Remove default to find all places that probably get this |
| 90 | // wrong. |
Benjamin Kramer | 81bf3b3 | 2010-05-02 14:59:10 +0000 | [diff] [blame] | 91 | static RValue getAggregate(llvm::Value *V, bool Volatile = false) { |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 92 | RValue ER; |
Benjamin Kramer | 81bf3b3 | 2010-05-02 14:59:10 +0000 | [diff] [blame] | 93 | ER.V1.setPointer(V); |
| 94 | ER.V1.setInt(Aggregate); |
| 95 | ER.V2.setInt(Volatile); |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 96 | return ER; |
| 97 | } |
| 98 | }; |
| 99 | |
| 100 | |
| 101 | /// LValue - This represents an lvalue references. Because C/C++ allow |
| 102 | /// bitfields, this is not a simple LLVM pointer, it may be a pointer plus a |
| 103 | /// bitrange. |
| 104 | class LValue { |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 105 | enum { |
| 106 | Simple, // This is a normal l-value, use getAddress(). |
| 107 | VectorElt, // This is a vector element l-value (V[i]), use getVector* |
| 108 | BitField, // This is a bitfield l-value, use getBitfield*. |
Daniel Dunbar | 85c59ed | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 109 | ExtVectorElt, // This is an extended vector subset, use getExtVectorComp |
John McCall | 119a1c6 | 2010-12-04 02:32:38 +0000 | [diff] [blame] | 110 | PropertyRef // This is an Objective-C property reference, use |
Daniel Dunbar | 85c59ed | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 111 | // getPropertyRefExpr |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 112 | } LVType; |
Fariborz Jahanian | 5862650 | 2008-11-19 00:59:10 +0000 | [diff] [blame] | 113 | |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 114 | llvm::Value *V; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 115 | |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 116 | union { |
| 117 | // Index into a vector subscript: V[i] |
| 118 | llvm::Value *VectorIdx; |
| 119 | |
| 120 | // ExtVector element subset: V.xyx |
| 121 | llvm::Constant *VectorElts; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 122 | |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 123 | // BitField start bit and size |
Daniel Dunbar | f0fe5bc | 2010-04-05 21:36:35 +0000 | [diff] [blame] | 124 | const CGBitFieldInfo *BitFieldInfo; |
Daniel Dunbar | 85c59ed | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 125 | |
| 126 | // Obj-C property reference expression |
| 127 | const ObjCPropertyRefExpr *PropertyRefExpr; |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 128 | }; |
| 129 | |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 130 | QualType Type; |
| 131 | |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 132 | // 'const' is unused here |
| 133 | Qualifiers Quals; |
Fariborz Jahanian | 5862650 | 2008-11-19 00:59:10 +0000 | [diff] [blame] | 134 | |
Daniel Dunbar | 9f4f7cf | 2010-08-21 02:39:23 +0000 | [diff] [blame] | 135 | /// The alignment to use when accessing this lvalue. |
Daniel Dunbar | 77c0590 | 2010-08-26 06:02:12 +0000 | [diff] [blame] | 136 | unsigned short Alignment; |
Daniel Dunbar | 9f4f7cf | 2010-08-21 02:39:23 +0000 | [diff] [blame] | 137 | |
Fariborz Jahanian | d1cc804 | 2008-11-20 20:53:20 +0000 | [diff] [blame] | 138 | // objective-c's ivar |
| 139 | bool Ivar:1; |
Fariborz Jahanian | 1c1afc4 | 2009-09-18 00:04:00 +0000 | [diff] [blame] | 140 | |
| 141 | // objective-c's ivar is an array |
Fariborz Jahanian | fd02ed7 | 2009-09-21 18:54:29 +0000 | [diff] [blame] | 142 | bool ObjIsArray:1; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 143 | |
Fariborz Jahanian | 4f676ed | 2009-02-21 00:30:43 +0000 | [diff] [blame] | 144 | // LValue is non-gc'able for any reason, including being a parameter or local |
| 145 | // variable. |
| 146 | bool NonGC: 1; |
Fariborz Jahanian | d1cc804 | 2008-11-20 20:53:20 +0000 | [diff] [blame] | 147 | |
Fariborz Jahanian | bf63b87 | 2009-05-04 23:27:20 +0000 | [diff] [blame] | 148 | // Lvalue is a global reference of an objective-c object |
| 149 | bool GlobalObjCRef : 1; |
Fariborz Jahanian | 021a7a6 | 2010-07-20 20:30:03 +0000 | [diff] [blame] | 150 | |
| 151 | // Lvalue is a thread local reference |
| 152 | bool ThreadLocalRef : 1; |
Fariborz Jahanian | bf63b87 | 2009-05-04 23:27:20 +0000 | [diff] [blame] | 153 | |
Fariborz Jahanian | 6c7a1f3 | 2009-09-24 22:25:38 +0000 | [diff] [blame] | 154 | Expr *BaseIvarExp; |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 155 | |
| 156 | /// TBAAInfo - TBAA information to attach to dereferences of this LValue. |
| 157 | llvm::MDNode *TBAAInfo; |
| 158 | |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 159 | private: |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 160 | void Initialize(QualType Type, Qualifiers Quals, unsigned Alignment = 0, |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 161 | llvm::MDNode *TBAAInfo = 0) { |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 162 | this->Type = Type; |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 163 | this->Quals = Quals; |
Daniel Dunbar | 9f4f7cf | 2010-08-21 02:39:23 +0000 | [diff] [blame] | 164 | this->Alignment = Alignment; |
| 165 | assert(this->Alignment == Alignment && "Alignment exceeds allowed max!"); |
| 166 | |
| 167 | // Initialize Objective-C flags. |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 168 | this->Ivar = this->ObjIsArray = this->NonGC = this->GlobalObjCRef = false; |
Fariborz Jahanian | 021a7a6 | 2010-07-20 20:30:03 +0000 | [diff] [blame] | 169 | this->ThreadLocalRef = false; |
Fariborz Jahanian | 6c7a1f3 | 2009-09-24 22:25:38 +0000 | [diff] [blame] | 170 | this->BaseIvarExp = 0; |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 171 | this->TBAAInfo = TBAAInfo; |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 172 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 173 | |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 174 | public: |
| 175 | bool isSimple() const { return LVType == Simple; } |
| 176 | bool isVectorElt() const { return LVType == VectorElt; } |
Daniel Dunbar | f0fe5bc | 2010-04-05 21:36:35 +0000 | [diff] [blame] | 177 | bool isBitField() const { return LVType == BitField; } |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 178 | bool isExtVectorElt() const { return LVType == ExtVectorElt; } |
Daniel Dunbar | 85c59ed | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 179 | bool isPropertyRef() const { return LVType == PropertyRef; } |
| 180 | |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 181 | bool isVolatileQualified() const { return Quals.hasVolatile(); } |
| 182 | bool isRestrictQualified() const { return Quals.hasRestrict(); } |
| 183 | unsigned getVRQualifiers() const { |
| 184 | return Quals.getCVRQualifiers() & ~Qualifiers::Const; |
Chris Lattner | 1bd885e | 2009-02-16 22:25:49 +0000 | [diff] [blame] | 185 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 186 | |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 187 | QualType getType() const { return Type; } |
| 188 | |
| 189 | Qualifiers::ObjCLifetime getObjCLifetime() const { |
| 190 | return Quals.getObjCLifetime(); |
| 191 | } |
| 192 | |
Fariborz Jahanian | d1cc804 | 2008-11-20 20:53:20 +0000 | [diff] [blame] | 193 | bool isObjCIvar() const { return Ivar; } |
Daniel Dunbar | 3491b3d | 2010-08-21 03:51:29 +0000 | [diff] [blame] | 194 | void setObjCIvar(bool Value) { Ivar = Value; } |
| 195 | |
Fariborz Jahanian | fd02ed7 | 2009-09-21 18:54:29 +0000 | [diff] [blame] | 196 | bool isObjCArray() const { return ObjIsArray; } |
Daniel Dunbar | 3491b3d | 2010-08-21 03:51:29 +0000 | [diff] [blame] | 197 | void setObjCArray(bool Value) { ObjIsArray = Value; } |
Daniel Dunbar | ea61917 | 2010-08-21 03:22:38 +0000 | [diff] [blame] | 198 | |
Fariborz Jahanian | 4f676ed | 2009-02-21 00:30:43 +0000 | [diff] [blame] | 199 | bool isNonGC () const { return NonGC; } |
Daniel Dunbar | ea61917 | 2010-08-21 03:22:38 +0000 | [diff] [blame] | 200 | void setNonGC(bool Value) { NonGC = Value; } |
| 201 | |
Fariborz Jahanian | bf63b87 | 2009-05-04 23:27:20 +0000 | [diff] [blame] | 202 | bool isGlobalObjCRef() const { return GlobalObjCRef; } |
Daniel Dunbar | 3491b3d | 2010-08-21 03:51:29 +0000 | [diff] [blame] | 203 | void setGlobalObjCRef(bool Value) { GlobalObjCRef = Value; } |
| 204 | |
Fariborz Jahanian | 021a7a6 | 2010-07-20 20:30:03 +0000 | [diff] [blame] | 205 | bool isThreadLocalRef() const { return ThreadLocalRef; } |
Daniel Dunbar | 3491b3d | 2010-08-21 03:51:29 +0000 | [diff] [blame] | 206 | void setThreadLocalRef(bool Value) { ThreadLocalRef = Value;} |
| 207 | |
| 208 | bool isObjCWeak() const { |
| 209 | return Quals.getObjCGCAttr() == Qualifiers::Weak; |
| 210 | } |
| 211 | bool isObjCStrong() const { |
| 212 | return Quals.getObjCGCAttr() == Qualifiers::Strong; |
| 213 | } |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 214 | |
| 215 | bool isVolatile() const { |
| 216 | return Quals.hasVolatile(); |
| 217 | } |
Fariborz Jahanian | 6c7a1f3 | 2009-09-24 22:25:38 +0000 | [diff] [blame] | 218 | |
| 219 | Expr *getBaseIvarExp() const { return BaseIvarExp; } |
| 220 | void setBaseIvarExp(Expr *V) { BaseIvarExp = V; } |
Mon P Wang | c6a38a4 | 2009-07-22 03:08:17 +0000 | [diff] [blame] | 221 | |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 222 | llvm::MDNode *getTBAAInfo() const { return TBAAInfo; } |
| 223 | void setTBAAInfo(llvm::MDNode *N) { TBAAInfo = N; } |
| 224 | |
Daniel Dunbar | 99ad7df | 2010-08-21 03:29:54 +0000 | [diff] [blame] | 225 | const Qualifiers &getQuals() const { return Quals; } |
| 226 | Qualifiers &getQuals() { return Quals; } |
| 227 | |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 228 | unsigned getAddressSpace() const { return Quals.getAddressSpace(); } |
Mon P Wang | c6a38a4 | 2009-07-22 03:08:17 +0000 | [diff] [blame] | 229 | |
Daniel Dunbar | 9f4f7cf | 2010-08-21 02:39:23 +0000 | [diff] [blame] | 230 | unsigned getAlignment() const { return Alignment; } |
| 231 | |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 232 | // simple lvalue |
| 233 | llvm::Value *getAddress() const { assert(isSimple()); return V; } |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 234 | void setAddress(llvm::Value *address) { |
| 235 | assert(isSimple()); |
| 236 | V = address; |
| 237 | } |
Daniel Dunbar | f0fe5bc | 2010-04-05 21:36:35 +0000 | [diff] [blame] | 238 | |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 239 | // vector elt lvalue |
| 240 | llvm::Value *getVectorAddr() const { assert(isVectorElt()); return V; } |
| 241 | llvm::Value *getVectorIdx() const { assert(isVectorElt()); return VectorIdx; } |
Daniel Dunbar | f0fe5bc | 2010-04-05 21:36:35 +0000 | [diff] [blame] | 242 | |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 243 | // extended vector elements. |
| 244 | llvm::Value *getExtVectorAddr() const { assert(isExtVectorElt()); return V; } |
| 245 | llvm::Constant *getExtVectorElts() const { |
| 246 | assert(isExtVectorElt()); |
| 247 | return VectorElts; |
| 248 | } |
Daniel Dunbar | f0fe5bc | 2010-04-05 21:36:35 +0000 | [diff] [blame] | 249 | |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 250 | // bitfield lvalue |
Daniel Dunbar | 7f28964 | 2010-04-08 02:59:45 +0000 | [diff] [blame] | 251 | llvm::Value *getBitFieldBaseAddr() const { |
Daniel Dunbar | f0fe5bc | 2010-04-05 21:36:35 +0000 | [diff] [blame] | 252 | assert(isBitField()); |
| 253 | return V; |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 254 | } |
Daniel Dunbar | f0fe5bc | 2010-04-05 21:36:35 +0000 | [diff] [blame] | 255 | const CGBitFieldInfo &getBitFieldInfo() const { |
| 256 | assert(isBitField()); |
| 257 | return *BitFieldInfo; |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 258 | } |
Daniel Dunbar | f0fe5bc | 2010-04-05 21:36:35 +0000 | [diff] [blame] | 259 | |
Daniel Dunbar | 85c59ed | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 260 | // property ref lvalue |
John McCall | 119a1c6 | 2010-12-04 02:32:38 +0000 | [diff] [blame] | 261 | llvm::Value *getPropertyRefBaseAddr() const { |
| 262 | assert(isPropertyRef()); |
| 263 | return V; |
| 264 | } |
Daniel Dunbar | 85c59ed | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 265 | const ObjCPropertyRefExpr *getPropertyRefExpr() const { |
| 266 | assert(isPropertyRef()); |
| 267 | return PropertyRefExpr; |
| 268 | } |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 269 | |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 270 | static LValue MakeAddr(llvm::Value *address, QualType type, |
| 271 | unsigned alignment, ASTContext &Context, |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 272 | llvm::MDNode *TBAAInfo = 0) { |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 273 | Qualifiers qs = type.getQualifiers(); |
| 274 | qs.setObjCGCAttr(Context.getObjCGCAttrKind(type)); |
Daniel Dunbar | f1fbda3 | 2010-08-21 03:58:45 +0000 | [diff] [blame] | 275 | |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 276 | LValue R; |
| 277 | R.LVType = Simple; |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 278 | R.V = address; |
| 279 | R.Initialize(type, qs, alignment, TBAAInfo); |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 280 | return R; |
| 281 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 282 | |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 283 | static LValue MakeVectorElt(llvm::Value *Vec, llvm::Value *Idx, |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 284 | QualType type) { |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 285 | LValue R; |
| 286 | R.LVType = VectorElt; |
| 287 | R.V = Vec; |
| 288 | R.VectorIdx = Idx; |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 289 | R.Initialize(type, type.getQualifiers()); |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 290 | return R; |
| 291 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 292 | |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 293 | static LValue MakeExtVectorElt(llvm::Value *Vec, llvm::Constant *Elts, |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 294 | QualType type) { |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 295 | LValue R; |
| 296 | R.LVType = ExtVectorElt; |
| 297 | R.V = Vec; |
| 298 | R.VectorElts = Elts; |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 299 | R.Initialize(type, type.getQualifiers()); |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 300 | return R; |
| 301 | } |
| 302 | |
Daniel Dunbar | 7f28964 | 2010-04-08 02:59:45 +0000 | [diff] [blame] | 303 | /// \brief Create a new object to represent a bit-field access. |
| 304 | /// |
| 305 | /// \param BaseValue - The base address of the structure containing the |
| 306 | /// bit-field. |
| 307 | /// \param Info - The information describing how to perform the bit-field |
| 308 | /// access. |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 309 | static LValue MakeBitfield(llvm::Value *BaseValue, |
| 310 | const CGBitFieldInfo &Info, |
| 311 | QualType type) { |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 312 | LValue R; |
| 313 | R.LVType = BitField; |
Daniel Dunbar | 7f28964 | 2010-04-08 02:59:45 +0000 | [diff] [blame] | 314 | R.V = BaseValue; |
Daniel Dunbar | f0fe5bc | 2010-04-05 21:36:35 +0000 | [diff] [blame] | 315 | R.BitFieldInfo = &Info; |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 316 | R.Initialize(type, type.getQualifiers()); |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 317 | return R; |
| 318 | } |
Daniel Dunbar | 85c59ed | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 319 | |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 320 | // FIXME: It is probably bad that we aren't emitting the target when we build |
| 321 | // the lvalue. However, this complicates the code a bit, and I haven't figured |
| 322 | // out how to make it go wrong yet. |
Daniel Dunbar | 85c59ed | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 323 | static LValue MakePropertyRef(const ObjCPropertyRefExpr *E, |
John McCall | 119a1c6 | 2010-12-04 02:32:38 +0000 | [diff] [blame] | 324 | llvm::Value *Base) { |
Daniel Dunbar | 85c59ed | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 325 | LValue R; |
| 326 | R.LVType = PropertyRef; |
John McCall | 119a1c6 | 2010-12-04 02:32:38 +0000 | [diff] [blame] | 327 | R.V = Base; |
Daniel Dunbar | 85c59ed | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 328 | R.PropertyRefExpr = E; |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 329 | R.Initialize(QualType(), Qualifiers()); |
Fariborz Jahanian | 43f4470 | 2008-11-22 22:30:21 +0000 | [diff] [blame] | 330 | return R; |
| 331 | } |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 332 | }; |
| 333 | |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 334 | /// An aggregate value slot. |
| 335 | class AggValueSlot { |
Fariborz Jahanian | 474e2fe | 2010-09-16 00:20:07 +0000 | [diff] [blame] | 336 | /// The address. |
John McCall | 6fa2916 | 2010-09-16 03:16:41 +0000 | [diff] [blame] | 337 | llvm::Value *Addr; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 338 | |
| 339 | // Qualifiers |
| 340 | Qualifiers Quals; |
John McCall | 7c2349b | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 341 | |
John McCall | fd71fb8 | 2011-08-26 08:02:37 +0000 | [diff] [blame] | 342 | /// DestructedFlag - This is set to true if some external code is |
| 343 | /// responsible for setting up a destructor for the slot. Otherwise |
| 344 | /// the code which constructs it should push the appropriate cleanup. |
| 345 | bool DestructedFlag : 1; |
| 346 | |
| 347 | /// ObjCGCFlag - This is set to true if writing to the memory in the |
| 348 | /// slot might require calling an appropriate Objective-C GC |
| 349 | /// barrier. The exact interaction here is unnecessarily mysterious. |
| 350 | bool ObjCGCFlag : 1; |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 351 | |
John McCall | fd71fb8 | 2011-08-26 08:02:37 +0000 | [diff] [blame] | 352 | /// ZeroedFlag - This is set to true if the memory in the slot is |
| 353 | /// known to be zero before the assignment into it. This means that |
| 354 | /// zero fields don't need to be set. |
John McCall | 7c2349b | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 355 | bool ZeroedFlag : 1; |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 356 | |
John McCall | fd71fb8 | 2011-08-26 08:02:37 +0000 | [diff] [blame] | 357 | /// AliasedFlag - This is set to true if the slot might be aliased |
| 358 | /// and it's not undefined behavior to access it through such an |
| 359 | /// alias. Note that it's always undefined behavior to access a C++ |
| 360 | /// object that's under construction through an alias derived from |
| 361 | /// outside the construction process. |
| 362 | /// |
| 363 | /// This flag controls whether calls that produce the aggregate |
| 364 | /// value may be evaluated directly into the slot, or whether they |
| 365 | /// must be evaluated into an unaliased temporary and then memcpy'ed |
| 366 | /// over. Since it's invalid in general to memcpy a non-POD C++ |
| 367 | /// object, it's important that this flag never be set when |
| 368 | /// evaluating an expression which constructs such an object. |
John McCall | 410ffb2 | 2011-08-25 23:04:34 +0000 | [diff] [blame] | 369 | bool AliasedFlag : 1; |
| 370 | |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 371 | public: |
John McCall | 410ffb2 | 2011-08-25 23:04:34 +0000 | [diff] [blame] | 372 | enum IsAliased_t { IsNotAliased, IsAliased }; |
John McCall | 7c2349b | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 373 | enum IsDestructed_t { IsNotDestructed, IsDestructed }; |
John McCall | 410ffb2 | 2011-08-25 23:04:34 +0000 | [diff] [blame] | 374 | enum IsZeroed_t { IsNotZeroed, IsZeroed }; |
John McCall | 7c2349b | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 375 | enum NeedsGCBarriers_t { DoesNotNeedGCBarriers, NeedsGCBarriers }; |
| 376 | |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 377 | /// ignored - Returns an aggregate value slot indicating that the |
| 378 | /// aggregate value is being ignored. |
| 379 | static AggValueSlot ignored() { |
| 380 | AggValueSlot AV; |
John McCall | 6fa2916 | 2010-09-16 03:16:41 +0000 | [diff] [blame] | 381 | AV.Addr = 0; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 382 | AV.Quals = Qualifiers(); |
John McCall | fd71fb8 | 2011-08-26 08:02:37 +0000 | [diff] [blame] | 383 | AV.DestructedFlag = AV.ObjCGCFlag = AV.ZeroedFlag = AV.AliasedFlag = false; |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 384 | return AV; |
| 385 | } |
| 386 | |
| 387 | /// forAddr - Make a slot for an aggregate value. |
| 388 | /// |
John McCall | 7c2349b | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 389 | /// \param quals - The qualifiers that dictate how the slot should |
| 390 | /// be initialied. Only 'volatile' and the Objective-C lifetime |
| 391 | /// qualifiers matter. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 392 | /// |
John McCall | 7c2349b | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 393 | /// \param isDestructed - true if something else is responsible |
| 394 | /// for calling destructors on this object |
| 395 | /// \param needsGC - true if the slot is potentially located |
John McCall | d1a5f13 | 2010-09-16 03:13:23 +0000 | [diff] [blame] | 396 | /// somewhere that ObjC GC calls should be emitted for |
John McCall | 7c2349b | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 397 | static AggValueSlot forAddr(llvm::Value *addr, Qualifiers quals, |
| 398 | IsDestructed_t isDestructed, |
| 399 | NeedsGCBarriers_t needsGC, |
John McCall | 4418439 | 2011-08-26 07:31:35 +0000 | [diff] [blame] | 400 | IsAliased_t isAliased, |
John McCall | 7c2349b | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 401 | IsZeroed_t isZeroed = IsNotZeroed) { |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 402 | AggValueSlot AV; |
John McCall | 7c2349b | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 403 | AV.Addr = addr; |
| 404 | AV.Quals = quals; |
John McCall | fd71fb8 | 2011-08-26 08:02:37 +0000 | [diff] [blame] | 405 | AV.DestructedFlag = isDestructed; |
| 406 | AV.ObjCGCFlag = needsGC; |
John McCall | 7c2349b | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 407 | AV.ZeroedFlag = isZeroed; |
John McCall | 410ffb2 | 2011-08-25 23:04:34 +0000 | [diff] [blame] | 408 | AV.AliasedFlag = isAliased; |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 409 | return AV; |
| 410 | } |
| 411 | |
John McCall | 7c2349b | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 412 | static AggValueSlot forLValue(LValue LV, IsDestructed_t isDestructed, |
| 413 | NeedsGCBarriers_t needsGC, |
John McCall | 4418439 | 2011-08-26 07:31:35 +0000 | [diff] [blame] | 414 | IsAliased_t isAliased, |
John McCall | 7c2349b | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 415 | IsZeroed_t isZeroed = IsNotZeroed) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 416 | return forAddr(LV.getAddress(), LV.getQuals(), |
John McCall | 410ffb2 | 2011-08-25 23:04:34 +0000 | [diff] [blame] | 417 | isDestructed, needsGC, isAliased, isZeroed); |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 418 | } |
Fariborz Jahanian | 8a97005 | 2010-10-22 22:05:03 +0000 | [diff] [blame] | 419 | |
John McCall | fd71fb8 | 2011-08-26 08:02:37 +0000 | [diff] [blame] | 420 | IsDestructed_t isExternallyDestructed() const { |
| 421 | return IsDestructed_t(DestructedFlag); |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 422 | } |
John McCall | fd71fb8 | 2011-08-26 08:02:37 +0000 | [diff] [blame] | 423 | void setExternallyDestructed(bool destructed = true) { |
| 424 | DestructedFlag = destructed; |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 425 | } |
| 426 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 427 | Qualifiers getQualifiers() const { return Quals; } |
| 428 | |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 429 | bool isVolatile() const { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 430 | return Quals.hasVolatile(); |
| 431 | } |
| 432 | |
| 433 | Qualifiers::ObjCLifetime getObjCLifetime() const { |
| 434 | return Quals.getObjCLifetime(); |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 435 | } |
| 436 | |
John McCall | 7c2349b | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 437 | NeedsGCBarriers_t requiresGCollection() const { |
John McCall | fd71fb8 | 2011-08-26 08:02:37 +0000 | [diff] [blame] | 438 | return NeedsGCBarriers_t(ObjCGCFlag); |
Fariborz Jahanian | 474e2fe | 2010-09-16 00:20:07 +0000 | [diff] [blame] | 439 | } |
Fariborz Jahanian | 474e2fe | 2010-09-16 00:20:07 +0000 | [diff] [blame] | 440 | |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 441 | llvm::Value *getAddr() const { |
John McCall | 6fa2916 | 2010-09-16 03:16:41 +0000 | [diff] [blame] | 442 | return Addr; |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 443 | } |
| 444 | |
| 445 | bool isIgnored() const { |
John McCall | 6fa2916 | 2010-09-16 03:16:41 +0000 | [diff] [blame] | 446 | return Addr == 0; |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 447 | } |
| 448 | |
John McCall | 410ffb2 | 2011-08-25 23:04:34 +0000 | [diff] [blame] | 449 | IsAliased_t isPotentiallyAliased() const { |
| 450 | return IsAliased_t(AliasedFlag); |
| 451 | } |
| 452 | |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 453 | RValue asRValue() const { |
| 454 | return RValue::getAggregate(getAddr(), isVolatile()); |
| 455 | } |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 456 | |
John McCall | 7c2349b | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 457 | void setZeroed(bool V = true) { ZeroedFlag = V; } |
| 458 | IsZeroed_t isZeroed() const { |
| 459 | return IsZeroed_t(ZeroedFlag); |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 460 | } |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 461 | }; |
| 462 | |
Daniel Dunbar | 2eecaab | 2008-08-23 03:10:25 +0000 | [diff] [blame] | 463 | } // end namespace CodeGen |
| 464 | } // end namespace clang |
| 465 | |
| 466 | #endif |