/external/llvm/tools/opt/ |
D | opt.cpp | 178 getAnalysisID<Pass>(PassToPrint->getTypeInfo()).print(Out, in runOnSCC() 187 AU.addRequiredID(PassToPrint->getTypeInfo()); in getAnalysisUsage() 211 getAnalysisID<Pass>(PassToPrint->getTypeInfo()).print(Out, &M); in runOnModule() 218 AU.addRequiredID(PassToPrint->getTypeInfo()); in getAnalysisUsage() 242 getAnalysisID<Pass>(PassToPrint->getTypeInfo()).print(Out, in runOnFunction() 250 AU.addRequiredID(PassToPrint->getTypeInfo()); in getAnalysisUsage() 275 getAnalysisID<Pass>(PassToPrint->getTypeInfo()).print(Out, in runOnLoop() 283 AU.addRequiredID(PassToPrint->getTypeInfo()); in getAnalysisUsage() 309 getAnalysisID<Pass>(PassToPrint->getTypeInfo()).print(Out, in runOnRegion() 317 AU.addRequiredID(PassToPrint->getTypeInfo()); in getAnalysisUsage() [all …]
|
/external/llvm/lib/VMCore/ |
D | Pass.cpp | 256 CFGOnlyList.push_back(P->getTypeInfo()); in passEnumerate() 279 if (PI) Preserved.push_back(PI->getTypeInfo()); in addPreserved()
|
D | PassRegistry.cpp | 109 Impl->PassInfoMap.insert(std::make_pair(PI.getTypeInfo(),&PI)).second; in registerPass() 126 Impl->PassInfoMap.find(PI.getTypeInfo()); in unregisterPass()
|
D | PassManager.cpp | 701 if ((*II)->getTypeInfo() == AID) in findAnalysisPass() 806 AvailableAnalysis[II[i]->getTypeInfo()] = P; in recordAvailableAnalysis() 944 AvailableAnalysis.find(II[i]->getTypeInfo()); in freePass()
|
/external/llvm/include/llvm/ |
D | PassSupport.h | 82 const void *getTypeInfo() const { return PassID; } in getTypeInfo() function 247 &Interface::ID, RPB.getTypeInfo(), in RegisterAnalysisGroup()
|
/external/clang/include/clang/AST/ |
D | ASTContext.h | 1435 std::pair<uint64_t, unsigned> getTypeInfo(const Type *T) const; 1436 std::pair<uint64_t, unsigned> getTypeInfo(QualType T) const { in getTypeInfo() function 1437 return getTypeInfo(T.getTypePtr()); in getTypeInfo() 1442 return getTypeInfo(T).first; in getTypeSize() 1445 return getTypeInfo(T).first; in getTypeSize() 1467 return getTypeInfo(T).second; in getTypeAlign() 1470 return getTypeInfo(T).second; in getTypeAlign()
|
/external/llvm/tools/llc/ |
D | llc.cpp | 537 StartAfterID = PI->getTypeInfo(); in main() 545 StopAfterID = PI->getTypeInfo(); in main()
|
/external/llvm/lib/CodeGen/ |
D | Passes.cpp | 450 const char *TID = (const char *)(TPI->getTypeInfo()); in addMachinePasses() 451 const char *IID = (const char *)(IPI->getTypeInfo()); in addMachinePasses()
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 1170 std::pair<uint64_t, unsigned> Info = getTypeInfo(T); in getTypeInfoInChars() 1180 std::pair<uint64_t, unsigned> ASTContext::getTypeInfo(const Type *T) const { in getTypeInfo() function in ASTContext 1224 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(CAT->getElementType()); in getTypeInfoImpl() 1236 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(VT->getElementType()); in getTypeInfoImpl() 1368 getTypeInfo(getPointerDiffType()); in getTypeInfoImpl() 1377 getTypeInfo(cast<ComplexType>(T)->getElementType()); in getTypeInfoImpl() 1383 return getTypeInfo(cast<ObjCObjectType>(T)->getBaseType().getTypePtr()); in getTypeInfoImpl() 1402 return getTypeInfo(ET->getDecl()->getIntegerType()); in getTypeInfoImpl() 1412 return getTypeInfo(cast<SubstTemplateTypeParmType>(T)-> in getTypeInfoImpl() 1418 return getTypeInfo(A->getDeducedType().getTypePtr()); in getTypeInfoImpl() [all …]
|
D | RecordLayoutBuilder.cpp | 1750 Context.getTypeInfo(FD->getType()); in LayoutFields() 1760 FieldInfo = Context.getTypeInfo(LastFD->getType()); in LayoutFields() 1816 Context.getTypeInfo(FD->getType()); in LayoutFields() 1913 std::pair<uint64_t, unsigned> FieldInfo = Context.getTypeInfo(D->getType()); in LayoutBitField() 1933 FieldInfo = Context.getTypeInfo(ZeroLengthBitfield->getType()); in LayoutBitField()
|
/external/clang/lib/Sema/ |
D | SemaDeclObjC.cpp | 1931 if (Context.getTypeInfo(left) != Context.getTypeInfo(right)) in matchTypes() 1983 if (Context.getTypeInfo(lt) != Context.getTypeInfo(rt)) return false; in tryMatchRecordTypes()
|
/external/clang/lib/CodeGen/ |
D | CGDebugInfo.cpp | 761 llvm::tie(sizeInBits, alignInBits) = CGM.getContext().getTypeInfo(type); in createFieldType() 1556 std::pair<uint64_t, unsigned> Info = CGM.getContext().getTypeInfo(Ty); in CreateType() 2573 std::pair<uint64_t,unsigned> ptrInfo = C.getTypeInfo(C.VoidPtrTy); in EmitDeclareOfBlockLiteralArgVariable()
|
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
D | JDBCDatabaseMetaData.java | 1140 public ResultSet getTypeInfo() throws SQLException { in getTypeInfo() method in JDBCDatabaseMetaData
|
/external/llvm/lib/Target/ |
D | README.txt | 155 For vector types, TargetData.cpp::getTypeInfo() returns alignment that is equal
|