HomeSort by relevance Sort by last modified time
    Searched refs:PReg (Results 1 - 9 of 9) sorted by null

  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 174 /// getLiveInVirtReg - If PReg is a live-in physical register, return the
176 unsigned MachineRegisterInfo::getLiveInVirtReg(unsigned PReg) const {
178 if (I->first == PReg)
MachineFunction.cpp 390 unsigned MachineFunction::addLiveIn(unsigned PReg,
393 unsigned VReg = MRI.getLiveInVirtReg(PReg);
399 MRI.addLiveIn(PReg, VReg);
LiveIntervalAnalysis.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h 290 /// getLiveInVirtReg - If PReg is a live-in physical register, return the
292 unsigned getLiveInVirtReg(unsigned PReg) const;
MachineFunction.h 284 unsigned addLiveIn(unsigned PReg, const TargetRegisterClass *RC);
  /external/llvm/lib/Target/Alpha/
AlphaISelLowering.cpp 39 static unsigned AddLiveIn(MachineFunction &MF, unsigned PReg,
41 assert(RC->contains(PReg) && "Not the correct regclass!");
43 MF.getRegInfo().addLiveIn(PReg, VReg);
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 893 unsigned PReg = createResultReg(&X86::GR8RegClass);
895 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(X86::SETPr), PReg);
897 .addReg(PReg).addReg(NEReg);
    [all...]
  /external/llvm/lib/Target/ARM/
ARMLoadStoreOptimizer.cpp 449 unsigned PReg = PMO.getReg();
451 : getARMRegisterNumbering(PReg);
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp 544 AddLiveIn(MachineFunction &MF, unsigned PReg, TargetRegisterClass *RC)
546 assert(RC->contains(PReg) && "Not the correct regclass!");
548 MF.getRegInfo().addLiveIn(PReg, VReg);
    [all...]

Completed in 214 milliseconds