Home
last modified time | relevance | path

Searched refs:OffsetOp (Results 1 – 15 of 15) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/MCTargetDesc/
DLanaiInstPrinter.cpp227 const MCOperand &OffsetOp, in printMemoryImmediateOffset() argument
229 assert((OffsetOp.isImm() || OffsetOp.isExpr()) && "Immediate expected"); in printMemoryImmediateOffset()
230 if (OffsetOp.isImm()) { in printMemoryImmediateOffset()
231 assert(isInt<SizeInBits>(OffsetOp.getImm()) && "Constant value truncated"); in printMemoryImmediateOffset()
232 OS << OffsetOp.getImm(); in printMemoryImmediateOffset()
234 OffsetOp.getExpr()->print(OS, &MAI); in printMemoryImmediateOffset()
241 const MCOperand &OffsetOp = MI->getOperand(OpNo + 1); in printMemRiOperand() local
246 printMemoryImmediateOffset<16>(MAI, OffsetOp, OS); in printMemRiOperand()
256 const MCOperand &OffsetOp = MI->getOperand(OpNo + 1); in printMemRrOperand() local
259 assert(OffsetOp.isReg() && RegOp.isReg() && "Registers expected."); in printMemRrOperand()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/MCTargetDesc/
DAVRInstPrinter.cpp150 const MCOperand &OffsetOp = MI->getOperand(OpNo + 1); in printMemri() local
156 if (OffsetOp.isImm()) { in printMemri()
157 int64_t Offset = OffsetOp.getImm(); in printMemri()
163 } else if (OffsetOp.isExpr()) { in printMemri()
164 O << *OffsetOp.getExpr(); in printMemri()
DAVRMCCodeEmitter.cpp138 auto OffsetOp = MI.getOperand(OpNo + 1); in encodeMemri() local
157 if (OffsetOp.isImm()) { in encodeMemri()
158 OffsetBits = OffsetOp.getImm(); in encodeMemri()
159 } else if (OffsetOp.isExpr()) { in encodeMemri()
161 Fixups.push_back(MCFixup::create(0, OffsetOp.getExpr(), in encodeMemri()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/MCTargetDesc/
DBPFInstPrinter.cpp68 const MCOperand &OffsetOp = MI->getOperand(OpNo + 1); in printMemOperand() local
75 if (OffsetOp.isImm()) { in printMemOperand()
76 auto Imm = OffsetOp.getImm(); in printMemOperand()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyRegisterInfo.cpp120 Register OffsetOp = MRI.createVirtualRegister(PtrRC); in eliminateFrameIndex() local
122 OffsetOp) in eliminateFrameIndex()
128 .addReg(OffsetOp); in eliminateFrameIndex()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonOptAddrMode.cpp162 const MachineOperand &OffsetOp = MI.getOperand(3); in canRemoveAddasl() local
163 if (!OffsetOp.isImm() || OffsetOp.getImm() > 3) in canRemoveAddasl()
369 MachineOperand OffsetOp = MID.mayLoad() ? MI->getOperand(2) in processAddUses() local
371 if (!OffsetOp.isImm()) in processAddUses()
374 int64_t newOffset = OffsetOp.getImm() + AddMI->getOperand(2).getImm(); in processAddUses()
420 MachineOperand &OffsetOp = MID.mayLoad() ? UseMI->getOperand(2) in updateAddUses() local
425 OffsetOp.setImm(ImmOp.getImm() + OffsetOp.getImm()); in updateAddUses()
DHexagonInstrInfo.cpp1934 const MachineOperand &OffsetOp = MI.getOperand(OffsetPos); in getIncrementValue() local
1935 if (OffsetOp.isImm()) { in getIncrementValue()
1936 Value = OffsetOp.getImm(); in getIncrementValue()
3177 const MachineOperand &OffsetOp = MI.getOperand(OffsetPos); in getBaseAndOffset() local
3178 if (!OffsetOp.isImm()) in getBaseAndOffset()
3180 Offset = OffsetOp.getImm(); in getBaseAndOffset()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineVerifier.cpp1285 const MachineOperand &OffsetOp = MI->getOperand(2); in verifyPreISelGenericInstruction() local
1286 if (!OffsetOp.isImm()) { in verifyPreISelGenericInstruction()
1296 if (DstSize + OffsetOp.getImm() > SrcSize) in verifyPreISelGenericInstruction()
1307 const MachineOperand &OffsetOp = MI->getOperand(3); in verifyPreISelGenericInstruction() local
1308 if (!OffsetOp.isImm()) { in verifyPreISelGenericInstruction()
1319 if (SrcSize + OffsetOp.getImm() > DstSize) in verifyPreISelGenericInstruction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DSIRegisterInfo.cpp405 MachineOperand *OffsetOp = TII->getNamedOperand(MI, AMDGPU::OpName::offset); in resolveFrameIndex() local
406 int64_t NewOffset = OffsetOp->getImm() + Offset; in resolveFrameIndex()
410 OffsetOp->setImm(NewOffset); in resolveFrameIndex()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/AsmParser/
DMipsAsmParser.cpp3659 const MCOperand &OffsetOp = Inst.getOperand(StartOp + 2); in expandMem16Inst() local
3689 if (OffsetOp.isImm()) { in expandMem16Inst()
3690 int64_t LoOffset = OffsetOp.getImm() & 0xffff; in expandMem16Inst()
3691 int64_t HiOffset = OffsetOp.getImm() & ~0xffff; in expandMem16Inst()
3701 bool Is32BitImm = isInt<32>(OffsetOp.getImm()); in expandMem16Inst()
3714 if (OffsetOp.isExpr()) { in expandMem16Inst()
3723 if (!OffsetOp.getExpr()->evaluateAsRelocatable(Res, nullptr, nullptr)) { in expandMem16Inst()
3741 const MCExpr *OffExpr = OffsetOp.getExpr(); in expandMem16Inst()
3786 const MCOperand &OffsetOp = Inst.getOperand(StartOp + 2); in expandMem9Inst() local
3817 if (OffsetOp.isImm()) { in expandMem9Inst()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64FrameLowering.cpp1475 const MachineOperand &OffsetOp = Pop->getOperand(Pop->getNumOperands() - 1); in emitEpilogue() local
1477 if (OffsetOp.getImm() == 0) in emitEpilogue()
DAArch64ISelDAGToDAG.cpp1253 ConstantSDNode *OffsetOp = cast<ConstantSDNode>(LD->getOffset()); in tryIndexedLoad() local
1254 int OffsetVal = (int)OffsetOp->getZExtValue(); in tryIndexedLoad()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceTargetLoweringX8664.cpp4907 Constant *OffsetOp = nullptr; in computeAddressOpt() local
4909 OffsetOp = Ctx->getConstantInt32(NewAddr.Offset); in computeAddressOpt()
4911 OffsetOp = in computeAddressOpt()
4922 return X86OperandMem::create(Func, MemType, NewAddr.Base, OffsetOp, in computeAddressOpt()
DIceTargetLoweringX8632.cpp5497 Constant *OffsetOp = nullptr; in computeAddressOpt() local
5499 OffsetOp = Ctx->getConstantInt32(NewAddr.Offset); in computeAddressOpt()
5501 OffsetOp = in computeAddressOpt()
5512 return X86OperandMem::create(Func, MemType, NewAddr.Base, OffsetOp, in computeAddressOpt()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp6788 SDValue OffsetOp) { in InferPointerInfo() argument
6790 if (ConstantSDNode *OffsetNode = dyn_cast<ConstantSDNode>(OffsetOp)) in InferPointerInfo()
6792 if (OffsetOp.isUndef()) in InferPointerInfo()