Home
last modified time | relevance | path

Searched refs:getTypeInfo (Results 1 – 17 of 17) sorted by relevance

/external/llvm/tools/opt/
DPassPrinters.cpp45 getAnalysisID<Pass>(PassToPrint->getTypeInfo()).print(Out, F.getParent()); in runOnFunction()
52 AU.addRequiredID(PassToPrint->getTypeInfo()); in getAnalysisUsage()
80 getAnalysisID<Pass>(PassToPrint->getTypeInfo()) in runOnSCC()
89 AU.addRequiredID(PassToPrint->getTypeInfo()); in getAnalysisUsage()
114 getAnalysisID<Pass>(PassToPrint->getTypeInfo()).print(Out, &M); in runOnModule()
121 AU.addRequiredID(PassToPrint->getTypeInfo()); in getAnalysisUsage()
146 getAnalysisID<Pass>(PassToPrint->getTypeInfo()) in runOnLoop()
154 AU.addRequiredID(PassToPrint->getTypeInfo()); in getAnalysisUsage()
181 getAnalysisID<Pass>(PassToPrint->getTypeInfo()) in runOnRegion()
189 AU.addRequiredID(PassToPrint->getTypeInfo()); in getAnalysisUsage()
[all …]
/external/llvm/lib/IR/
DPassRegistry.cpp61 PassInfoMap.insert(std::make_pair(PI.getTypeInfo(),&PI)).second; in registerPass()
76 MapType::iterator I = PassInfoMap.find(PI.getTypeInfo()); in unregisterPass()
DPass.cpp249 CFGOnlyList.push_back(P->getTypeInfo()); in passEnumerate()
272 if (PI) Preserved.push_back(PI->getTypeInfo()); in addPreserved()
DLegacyPassManager.cpp733 if ((*II)->getTypeInfo() == AID) in findAnalysisPass()
838 AvailableAnalysis[II[i]->getTypeInfo()] = P; in recordAvailableAnalysis()
976 AvailableAnalysis.find(II[i]->getTypeInfo()); in freePass()
/external/llvm/include/llvm/
DPassInfo.h78 const void *getTypeInfo() const { return PassID; } in getTypeInfo() function
DPassSupport.h154 &Interface::ID, RPB.getTypeInfo(), in RegisterAnalysisGroup()
/external/llvm/tools/llc/
Dllc.cpp341 StartAfterID = PI->getTypeInfo(); in compileModule()
349 StopAfterID = PI->getTypeInfo(); in compileModule()
/external/clang/include/clang/AST/
DASTContext.h1617 std::pair<uint64_t, unsigned> getTypeInfo(const Type *T) const;
1618 std::pair<uint64_t, unsigned> getTypeInfo(QualType T) const { in getTypeInfo() function
1619 return getTypeInfo(T.getTypePtr()); in getTypeInfo()
1624 return getTypeInfo(T).first; in getTypeSize()
1627 return getTypeInfo(T).first; in getTypeSize()
1649 return getTypeInfo(T).second; in getTypeAlign()
1652 return getTypeInfo(T).second; in getTypeAlign()
/external/llvm/lib/CodeGen/
DPasses.cpp490 const char *TID = (const char *)(TPI->getTypeInfo()); in addMachinePasses()
491 const char *IID = (const char *)(IPI->getTypeInfo()); in addMachinePasses()
/external/clang/lib/AST/
DASTContext.cpp1416 std::pair<uint64_t, unsigned> Info = getTypeInfo(T); in getTypeInfoInChars()
1426 std::pair<uint64_t, unsigned> ASTContext::getTypeInfo(const Type *T) const { in getTypeInfo() function in ASTContext
1454 return getTypeInfo(cast<Class##Type>(T)->desugar().getTypePtr()); in getTypeInfoImpl()
1474 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(CAT->getElementType()); in getTypeInfoImpl()
1488 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(VT->getElementType()); in getTypeInfoImpl()
1642 getTypeInfo(cast<ComplexType>(T)->getElementType()); in getTypeInfoImpl()
1648 return getTypeInfo(cast<ObjCObjectType>(T)->getBaseType().getTypePtr()); in getTypeInfoImpl()
1651 return getTypeInfo(cast<AdjustedType>(T)->getAdjustedType().getTypePtr()); in getTypeInfoImpl()
1670 return getTypeInfo(ET->getDecl()->getIntegerType()); in getTypeInfoImpl()
1680 return getTypeInfo(cast<SubstTemplateTypeParmType>(T)-> in getTypeInfoImpl()
[all …]
DRecordLayoutBuilder.cpp1420 std::pair<uint64_t, unsigned> FieldInfo = Context.getTypeInfo(D->getType()); in LayoutBitField()
/external/lldb/source/Symbol/
DClangASTType.cpp3053 … std::pair<uint64_t, unsigned> ivar_type_info = m_ast->getTypeInfo(ivar_qual_type.getTypePtr()); in GetChildClangTypeAtIndex()
3085 … std::pair<uint64_t, unsigned> ivar_type_info = m_ast->getTypeInfo(ivar_qual_type.getTypePtr()); in GetChildClangTypeAtIndex()
5570 … std::pair<uint64_t, unsigned> base_class_type_info = m_ast->getTypeInfo(base_class_qual_type); in DumpValue()
5609 std::pair<uint64_t, unsigned> field_type_info = m_ast->getTypeInfo(field_type); in DumpValue()
5688 std::pair<uint64_t, unsigned> field_type_info = m_ast->getTypeInfo(element_qual_type); in DumpValue()
5751 std::pair<uint64_t, unsigned> typedef_type_info = m_ast->getTypeInfo(typedef_qual_type); in DumpValue()
5774 … std::pair<uint64_t, unsigned> elaborated_type_info = m_ast->getTypeInfo(elaborated_qual_type); in DumpValue()
5798 std::pair<uint64_t, unsigned> desugar_type_info = m_ast->getTypeInfo(desugar_qual_type); in DumpValue()
5866 … std::pair<uint64_t, unsigned> typedef_type_info = m_ast->getTypeInfo(typedef_qual_type); in DumpTypeValue()
/external/clang/lib/CodeGen/
DCGAtomic.cpp50 std::tie(ValueSizeInBits, valueAlignInBits) = C.getTypeInfo(ValueTy); in AtomicInfo()
53 std::tie(AtomicSizeInBits, atomicAlignInBits) = C.getTypeInfo(AtomicTy); in AtomicInfo()
DCGDebugInfo.cpp809 std::tie(sizeInBits, alignInBits) = CGM.getContext().getTypeInfo(type); in createFieldType()
3032 std::pair<uint64_t,unsigned> ptrInfo = C.getTypeInfo(C.VoidPtrTy); in EmitDeclareOfBlockLiteralArgVariable()
/external/clang/lib/Sema/
DSemaDeclObjC.cpp2110 if (Context.getTypeInfo(left) != Context.getTypeInfo(right)) in matchTypes()
2162 if (Context.getTypeInfo(lt) != Context.getTypeInfo(rt)) return false; in tryMatchRecordTypes()
/external/javasqlite/src/main/java/SQLite/JDBC2z/
DJDBCDatabaseMetaData.java1140 public ResultSet getTypeInfo() throws SQLException { in getTypeInfo() method in JDBCDatabaseMetaData
/external/llvm/lib/Target/
DREADME.txt155 For vector types, DataLayout.cpp::getTypeInfo() returns alignment that is equal