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

  /external/llvm/lib/CodeGen/AsmPrinter/
ARMException.cpp 111 const std::vector<const GlobalVariable *> &TypeInfos = MMI->getTypeInfos();
117 // Emit the Catch TypeInfos.
118 if (VerboseAsm && !TypeInfos.empty()) {
119 Asm->OutStreamer.AddComment(">> Catch TypeInfos <<");
121 Entry = TypeInfos.size();
125 I = TypeInfos.rbegin(), E = TypeInfos.rend(); I != E; ++I) {
134 Asm->OutStreamer.AddComment(">> Filter TypeInfos <<");
147 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
317 const std::vector<const GlobalVariable *> &TypeInfos = MMI->getTypeInfos();
363 bool HaveTTData = IsSJLJ ? (!TypeInfos.empty() || !FilterIds.empty()) : true;
394 // Okay, we have actual filters or typeinfos to emit. As such, we need to
463 unsigned SizeTypes = TypeInfos.size() * TypeFormatSize;
652 const std::vector<const GlobalVariable *> &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/include/llvm/CodeGen/
MachineModuleInfo.h 133 /// TypeInfos - List of C++ TypeInfo used in the current function.
134 std::vector<const GlobalVariable *> TypeInfos;
391 return TypeInfos;
  /external/llvm/lib/CodeGen/
MachineModuleInfo.cpp 310 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();
519 /// getFilterIDFor - Return the filter id for the specified typeinfos. This is

Completed in 1091 milliseconds