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

  /external/llvm/include/llvm/IR/
ValueHandle.h 192 template <typename ValueTy>
198 friend struct DenseMapInfo<AssertingVH<ValueTy> >;
208 // Convert a ValueTy*, which may be const, to the raw Value*.
212 ValueTy *getValPtr() const { return static_cast<ValueTy *>(getRawValPtr()); }
213 void setValPtr(ValueTy *P) { setRawValPtr(GetAsValue(P)); }
218 AssertingVH(ValueTy *P) : ValueHandleBase(Assert, GetAsValue(P)) {}
222 AssertingVH(ValueTy *P) : ThePtr(GetAsValue(P)) {}
225 operator ValueTy*() const {
229 ValueTy *operator=(ValueTy *RHS)
    [all...]
Comdat.h 25 template <typename ValueTy> class StringMapEntry;
Constant.h 47 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps)
GlobalObject.h 30 GlobalObject(Type *Ty, ValueTy VTy, Use *Ops, unsigned NumOps,
Statepoint.h 58 template <typename FunTy, typename InstructionTy, typename ValueTy,
121 ValueTy *getCalledValue() const {
169 ValueTy *getArgument(unsigned Index) {
378 template <typename FunTy, typename InstructionTy, typename ValueTy,
381 StatepointBase<FunTy, InstructionTy, ValueTy, CallSiteTy>::getRelocates()
Value.h 48 template<typename ValueTy> class StringMapEntry;
399 enum ValueTy {
415 /// # there are more possible values for the value type than in ValueTy enum.
417 /// the ValueTy enum.
GlobalValue.h 68 GlobalValue(Type *Ty, ValueTy VTy, Use *Ops, unsigned NumOps,
Constants.h 576 explicit ConstantDataSequential(Type *ty, ValueTy VT, const char *Data)
    [all...]
  /external/llvm/include/llvm/ADT/
StringMap.h 27 template<typename ValueTy>
116 template<typename ValueTy>
121 ValueTy second;
133 const ValueTy &getValue() const { return second; }
134 ValueTy &getValue() { return second; }
136 void setValue(const ValueTy &V) { second = V; }
174 return Create(Key, Allocator, ValueTy());
185 return Create(Key, ValueTy());
191 char *Ptr = const_cast<char*>(KeyData) - sizeof(StringMapEntry<ValueTy>);
217 template<typename ValueTy, typename AllocatorTy = MallocAllocator
    [all...]
  /external/clang/lib/CodeGen/
CGAtomic.cpp 32 QualType ValueTy;
51 ValueTy = ATy->getValueType();
53 ValueTy = AtomicTy;
54 EvaluationKind = CGF.getEvaluationKind(ValueTy);
58 TypeInfo ValueTI = C.getTypeInfo(ValueTy);
76 ValueTy = lvalue.getType();
77 ValueSizeInBits = C.getTypeSize(ValueTy);
111 ValueTy = lvalue.getType()->getAs<VectorType>()->getElementType();
112 ValueSizeInBits = C.getTypeSize(ValueTy);
119 ValueTy = lvalue.getType()
    [all...]
TargetInfo.cpp 266 /// computed with getContext().getTypeInfoInChars(ValueTy).
275 QualType ValueTy, bool IsIndirect,
290 llvm::Type *DirectTy = CGF.ConvertTypeForMem(ValueTy);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp     [all...]

Completed in 973 milliseconds