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

  /external/clang/lib/Driver/
Types.cpp 26 static const TypeInfo TypeInfos[] = {
32 static const unsigned numTypes = sizeof(TypeInfos) / sizeof(TypeInfos[0]);
36 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/lib/CodeGen/AsmPrinter/
DwarfException.cpp 89 // (TypeInfos) have strictly positive switch values, and exception
94 // TypeInfos. The value written for a positive type ID is just the type ID
349 const std::vector<const GlobalVariable *> &TypeInfos = MMI->getTypeInfos();
391 bool HaveTTData = IsSJLJ ? (!TypeInfos.empty() || !FilterIds.empty()) : true;
422 // Okay, we have actual filters or typeinfos to emit. As such, we need to
491 unsigned SizeTypes = TypeInfos.size() * TypeFormatSize;
675 // Emit the Catch TypeInfos.
676 if (VerboseAsm && !TypeInfos.empty()) {
677 Asm->OutStreamer.AddComment(">> Catch TypeInfos <<");
679 Entry = TypeInfos.size()
    [all...]
  /external/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/llvm/lib/CodeGen/
MachineModuleInfo.cpp 309 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
  /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 81 milliseconds