Searched refs:ScaleVal (Results 1 – 7 of 7) sorted by relevance
/openbsd/gnu/llvm/llvm/lib/Target/X86/ |
H A D | X86AsmPrinter.cpp | 417 unsigned ScaleVal = MI->getOperand(OpNo + X86::AddrScaleAmt).getImm(); in PrintLeaMemReference() local 418 if (ScaleVal != 1) in PrintLeaMemReference() 419 O << ',' << ScaleVal; in PrintLeaMemReference() 472 unsigned ScaleVal = MI->getOperand(OpNo + X86::AddrScaleAmt).getImm(); in PrintIntelMemReference() local 505 if (ScaleVal != 1) in PrintIntelMemReference() 506 O << ScaleVal << '*'; in PrintIntelMemReference()
|
H A D | X86MCInstLower.cpp | 1133 unsigned Opc, BaseReg, ScaleVal, IndexReg, Displacement, SegmentReg; in emitNop() local 1136 ScaleVal = 1; in emitNop() 1214 .addImm(ScaleVal) in emitNop()
|
/openbsd/gnu/llvm/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86ATTInstPrinter.cpp | 452 unsigned ScaleVal = MI->getOperand(Op + X86::AddrScaleAmt).getImm(); in printMemReference() local 453 if (ScaleVal != 1) { in printMemReference() 454 O << ',' << markup("<imm:") << ScaleVal // never printed in hex. in printMemReference()
|
H A D | X86IntelInstPrinter.cpp | 384 unsigned ScaleVal = MI->getOperand(Op+X86::AddrScaleAmt).getImm(); in printMemReference() local 401 if (ScaleVal != 1) in printMemReference() 402 O << ScaleVal << '*'; in printMemReference()
|
/openbsd/gnu/llvm/llvm/lib/Target/X86/AsmParser/ |
H A D | X86AsmParser.cpp | 3000 int64_t ScaleVal; in ParseMemOperand() local 3001 if (!E->evaluateAsAbsolute(ScaleVal, getStreamer().getAssemblerPtr())) in ParseMemOperand() 3003 if (ScaleVal != 1) in ParseMemOperand() 3021 int64_t ScaleVal; in ParseMemOperand() local 3023 Parser.parseAbsoluteExpression(ScaleVal)) in ParseMemOperand() 3025 Scale = (unsigned)ScaleVal; in ParseMemOperand()
|
/openbsd/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGBuilder.cpp | 4450 uint64_t ScaleVal = DL.getTypeAllocSize(GEP->getResultElementType()); in getUniformBase() local 4453 if (ScaleVal != 1 && in getUniformBase() 4454 !TLI.isLegalScaleForGatherScatter(ScaleVal, ElemSize)) in getUniformBase() 4462 DAG.getTargetConstant(ScaleVal, SDB->getCurSDLoc(), TLI.getPointerTy(DL)); in getUniformBase()
|
/openbsd/gnu/llvm/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelLowering.cpp | 5399 uint64_t ScaleVal = cast<ConstantSDNode>(Scale)->getZExtValue(); in LowerMGATHER() local 5400 if (IsScaled && ScaleVal != MemVT.getScalarStoreSize()) { in LowerMGATHER() 5401 assert(isPowerOf2_64(ScaleVal) && "Expecting power-of-two types"); in LowerMGATHER() 5404 DAG.getConstant(Log2_32(ScaleVal), DL, IndexVT)); in LowerMGATHER() 5487 uint64_t ScaleVal = cast<ConstantSDNode>(Scale)->getZExtValue(); in LowerMSCATTER() local 5488 if (IsScaled && ScaleVal != MemVT.getScalarStoreSize()) { in LowerMSCATTER() 5489 assert(isPowerOf2_64(ScaleVal) && "Expecting power-of-two types"); in LowerMSCATTER() 5492 DAG.getConstant(Log2_32(ScaleVal), DL, IndexVT)); in LowerMSCATTER()
|