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

  /external/llvm/lib/Target/Hexagon/
HexagonBitSimplify.cpp 168 static bool replaceReg(unsigned OldR, unsigned NewR,
172 static bool replaceRegWithSub(unsigned OldR, unsigned NewR,
175 unsigned NewR, unsigned NewSR, MachineRegisterInfo &MRI);
325 bool HexagonBitSimplify::replaceReg(unsigned OldR, unsigned NewR,
328 !TargetRegisterInfo::isVirtualRegister(NewR))
334 I->setReg(NewR);
340 bool HexagonBitSimplify::replaceRegWithSub(unsigned OldR, unsigned NewR,
343 !TargetRegisterInfo::isVirtualRegister(NewR))
349 I->setReg(NewR);
357 unsigned NewR, unsigned NewSR, MachineRegisterInfo &MRI)
    [all...]
HexagonEarlyIfConv.cpp     [all...]
HexagonGenInsert.cpp     [all...]
HexagonHardwareLoops.cpp     [all...]
HexagonSplitDouble.cpp 645 unsigned NewR = MRI->createVirtualRegister(RC);
647 BuildMI(B, MI, DL, TII->get(Hexagon::A2_addi), NewR)
650 MRI->replaceRegWith(UpdOp.getReg(), NewR);
    [all...]
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 179 bool markConstantRange(const ConstantRange NewR) {
181 if (NewR.isEmptySet())
184 bool changed = Range != NewR;
185 Range = NewR;
190 if (NewR.isEmptySet())
194 Range = NewR;
270 ConstantRange NewR = Range.unionWith(RHS.getConstantRange());
271 if (NewR.isFullSet())
273 return markConstantRange(NewR);
    [all...]

Completed in 502 milliseconds