HomeSort by relevance Sort by last modified time
    Searched refs:isUse (Results 1 - 25 of 48) sorted by null

1 2

  /external/llvm/lib/CodeGen/
ProcessImplicitDefs.cpp 71 if (MO->isReg() && MO->isUse() && MO->readsReg())
114 if (MO->isUse())
Spiller.cpp 113 hasUse |= mi->getOperand(i).isUse();
127 if (mop.isUse() && !mi->isRegTiedToDefOperand(mopIdx)) {
ExpandPostRAPseudos.cpp 72 if (!MO.isReg() || !MO.isImplicit() || MO.isUse())
82 (MI->getOperand(2).isReg() && MI->getOperand(2).isUse()) &&
RegAllocFast.cpp 236 if (MO.isUse() && !LR.LastUse->isRegTiedToDefOperand(LR.LastOpNum)) {
599 if (LRI->LastUse != MI || LRI->LastUse->getOperand(LRI->LastOpNum).isUse())
631 if (MO.isUse())
731 if (MO.isUse()) {
    [all...]
MachineInstr.cpp 300 if (isUndef() && isUse()) {
699 if (NewMO->isUse()) {
    [all...]
RegisterScavenging.cpp 136 if (MO.isUse()) {
207 if (MO.isUse()) {
371 if (MO.isReg() && MO.getReg() != 0 && !(MO.isUse() && MO.isUndef()) &&
DeadMachineInstructionElim.cpp 173 if (MO.isReg() && MO.isUse()) {
TwoAddressInstructionPass.cpp 200 if (MO.isUse() && MOReg != SavedReg)
327 if (MO.isUse() && DI->second < LastUse)
438 if (!MO.isReg() || !MO.isUse() || MO.getReg() != Reg)
    [all...]
CriticalAntiDepBreaker.cpp 202 if (MO.isUse() && Special) {
268 if (!MO.isUse()) continue;
581 if (MO.isUse() && TRI->regsOverlap(AntiDepReg, Reg)) {
MachineCSE.cpp 119 if (!MO.isReg() || !MO.isUse())
173 if (MO.isUse())
383 if (MO.isReg() && MO.isUse() &&
TargetInstrInfo.cpp 415 assert(MI->getOperand(Ops[i]).isUse() && "Folding load into def!");
487 if (MO.isUse()) {
508 if (MO.isUse())
MachineSink.cpp 491 if (MO.isUse()) {
503 if (MO.isUse()) continue;
LiveIntervalAnalysis.cpp 623 LiveIntervals::getSpillWeight(bool isDef, bool isUse, BlockFrequency freq) {
625 return (isDef + isUse) * (freq.getFrequency() * Scale);
746 if (MO->isUse())
828 if (MO->isReg() && MO->isUse())
    [all...]
PostRASchedulerList.cpp 511 if (!MO.isReg() || !MO.isUse()) continue;
546 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
LiveRangeCalc.cpp 72 if (MO.isUse())
BranchFolding.cpp 153 if (!MO.isReg() || !MO.isUse())
    [all...]
  /external/llvm/lib/Target/R600/
SIInsertWaits.cpp 175 if (I->isReg() && I->isUse())
233 if (Op.isUse())
325 if (Op.isUse())
  /external/llvm/lib/Target/Sparc/
DelaySlotFiller.cpp 248 if (MO.isUse()) {
273 assert(Reg.isUse() && "JMPL first operand is not a use.");
280 assert(RegOrImm.isUse() && "JMPLrr second operand is not a use.");
301 if (MO.isUse()) {
  /external/llvm/lib/Target/Hexagon/
HexagonNewValueJump.cpp 151 (II->getOperand(i).isUse() || II->getOperand(i).isDef())) {
573 if (MO.isReg() && MO.isUse()) {
580 if (localMO.isReg() && localMO.isUse() &&
HexagonVLIWPacketizer.cpp 356 if (MO.isReg() && MO.isUse() && (MO.getReg() == DepReg)) {
490 MI->getOperand(opNum).isUse()) {
851 if (Op.isReg() && Op.getReg() && Op.isUse() &&
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h 529 if ((!ReturnUses && op->isUse()) ||
563 if (Op->isUse())
MachineOperand.h 269 bool isUse() const {
328 return !isUndef() && !isInternalRead() && (isUse() || getSubReg());
LiveIntervalAnalysis.h 103 static float getSpillWeight(bool isDef, bool isUse, BlockFrequency freq);
  /external/llvm/lib/Target/ARM/
Thumb2ITBlockPass.cpp 68 if (MO.isUse())
A15SDOptimizer.cpp 200 if ((!MO.isReg()) || (!MO.isUse()))
418 if (!MO.isReg() || !MO.isUse())

Completed in 285 milliseconds

1 2