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

  /external/llvm/lib/CodeGen/AsmPrinter/
ARMException.cpp 98 const std::vector<unsigned> &FilterIds = MMI->getFilterIds();
119 if (VerboseAsm && !FilterIds.empty()) {
125 I = FilterIds.begin(), E = FilterIds.end(); I < E; ++I) {
DwarfException.cpp 89 // specifications (FilterIds) have strictly negative switch values. Value 0
92 // Negative type IDs index into FilterIds. Positive type IDs index into
95 // (negative) byte offset of the corresponding FilterIds entry. The byte
96 // offset is usually equal to the type ID (because the FilterIds entries are
101 // offset corresponding to FilterIds[i].
103 const std::vector<unsigned> &FilterIds = MMI->getFilterIds();
105 FilterOffsets.reserve(FilterIds.size());
109 I = FilterIds.begin(), E = FilterIds.end(); I != E; ++I) {
349 const std::vector<unsigned> &FilterIds = MMI->getFilterIds()
    [all...]
  /external/llvm/lib/CodeGen/
MachineModuleInfo.cpp 312 FilterIds.clear();
532 if (FilterIds[--i] != TyIds[--j])
543 int FilterID = -(1 + FilterIds.size());
544 FilterIds.reserve(FilterIds.size() + TyIds.size() + 1);
545 FilterIds.insert(FilterIds.end(), TyIds.begin(), TyIds.end());
546 FilterEnds.push_back(FilterIds.size());
547 FilterIds.push_back(0); // terminator
  /external/llvm/lib/ExecutionEngine/JIT/
JITDwarfEmitter.cpp 206 const std::vector<unsigned> &FilterIds = MMI->getFilterIds();
218 // Negative type ids index into FilterIds, positive type ids index into
221 // (negative) byte offset of the corresponding FilterIds entry. The byte
222 // offset is usually equal to the type id, because the FilterIds entries
227 // FilterOffsets[i] holds the byte offset corresponding to FilterIds[i].
229 FilterOffsets.reserve(FilterIds.size());
231 for(std::vector<unsigned>::const_iterator I = FilterIds.begin(),
232 E = FilterIds.end(); I != E; ++I) {
471 for (unsigned j = 0, M = FilterIds.size(); j < M; ++j) {
472 unsigned TypeID = FilterIds[j]
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineModuleInfo.h 136 /// FilterIds - List of typeids encoding filters used in the current function.
137 std::vector<unsigned> FilterIds;
139 /// FilterEnds - List of the indices in FilterIds corresponding to filter
386 return FilterIds;

Completed in 187 milliseconds