Searched refs:TypeInfos (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.2-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DARMException.cpp103 const std::vector<const GlobalVariable *> &TypeInfos = MMI->getTypeInfos(); local
109 // Emit the Catch TypeInfos.
110 if (VerboseAsm && !TypeInfos.empty()) {
111 Asm->OutStreamer.AddComment(">> Catch TypeInfos <<");
113 Entry = TypeInfos.size();
117 I = TypeInfos.rbegin(), E = TypeInfos.rend(); I != E; ++I) {
126 Asm->OutStreamer.AddComment(">> Filter TypeInfos <<");
139 Asm->EmitTTypeReference((TypeID == 0 ? 0 : TypeInfos[TypeID - 1]),
H A DDwarfException.cpp88 // (TypeInfos) have strictly positive switch values, and exception
93 // TypeInfos. The value written for a positive type ID is just the type ID
348 const std::vector<const GlobalVariable *> &TypeInfos = MMI->getTypeInfos();
390 bool HaveTTData = IsSJLJ ? (!TypeInfos.empty() || !FilterIds.empty()) : true;
490 unsigned SizeTypes = TypeInfos.size() * TypeFormatSize;
680 const std::vector<const GlobalVariable *> &TypeInfos = MMI->getTypeInfos();
686 // Emit the Catch TypeInfos.
687 if (VerboseAsm && !TypeInfos.empty()) {
688 Asm->OutStreamer.AddComment(">> Catch TypeInfos <<");
690 Entry = TypeInfos
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Driver/
H A DTypes.cpp26 static const TypeInfo TypeInfos[] = { variable
32 static const unsigned numTypes = llvm::array_lengthof(TypeInfos);
36 return TypeInfos[id - 1];
/freebsd-10.2-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineModuleInfo.h133 /// TypeInfos - List of C++ TypeInfo used in the current function.
134 std::vector<const GlobalVariable *> TypeInfos; member in class:llvm::MachineModuleInfo
386 return TypeInfos;
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/
H A DMachineModuleInfo.cpp310 TypeInfos.clear();
512 for (unsigned i = 0, N = TypeInfos.size(); i != N; ++i)
513 if (TypeInfos[i] == TI) return i + 1;
515 TypeInfos.push_back(TI);
516 return TypeInfos.size();

Completed in 161 milliseconds