Searched refs:FilterIds (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DARMException.cpp97 const std::vector<unsigned> &FilterIds = MF->getFilterIds(); local
118 if (VerboseAsm && !FilterIds.empty()) {
124 I = FilterIds.begin(), E = FilterIds.end(); I < E; ++I) {
H A DEHStreamer.cpp73 // specifications (FilterIds) have strictly negative switch values. Value 0
76 // Negative type IDs index into FilterIds. Positive type IDs index into
79 // (negative) byte offset of the corresponding FilterIds entry. The byte
80 // offset is usually equal to the type ID (because the FilterIds entries are
85 // offset corresponding to FilterIds[i].
87 const std::vector<unsigned> &FilterIds = Asm->MF->getFilterIds();
89 FilterOffsets.reserve(FilterIds.size());
93 I = FilterIds.begin(), E = FilterIds.end(); I != E; ++I) {
352 const std::vector<unsigned> &FilterIds local
616 const std::vector<unsigned> &FilterIds = MF->getFilterIds(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineFunction.cpp835 if (FilterIds[--i] != TyIds[--j])
846 int FilterID = -(1 + FilterIds.size());
847 FilterIds.reserve(FilterIds.size() + TyIds.size() + 1);
848 FilterIds.insert(FilterIds.end(), TyIds.begin(), TyIds.end());
849 FilterEnds.push_back(FilterIds.size());
850 FilterIds.push_back(0); // terminator
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineFunction.h338 std::vector<unsigned> FilterIds; member in class:llvm::MachineFunction
340 /// List of the indices in FilterIds corresponding to filter terminators.
970 return FilterIds;

Completed in 303 milliseconds