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 97 const std::vector<const GlobalValue *> &TypeInfos = MMI->getTypeInfos();
103 // Emit the Catch TypeInfos.
104 if (VerboseAsm && !TypeInfos.empty()) {
105 Asm->OutStreamer.AddComment(">> Catch TypeInfos <<");
107 Entry = TypeInfos.size();
111 I = TypeInfos.rbegin(), E = TypeInfos.rend(); I != E; ++I) {
120 Asm->OutStreamer.AddComment(">> Filter TypeInfos <<");
133 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/include/llvm/CodeGen/
MachineModuleInfo.h 137 /// TypeInfos - List of C++ TypeInfo used in the current function.
138 std::vector<const GlobalValue *> TypeInfos;
423 return TypeInfos;
  /external/llvm/lib/CodeGen/
MachineModuleInfo.cpp 312 TypeInfos.clear();
527 for (unsigned i = 0, N = TypeInfos.size(); i != N; ++i)
528 if (TypeInfos[i] == TI) return i + 1;
530 TypeInfos.push_back(TI);
531 return TypeInfos.size();
534 /// getFilterIDFor - Return the filter id for the specified typeinfos. This is

Completed in 580 milliseconds