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

  /external/llvm/include/llvm/ADT/
StringMap.h 26 template<typename ValueTy>
32 template<typename ValueTy>
36 static void Initialize(StringMapEntry<ValueTy> &T, InitTy InitVal) {
110 template<typename ValueTy>
113 ValueTy second;
117 StringMapEntry(unsigned strLen, const ValueTy &V)
124 const ValueTy &getValue() const { return second; }
125 ValueTy &getValue() { return second; }
127 void setValue(const ValueTy &V) { second = V; }
164 StringMapEntryInitializer<ValueTy>::Initialize(*NewItem, InitVal)
    [all...]
  /external/llvm/include/llvm/Support/
ValueHandle.h 187 template <typename ValueTy>
195 ValueTy *getValPtr() const {
196 return static_cast<ValueTy*>(ValueHandleBase::getValPtr());
198 void setValPtr(ValueTy *P) {
202 ValueTy *ThePtr;
203 ValueTy *getValPtr() const { return ThePtr; }
204 void setValPtr(ValueTy *P) { ThePtr = P; }
207 // Convert a ValueTy*, which may be const, to the type the base
215 AssertingVH(ValueTy *P) : ValueHandleBase(Assert, GetAsValue(P)) {}
219 AssertingVH(ValueTy *P) : ThePtr(P) {
    [all...]
  /external/llvm/include/llvm/CodeGen/
PseudoSourceValue.h 35 explicit PseudoSourceValue(enum ValueTy Subclass = PseudoSourceValueVal);
  /external/llvm/include/llvm/IR/
Constant.h 47 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps)
Value.h 33 template<typename ValueTy> class StringMapEntry;
186 enum ValueTy {
225 /// # there are more possible values for the value type than in ValueTy enum.
227 /// the ValueTy enum.
GlobalValue.h 59 GlobalValue(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps,
Constants.h 539 explicit ConstantDataSequential(Type *ty, ValueTy VT, const char *Data)
    [all...]
  /external/llvm/lib/CodeGen/
PseudoSourceValue.cpp 65 PseudoSourceValue::PseudoSourceValue(enum ValueTy Subclass) :
  /external/clang/lib/CodeGen/
CGAtomic.cpp 39 QualType ValueTy;
52 ValueTy = AtomicTy->castAs<AtomicType>()->getValueType();
53 EvaluationKind = CGF.getEvaluationKind(ValueTy);
58 llvm::tie(ValueSizeInBits, valueAlignInBits) = C.getTypeInfo(ValueTy);
77 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 1157 milliseconds