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

  /external/swiftshader/third_party/LLVM/lib/Target/Alpha/
AlphaMachineFunctionInfo.h 29 /// GlobalRetAddr = keeps track of the virtual register initialized for
31 unsigned GlobalRetAddr;
39 AlphaMachineFunctionInfo() : GlobalBaseReg(0), GlobalRetAddr(0),
43 GlobalRetAddr(0),
50 unsigned getGlobalRetAddr() const { return GlobalRetAddr; }
51 void setGlobalRetAddr(unsigned Reg) { GlobalRetAddr = Reg; }
AlphaISelLowering.h 39 /// GlobalRetAddr - used to restore the return address
40 GlobalRetAddr,
AlphaInstrInfo.cpp 365 unsigned GlobalRetAddr = AlphaFI->getGlobalRetAddr();
366 if (GlobalRetAddr != 0)
367 return GlobalRetAddr;
369 // Insert the set of GlobalRetAddr into the first MBB of the function
375 GlobalRetAddr = RegInfo.createVirtualRegister(&Alpha::GPRCRegClass);
377 GlobalRetAddr).addReg(Alpha::R26);
380 AlphaFI->setGlobalRetAddr(GlobalRetAddr);
381 return GlobalRetAddr;
AlphaISelDAGToDAG.cpp 202 unsigned GlobalRetAddr = getInstrInfo()->getGlobalRetAddr(MF);
203 return CurDAG->getRegister(GlobalRetAddr, TLI.getPointerTy()).getNode();
227 case AlphaISD::GlobalRetAddr:

Completed in 3276 milliseconds