HomeSort by relevance Sort by last modified time
    Searched refs:ValueTy (Results 1 - 11 of 11) sorted by null

  /external/llvm/include/llvm/IR/
ValueHandle.h 186 template <typename ValueTy>
194 ValueTy *getValPtr() const {
195 return static_cast<ValueTy*>(ValueHandleBase::getValPtr());
197 void setValPtr(ValueTy *P) {
201 ValueTy *ThePtr;
202 ValueTy *getValPtr() const { return ThePtr; }
203 void setValPtr(ValueTy *P) { ThePtr = P; }
206 // Convert a ValueTy*, which may be const, to the type the base
214 AssertingVH(ValueTy *P) : ValueHandleBase(Assert, GetAsValue(P)) {}
218 AssertingVH(ValueTy *P) : ThePtr(P) {
    [all...]
Comdat.h 25 template <typename ValueTy> class StringMapEntry;
GlobalObject.h 30 GlobalObject(Type *Ty, ValueTy VTy, Use *Ops, unsigned NumOps,
Constant.h 47 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps)
Value.h 49 template<typename ValueTy> class StringMapEntry;
307 enum ValueTy {
343 /// # there are more possible values for the value type than in ValueTy enum.
345 /// the ValueTy enum.
GlobalValue.h 63 GlobalValue(Type *Ty, ValueTy VTy, Use *Ops, unsigned NumOps,
Constants.h 538 explicit ConstantDataSequential(Type *ty, ValueTy VT, const char *Data)
    [all...]
  /external/llvm/include/llvm/ADT/
StringMap.h 27 template<typename ValueTy>
112 template<typename ValueTy>
116 ValueTy second;
120 StringMapEntry(unsigned strLen, ValueTy V)
127 const ValueTy &getValue() const { return second; }
128 ValueTy &getValue() { return second; }
130 void setValue(const ValueTy &V) { second = V; }
168 return Create(Key, Allocator, ValueTy());
179 return Create(Key, ValueTy());
184 static StringMapEntry &GetStringMapEntryFromValue(ValueTy &V)
    [all...]
  /external/clang/lib/CodeGen/
CGAtomic.cpp 31 QualType ValueTy;
44 ValueTy = AtomicTy->castAs<AtomicType>()->getValueType();
45 EvaluationKind = CGF.getEvaluationKind(ValueTy);
50 std::tie(ValueSizeInBits, valueAlignInBits) = C.getTypeInfo(ValueTy);
69 QualType getValueType() const { return ValueTy; }
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 75 template<typename ValueTy>
76 struct NoRAUWValueMapConfig : public ValueMapConfig<ValueTy> {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp     [all...]

Completed in 197 milliseconds