HomeSort by: relevance | last modified time | path
    Searched refs:getTypeInfo (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenTBAA.cpp 134 return getTypeInfo(Context.ShortTy);
136 return getTypeInfo(Context.IntTy);
138 return getTypeInfo(Context.LongTy);
140 return getTypeInfo(Context.LongLongTy);
142 return getTypeInfo(Context.Int128Ty);
145 return getTypeInfo(Context.ShortFractTy);
147 return getTypeInfo(Context.FractTy);
149 return getTypeInfo(Context.LongFractTy);
152 return getTypeInfo(Context.SatShortFractTy);
154 return getTypeInfo(Context.SatFractTy)
    [all...]
CodeGenTBAA.h 175 /// getTypeInfo - Get metadata used to describe accesses to objects of the
177 llvm::MDNode *getTypeInfo(QualType QTy);
CGAtomic.cpp 58 TypeInfo ValueTI = C.getTypeInfo(ValueTy);
62 TypeInfo AtomicTI = C.getTypeInfo(AtomicTy);
CGDebugInfo.cpp 54 auto TI = Ctx.getTypeInfo(Ty);
1418 TypeInfo TI = CGM.getContext().getTypeInfo(type);
4677 TypeInfo PtrInfo = C.getTypeInfo(C.VoidPtrTy);
TargetInfo.cpp 1772 TypeInfo TI = getContext().getTypeInfo(Ty);
4193 TypeInfo Info = getContext().getTypeInfo(Ty);
MicrosoftCXXABI.cpp 849 TypeInfo Info = getContext().getTypeInfo(RD->getTypeForDecl());
CodeGenModule.cpp 843 return TBAA->getTypeInfo(QTy);
  /src/external/apache2/llvm/dist/llvm/tools/opt/
PassPrinters.cpp 48 getAnalysisID<Pass>(PassToPrint->getTypeInfo()).print(Out, F.getParent());
55 AU.addRequiredID(PassToPrint->getTypeInfo());
81 getAnalysisID<Pass>(PassToPrint->getTypeInfo())
90 AU.addRequiredID(PassToPrint->getTypeInfo());
113 getAnalysisID<Pass>(PassToPrint->getTypeInfo()).print(Out, &M);
120 AU.addRequiredID(PassToPrint->getTypeInfo());
143 getAnalysisID<Pass>(PassToPrint->getTypeInfo())
151 AU.addRequiredID(PassToPrint->getTypeInfo());
175 getAnalysisID<Pass>(PassToPrint->getTypeInfo())
183 AU.addRequiredID(PassToPrint->getTypeInfo());
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CastToStructChecker.cpp 91 unsigned ToWidth = Ctx.getTypeInfo(ToPointeeTy).Width;
92 unsigned OrigWidth = Ctx.getTypeInfo(OrigPointeeTy).Width;
  /src/external/apache2/llvm/dist/llvm/include/llvm/
PassInfo.h 69 /// getTypeInfo - Return the id object for the pass...
71 const void *getTypeInfo() const { return PassID; }
PassSupport.h 132 : RegisterAGBase(RPB.getPassName(), &Interface::ID, RPB.getTypeInfo(),
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Pass.cpp 239 CFGOnlyList.push_back(P->getTypeInfo());
263 pushUnique(Preserved, PI->getTypeInfo());
PassRegistry.cpp 58 PassInfoMap.insert(std::make_pair(PI.getTypeInfo(), &PI)).second;
LegacyPassManager.cpp 817 ImmutablePassMap[ImmPI->getTypeInfo()] = P;
891 AvailableAnalysis[II[i]->getTypeInfo()] = P;
1019 AvailableAnalysis.find(II[i]->getTypeInfo());
  /src/external/apache2/llvm/dist/clang/include/clang/APINotes/
Types.h 553 return getTypeInfo(index + 1);
556 NullabilityKind getReturnTypeInfo() const { return getTypeInfo(0); }
573 NullabilityKind getTypeInfo(unsigned index) const {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTContext.h 2157 TypeInfo getTypeInfo(const Type *T) const;
2158 TypeInfo getTypeInfo(QualType T) const { return getTypeInfo(T.getTypePtr()); }
2164 uint64_t getTypeSize(QualType T) const { return getTypeInfo(T).Width; }
2165 uint64_t getTypeSize(const Type *T) const { return getTypeInfo(T).Width; }
2195 unsigned getTypeAlign(QualType T) const { return getTypeInfo(T).Align; }
2196 unsigned getTypeAlign(const Type *T) const { return getTypeInfo(T).Align; }
APValue.h 156 static LValueBase getTypeInfo(TypeInfoLValue LV, QualType TypeInfo);
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 1853 TypeInfo Info = getTypeInfo(T);
1864 return getTypeInfo(T).AlignIsRequired;
1896 TypeInfo ASTContext::getTypeInfo(const Type *T) const {
1926 return getTypeInfo(cast<Class##Type>(T)->desugar().getTypePtr());
1945 TypeInfo EltInfo = getTypeInfo(cast<ArrayType>(T)->getElementType());
1960 TypeInfo EltInfo = getTypeInfo(VT->getElementType());
1985 TypeInfo ElementInfo = getTypeInfo(MT->getElementType());
2240 TypeInfo EltInfo = getTypeInfo(cast<ComplexType>(T)->getElementType());
2246 return getTypeInfo(cast<ObjCObjectType>(T)->getBaseType().getTypePtr());
2249 return getTypeInfo(cast<AdjustedType>(T)->getAdjustedType().getTypePtr())
    [all...]
APValue.cpp 55 APValue::LValueBase APValue::LValueBase::getTypeInfo(TypeInfoLValue LV,
Expr.cpp 270 if (T->isIntegralOrEnumerationType() && Context.getTypeInfo(T).Width <= 64)
842 assert(V.getBitWidth() == C.getTypeInfo(type).Width &&
RecordLayoutBuilder.cpp 1538 TypeInfo FieldInfo = Context.getTypeInfo(D->getType());
ItaniumMangle.cpp 3608 unsigned VecSizeInBits = getASTContext().getTypeInfo(T).Width;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
variant.d 205 enum OpID { getTypeInfo, get, compare, equals, testConversion, toString,
226 case OpID.getTypeInfo:
406 case OpID.getTypeInfo:
823 fptr(OpID.getTypeInfo, null, &result);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetPassConfig.cpp 384 return PI ? PI->getTypeInfo() : nullptr;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclObjC.cpp 3166 TypeInfo LeftTI = Context.getTypeInfo(left);
3167 TypeInfo RightTI = Context.getTypeInfo(right);
3223 TypeInfo LeftTI = Context.getTypeInfo(lt);
3224 TypeInfo RightTI = Context.getTypeInfo(rt);

Completed in 125 milliseconds

1 2