HomeSort by: relevance | last modified time | path
    Searched defs:ValueTy (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ValueHandle.h 259 template <typename ValueTy>
265 friend struct DenseMapInfo<AssertingVH<ValueTy>>;
275 // Convert a ValueTy*, which may be const, to the raw Value*.
279 ValueTy *getValPtr() const { return static_cast<ValueTy *>(getRawValPtr()); }
280 void setValPtr(ValueTy *P) { setRawValPtr(GetAsValue(P)); }
285 AssertingVH(ValueTy *P) : ValueHandleBase(Assert, GetAsValue(P)) {}
289 AssertingVH(ValueTy *P) : ThePtr(GetAsValue(P)) {}
293 operator ValueTy*() const {
297 ValueTy *operator=(ValueTy *RHS)
    [all...]
Value.h 51 template<typename ValueTy> class StringMapEntry;
522 enum ValueTy {
538 /// # there are more possible values for the value type than in ValueTy enum.
540 /// the ValueTy enum.
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
TargetInfo.h 300 typedef std::pair<llvm::Value *, StringRef> ValueTy;
306 virtual llvm::SmallVector<ValueTy, 1>
CGAtomic.cpp 33 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()->castAs<VectorType>()->getElementType();
112 ValueSizeInBits = C.getTypeSize(ValueTy);
119 ValueTy = lvalue.getType()
    [all...]
CGExprCXX.cpp 1397 typedef typename Traits::ValueTy ValueTy;
1408 ValueTy Ptr;
1409 ValueTy AllocSize;
1422 const FunctionDecl *OperatorDelete, ValueTy Ptr,
1423 ValueTy AllocSize, bool PassAlignmentToPlacementDelete,
1498 typedef llvm::Value *ValueTy;
1500 static RValue get(CodeGenFunction &, ValueTy V) { return RValue::get(V); }
1529 typedef DominatingValue<RValue>::saved_type ValueTy;
1531 static RValue get(CodeGenFunction &CGF, ValueTy V)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
StringMap.h 24 template <typename ValueTy> class StringMapConstIterator;
25 template <typename ValueTy> class StringMapIterator;
26 template <typename ValueTy> class StringMapKeyIterator;
107 template <typename ValueTy, typename AllocatorTy = MallocAllocator>
112 using MapEntryTy = StringMapEntry<ValueTy>;
127 StringMap(std::initializer_list<std::pair<StringRef, ValueTy>> List)
197 using mapped_type = ValueTy;
198 using value_type = StringMapEntry<ValueTy>;
201 using const_iterator = StringMapConstIterator<ValueTy>;
202 using iterator = StringMapIterator<ValueTy>;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroElide.cpp 58 Type *ValueTy = Value->getType();
59 if (ValueTy != IntrTy) {
62 assert(ValueTy->isPointerTy() && IntrTy->isPointerTy());
CoroSplit.cpp 590 auto getSwiftErrorSlot = [&](Type *ValueTy) -> Value * {
592 assert(CachedSlot->getType()->getPointerElementType() == ValueTy &&
601 assert(Arg.getType()->getPointerElementType() == ValueTy &&
609 auto Alloca = Builder.CreateAlloca(ValueTy);
623 auto ValueTy = Op->getType();
624 auto Slot = getSwiftErrorSlot(ValueTy);
625 MappedResult = Builder.CreateLoad(ValueTy, Slot);
629 auto ValueTy = Value->getType();
630 auto Slot = getSwiftErrorSlot(ValueTy);
CoroFrame.cpp 2121 static Value *emitGetSwiftErrorValue(IRBuilder<> &Builder, Type *ValueTy,
2124 auto FnTy = FunctionType::get(ValueTy, {}, false);
2157 auto ValueTy = Alloca->getAllocatedType();
2162 auto ValueBeforeCall = Builder.CreateLoad(ValueTy, Alloca);
2176 auto ValueAfterCall = emitGetSwiftErrorValue(Builder, ValueTy, Shape);
2221 auto ValueTy = ArgTy->getElementType();
2226 auto Alloca = Builder.CreateAlloca(ValueTy, ArgTy->getAddressSpace());
2230 auto InitialValue = Constant::getNullValue(ValueTy);
2241 auto FinalValue = Builder.CreateLoad(ValueTy, Alloca);
  /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Record.h 406 /// explicit type, stored in ValueTy.
408 RecTy *ValueTy;
412 : Init(K, Opc), ValueTy(T) {}
424 RecTy *getType() const { return ValueTy; }

Completed in 41 milliseconds