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

  /external/llvm/lib/CodeGen/AsmPrinter/
ARMException.cpp 97 const std::vector<const GlobalVariable *> &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 ? 0 : TypeInfos[TypeID - 1]),
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;
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 <<");
    [all...]
  /external/clang/lib/Driver/
Types.cpp 25 static const TypeInfo TypeInfos[] = {
31 static const unsigned numTypes = sizeof(TypeInfos) / sizeof(TypeInfos[0]);
35 return TypeInfos[id - 1];
  /frameworks/compile/slang/
slang_rs_metadata_spec_encoder.cpp 451 unsigned *TypeInfos =
453 unsigned TypeInfosIdx = 0; // iterator for array TypeInfos
455 if (TypeInfos == NULL)
462 TypeInfos[TypeInfosIdx++] = *I;
464 llvm::StringRef TypeInfoData(reinterpret_cast<const char*>(TypeInfos),
469 free(TypeInfos);
478 free(TypeInfos);
  /external/llvm/include/llvm/CodeGen/
MachineModuleInfo.h 133 /// TypeInfos - List of C++ TypeInfo used in the current function.
134 std::vector<const GlobalVariable *> TypeInfos;
380 return TypeInfos;
  /external/llvm/lib/CodeGen/
MachineModuleInfo.cpp 311 TypeInfos.clear();
514 for (unsigned i = 0, N = TypeInfos.size(); i != N; ++i)
515 if (TypeInfos[i] == TI) return i + 1;
517 TypeInfos.push_back(TI);
518 return TypeInfos.size();
521 /// getFilterIDFor - Return the filter id for the specified typeinfos. This is
  /external/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 1244 milliseconds