Home
last modified time | relevance | path

Searched refs:ScaleAmt (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCTargetDesc.cpp666 const MCOperand &ScaleAmt = Inst.getOperand(MemOpStart + X86::AddrScaleAmt); in evaluateMemoryOperandAddress() local
668 if (SegReg.getReg() || IndexReg.getReg() || ScaleAmt.getImm() != 1 || in evaluateMemoryOperandAddress()
692 const MCOperand &ScaleAmt = Inst.getOperand(MemOpStart + X86::AddrScaleAmt); in getMemoryOperandRelocationOffset() local
696 ScaleAmt.getImm() != 1 || !Disp.isImm()) in getMemoryOperandRelocationOffset()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp2426 uint64_t ScaleAmt = 1ULL << ShiftAmt; in matchIndexRecursively() local
2427 if ((AM.Scale * ScaleAmt) <= 8) { in matchIndexRecursively()
2428 AM.Scale *= ScaleAmt; in matchIndexRecursively()
2481 uint64_t ScaleAmt = 1ULL << ShAmt; in matchIndexRecursively() local
2482 if ((AM.Scale * ScaleAmt) <= 8 && in matchIndexRecursively()
2485 AM.Scale *= ScaleAmt; in matchIndexRecursively()
H A DX86ISelLowering.cpp56729 unsigned ScaleAmt = Scale->getAsZExtVal(); in combineGatherScatter() local
56730 assert(isPowerOf2_32(ScaleAmt) && "Scale must be a power of 2"); in combineGatherScatter()
56731 unsigned Log2ScaleAmt = Log2_32(ScaleAmt); in combineGatherScatter()
56749 DAG.getConstant(ScaleAmt * 2, DL, Scale.getValueType()); in combineGatherScatter()
56794 uint64_t ScaleAmt = Scale->getAsZExtVal(); in combineGatherScatter() local
56804 APInt Adder = C->getAPIntValue() * ScaleAmt; in combineGatherScatter()
56811 if (ScaleAmt == 1) { in combineGatherScatter()
56820 if (ScaleAmt == 1 && BV->isConstant() && isa<ConstantSDNode>(Base)) { in combineGatherScatter()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp168 void Scale(const FAddendCoef& ScaleAmt) { Coeff *= ScaleAmt; } in Scale() argument