OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Virt2PhysMap
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/CodeGen/
VirtRegMap.h
60
///
Virt2PhysMap
- This is a virtual to physical register
65
IndexedMap<unsigned, VirtReg2IndexFunctor>
Virt2PhysMap
;
146
VirtRegMap() : MachineFunctionPass(ID),
Virt2PhysMap
(NO_PHYS_REG),
179
return
Virt2PhysMap
[virtReg];
187
assert(
Virt2PhysMap
[virtReg] == NO_PHYS_REG &&
190
Virt2PhysMap
[virtReg] = physReg;
197
assert(
Virt2PhysMap
[virtReg] != NO_PHYS_REG &&
199
Virt2PhysMap
[virtReg] = NO_PHYS_REG;
204
Virt2PhysMap
.clear();
243
return (Virt2SplitMap[virtReg] &&
Virt2PhysMap
[virtReg] != NO_PHYS_REG)
[
all
...]
VirtRegMap.cpp
64
Virt2PhysMap
.clear();
94
Virt2PhysMap
.resize(NumRegs);
234
if (
Virt2PhysMap
[Reg] != (unsigned)VirtRegMap::NO_PHYS_REG)
235
Used.set(
Virt2PhysMap
[Reg]);
362
if (
Virt2PhysMap
[Reg] != (unsigned)VirtRegMap::NO_PHYS_REG) {
364
<< PrintReg(
Virt2PhysMap
[Reg], TRI) << "] "
Completed in 2889 milliseconds