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

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
GetElementPtrTypeIterator.h 34 PointerUnion<StructType *, Type *> CurTy;
49 I.CurTy = Ty;
73 if (auto *T = CurTy.dyn_cast<Type *>())
75 return CurTy.get<StructType *>()->getTypeAtIndex(getOperand());
83 CurTy = ATy->getElementType();
86 CurTy = VTy->getElementType();
92 CurTy = dyn_cast<StructType>(Ty);
118 bool isStruct() const { return CurTy.is<StructType *>(); }
119 bool isSequential() const { return CurTy.is<Type *>(); }
121 StructType *getStructType() const { return CurTy.get<StructType *>();
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
VTableBuilder.cpp 2718 QualType CurTy = Element.Base->getType();
2720 *CurRD = CurTy->getAsCXXRecordDecl();
Type.cpp 441 const Type *CurTy = Qs.strip(Cur);
442 switch (CurTy->getTypeClass()) {
446 const auto *Ty = cast<Class##Type>(CurTy); \
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 2369 Type *CurTy = Type::getInt32Ty(Context);
2440 V = UndefValue::get(CurTy);
2443 V = PoisonValue::get(CurTy);
2453 CurTy = flattenPointerTypes(CurFullTy);
2456 if (CurTy->isVoidTy() || CurTy->isFunctionTy() || CurTy->isLabelTy())
2458 V = Constant::getNullValue(CurTy);
2461 if (!CurTy->isIntegerTy() || Record.empty())
2463 V = ConstantInt::get(CurTy, decodeSignRotatedValue(Record[0]))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
LegalizerHelper.cpp 1933 LLT CurTy = MRI.getType(SrcReg);
1939 APInt::getOneBitSet(WideTy.getSizeInBits(), CurTy.getSizeInBits());
1950 unsigned SizeDiff = WideTy.getSizeInBits() - CurTy.getSizeInBits();

Completed in 40 milliseconds