Home
last modified time | relevance | path

Searched refs:BaseOp1 (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonSubtarget.cpp409 MachineOperand *BaseOp1 = HII.getBaseAndOffset(L1, Offset1, Size1); in apply() local
410 if (BaseOp1 == nullptr || !BaseOp1->isReg() || !Size0.hasValue() || in apply()
411 Size1.getValue() >= 32 || BaseOp0->getReg() != BaseOp1->getReg()) in apply()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp2895 const MachineOperand &BaseOp1 = *BaseOps1.front(); in shouldClusterMemOps() local
2897 assert((BaseOp1.isReg() || BaseOp1.isFI()) && in shouldClusterMemOps()
2908 if ((BaseOp1.isReg() != BaseOp2.isReg()) || in shouldClusterMemOps()
2909 (BaseOp1.isReg() && BaseOp1.getReg() != BaseOp2.getReg()) || in shouldClusterMemOps()
2910 (BaseOp1.isFI() && BaseOp1.getIndex() != BaseOp2.getIndex())) in shouldClusterMemOps()
2915 const MachineInstr &FirstLdSt = *BaseOp1.getParent(); in shouldClusterMemOps()
2938 assert(Base1 == &BaseOp1 && Base2 == &BaseOp2 && in shouldClusterMemOps()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp4317 const MachineOperand &BaseOp1 = *BaseOps1.front(); in shouldClusterMemOps() local
4319 const MachineInstr &FirstLdSt = *BaseOp1.getParent(); in shouldClusterMemOps()
4321 if (BaseOp1.getType() != BaseOp2.getType()) in shouldClusterMemOps()
4324 assert((BaseOp1.isReg() || BaseOp1.isFI()) && in shouldClusterMemOps()
4328 if (BaseOp1.isReg() && BaseOp1.getReg() != BaseOp2.getReg()) in shouldClusterMemOps()
4365 if (BaseOp1.isFI()) { in shouldClusterMemOps()
4366 assert((!BaseOp1.isIdenticalTo(BaseOp2) || Offset1 <= Offset2) && in shouldClusterMemOps()
4371 return shouldClusterFI(MFI, BaseOp1.getIndex(), Offset1, FirstOpc, in shouldClusterMemOps()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp872 const MachineOperand *BaseOp1, *BaseOp2; in addLoopCarriedDependences() local
875 if (TII->getMemOperandWithOffset(LdMI, BaseOp1, Offset1, in addLoopCarriedDependences()
879 if (BaseOp1->isIdenticalTo(*BaseOp2) && in addLoopCarriedDependences()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp717 static bool areCompatibleCmpOps(Value *BaseOp0, Value *BaseOp1, Value *Op0, in areCompatibleCmpOps() argument
720 (isConstant(BaseOp1) && isConstant(Op1)) || in areCompatibleCmpOps()
722 !isa<Instruction>(BaseOp1) && !isa<Instruction>(Op1)) || in areCompatibleCmpOps()
723 BaseOp0 == Op0 || BaseOp1 == Op1 || in areCompatibleCmpOps()
725 getSameOpcode({BaseOp1, Op1}, TLI).getOpcode(); in areCompatibleCmpOps()
740 Value *BaseOp1 = BaseCI->getOperand(1); in isCmpSameOrSwapped() local
745 areCompatibleCmpOps(BaseOp0, BaseOp1, Op0, Op1, TLI)) || in isCmpSameOrSwapped()
747 areCompatibleCmpOps(BaseOp0, BaseOp1, Op1, Op0, TLI)); in isCmpSameOrSwapped()