HomeSort by relevance Sort by last modified time
    Searched defs:virtReg (Results 1 - 3 of 3) sorted by null

  /external/swiftshader/third_party/LLVM/lib/CodeGen/
LiveIntervalUnion.h 92 void unify(LiveInterval &VirtReg);
95 void extract(LiveInterval &VirtReg);
112 LiveInterval *VirtReg;
113 LiveInterval::iterator VirtRegI; // current position in VirtReg
122 Query(): LiveUnion(), VirtReg(), Tag(0), UserTag(0) {}
125 LiveUnion(LIU), VirtReg(VReg), CheckedFirstInterference(false),
131 VirtReg = NULL;
142 if (UserTag == UTag && VirtReg == VReg &&
149 VirtReg = VReg;
154 LiveInterval &virtReg() const
    [all...]
VirtRegMap.h 171 bool hasPhys(unsigned virtReg) const {
172 return getPhys(virtReg) != NO_PHYS_REG;
177 unsigned getPhys(unsigned virtReg) const {
178 assert(TargetRegisterInfo::isVirtualRegister(virtReg));
179 return Virt2PhysMap[virtReg];
184 void assignVirt2Phys(unsigned virtReg, unsigned physReg) {
185 assert(TargetRegisterInfo::isVirtualRegister(virtReg) &&
187 assert(Virt2PhysMap[virtReg] == NO_PHYS_REG &&
190 Virt2PhysMap[virtReg] = physReg;
195 void clearVirt(unsigned virtReg) {
    [all...]
  /external/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 87 void unify(LiveInterval &VirtReg, const LiveRange &Range);
88 void unify(LiveInterval &VirtReg) {
89 unify(VirtReg, VirtReg);
93 void extract(LiveInterval &VirtReg, const LiveRange &Range);
94 void extract(LiveInterval &VirtReg) {
95 extract(VirtReg, VirtReg);
113 LiveInterval *VirtReg;
114 LiveInterval::iterator VirtRegI; // current position in VirtReg
    [all...]

Completed in 3502 milliseconds