Home
last modified time | relevance | path

Searched refs:BaseOp0 (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonSubtarget.cpp395 MachineOperand *BaseOp0 = HII.getBaseAndOffset(L0, Offset0, Size0); in apply() local
397 if (BaseOp0 == nullptr || !BaseOp0->isReg() || !Size0.hasValue() || in apply()
411 Size1.getValue() >= 32 || BaseOp0->getReg() != BaseOp1->getReg()) in apply()
/src/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp717 static bool areCompatibleCmpOps(Value *BaseOp0, Value *BaseOp1, Value *Op0, in areCompatibleCmpOps() argument
719 return (isConstant(BaseOp0) && isConstant(Op0)) || in areCompatibleCmpOps()
721 (!isa<Instruction>(BaseOp0) && !isa<Instruction>(Op0) && in areCompatibleCmpOps()
723 BaseOp0 == Op0 || BaseOp1 == Op1 || in areCompatibleCmpOps()
724 getSameOpcode({BaseOp0, Op0}, TLI).getOpcode() || in areCompatibleCmpOps()
739 Value *BaseOp0 = BaseCI->getOperand(0); in isCmpSameOrSwapped() local
745 areCompatibleCmpOps(BaseOp0, BaseOp1, Op0, Op1, TLI)) || in isCmpSameOrSwapped()
747 areCompatibleCmpOps(BaseOp0, BaseOp1, Op1, Op0, TLI)); in isCmpSameOrSwapped()