OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MI2VirtMap
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/CodeGen/
VirtRegMap.cpp
72
MI2VirtMap
.clear();
186
MI2VirtMapTy::iterator IP =
MI2VirtMap
.lower_bound(NewMI);
187
for (MI2VirtMapTy::iterator I =
MI2VirtMap
.lower_bound(OldMI),
188
E =
MI2VirtMap
.end(); I != E && I->first == OldMI; ) {
189
MI2VirtMap
.insert(IP, std::make_pair(NewMI, I->second));
190
MI2VirtMap
.erase(I++);
194
MI2VirtMap
.insert(IP, std::make_pair(NewMI, std::make_pair(VirtReg, MRInfo)));
198
MI2VirtMapTy::iterator IP =
MI2VirtMap
.lower_bound(MI);
199
MI2VirtMap
.insert(IP, std::make_pair(MI, std::make_pair(VirtReg, MRInfo)));
218
MI2VirtMap
.erase(MI)
[
all
...]
VirtRegMap.h
91
///
MI2VirtMap
- This is MachineInstr to virtual register
95
MI2VirtMapTy
MI2VirtMap
;
471
return
MI2VirtMap
.equal_range(MI);
Completed in 1379 milliseconds