HomeSort by relevance Sort by last modified time
    Searched refs:TypeInfos (Results 1 - 11 of 11) sorted by null

  /external/llvm/lib/CodeGen/AsmPrinter/
ARMException.cpp 102 const std::vector<const GlobalValue *> &TypeInfos = MMI->getTypeInfos();
108 // Emit the Catch TypeInfos.
109 if (VerboseAsm && !TypeInfos.empty()) {
110 Asm->OutStreamer->AddComment(">> Catch TypeInfos <<");
112 Entry = TypeInfos.size();
115 for (const GlobalValue *GV : reverse(TypeInfos)) {
123 Asm->OutStreamer->AddComment(">> Filter TypeInfos <<");
136 Asm->EmitTTypeReference((TypeID == 0 ? nullptr : TypeInfos[TypeID - 1]),
EHStreamer.cpp 62 // (TypeInfos) have strictly positive switch values, and exception
67 // TypeInfos. The value written for a positive type ID is just the type ID
339 const std::vector<const GlobalValue *> &TypeInfos = MMI->getTypeInfos();
371 bool HaveTTData = IsSJLJ ? (!TypeInfos.empty() || !FilterIds.empty()) : true;
402 // Okay, we have actual filters or typeinfos to emit. As such, we need to
466 unsigned SizeTypes = TypeInfos.size() * TypeFormatSize;
652 const std::vector<const GlobalValue *> &TypeInfos = MMI->getTypeInfos();
658 // Emit the Catch TypeInfos.
659 if (VerboseAsm && !TypeInfos.empty()) {
660 Asm->OutStreamer->AddComment(">> Catch TypeInfos <<");
    [all...]
  /external/clang/lib/Driver/
Types.cpp 26 static const TypeInfo TypeInfos[] = {
32 static const unsigned numTypes = llvm::array_lengthof(TypeInfos);
36 return TypeInfos[id - 1];
  /external/llvm/lib/CodeGen/
MachineModuleInfo.cpp 246 TypeInfos.clear();
428 for (unsigned i = 0, N = TypeInfos.size(); i != N; ++i)
429 if (TypeInfos[i] == TI) return i + 1;
431 TypeInfos.push_back(TI);
432 return TypeInfos.size();
435 /// getFilterIDFor - Return the filter id for the specified typeinfos. This is
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DwarfException.cpp 88 // (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;
421 // Okay, we have actual filters or typeinfos to emit. As such, we need to
490 unsigned SizeTypes = TypeInfos.size() * TypeFormatSize;
679 // Emit the Catch TypeInfos.
680 if (VerboseAsm && !TypeInfos.empty()) {
681 Asm->OutStreamer.AddComment(">> Catch TypeInfos <<");
683 Entry = TypeInfos.size()
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineModuleInfo.h 143 /// TypeInfos - List of C++ TypeInfo used in the current function.
144 std::vector<const GlobalValue *> TypeInfos;
411 return TypeInfos;
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineModuleInfo.h 134 /// TypeInfos - List of C++ TypeInfo used in the current function.
135 std::vector<const GlobalVariable *> TypeInfos;
380 return TypeInfos;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineModuleInfo.cpp 309 TypeInfos.clear();
513 for (unsigned i = 0, N = TypeInfos.size(); i != N; ++i)
514 if (TypeInfos[i] == TI) return i + 1;
516 TypeInfos.push_back(TI);
517 return TypeInfos.size();
520 /// getFilterIDFor - Return the filter id for the specified typeinfos. This is
  /external/libcxxabi/test/native/arm-linux-eabi/
ttype-encoding-00.pass.sh.s 94 @ >> Catch TypeInfos <<
ttype-encoding-90.pass.sh.s 93 @ >> Catch TypeInfos <<
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JITDwarfEmitter.cpp 205 const std::vector<const GlobalVariable *> &TypeInfos = MMI->getTypeInfos();
219 // TypeInfos. The value written for a positive type id is just the type
381 unsigned SizeTypes = TypeInfos.size() * TD->getPointerSize();
453 for (unsigned M = TypeInfos.size(); M; --M) {
454 const GlobalVariable *GV = TypeInfos[M - 1];

Completed in 685 milliseconds