Searched refs:GlobalRetAddr (Results 1 - 5 of 5) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Target/Alpha/
H A DAlphaMachineFunctionInfo.h29 /// GlobalRetAddr = keeps track of the virtual register initialized for
31 unsigned GlobalRetAddr; member in class:llvm::AlphaMachineFunctionInfo
39 AlphaMachineFunctionInfo() : GlobalBaseReg(0), GlobalRetAddr(0),
43 GlobalRetAddr(0),
50 unsigned getGlobalRetAddr() const { return GlobalRetAddr; }
51 void setGlobalRetAddr(unsigned Reg) { GlobalRetAddr = Reg; }
H A DAlphaInstrInfo.cpp365 unsigned GlobalRetAddr = AlphaFI->getGlobalRetAddr(); local
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;
H A DAlphaISelLowering.h39 /// GlobalRetAddr - used to restore the return address
40 GlobalRetAddr, enumerator in enum:llvm::AlphaISD::NodeType
H A DAlphaISelDAGToDAG.cpp202 unsigned GlobalRetAddr = getInstrInfo()->getGlobalRetAddr(MF); local
203 return CurDAG->getRegister(GlobalRetAddr, TLI.getPointerTy()).getNode();
227 case AlphaISD::GlobalRetAddr:
H A DAlphaISelLowering.cpp185 case AlphaISD::GlobalRetAddr: return "Alpha::GlobalRetAddr";
483 DAG.getNode(AlphaISD::GlobalRetAddr,
769 return DAG.getNode(AlphaISD::GlobalRetAddr, DebugLoc(), MVT::i64);

Completed in 124 milliseconds