Home
last modified time | relevance | path

Searched refs:OffsetExpr (Results 1 – 10 of 10) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZMCInstLower.cpp73 const MCExpr *OffsetExpr = MCConstantExpr::create(Offset, Ctx); in getExpr() local
74 Expr = MCBinaryExpr::createAdd(Expr, OffsetExpr, Ctx); in getExpr()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCMCInstLower.cpp71 const MCConstantExpr *OffsetExpr = MCConstantExpr::create(Offset, *Ctx); in LowerSymbolOperand() local
72 const MCBinaryExpr *Add = MCBinaryExpr::createAdd(MCSym, OffsetExpr, *Ctx); in LowerSymbolOperand()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreMCInstLower.cpp72 const MCConstantExpr *OffsetExpr = MCConstantExpr::create(Offset, *Ctx); in LowerSymbolOperand() local
73 const MCBinaryExpr *Add = MCBinaryExpr::createAdd(MCSym, OffsetExpr, *Ctx); in LowerSymbolOperand()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetRegisterInfo.cpp656 SmallVector<uint64_t, 16> OffsetExpr; in prependOffsetExpression() local
658 OffsetExpr.push_back(dwarf::DW_OP_deref); in prependOffsetExpression()
659 getOffsetOpcodes(Offset, OffsetExpr); in prependOffsetExpression()
661 OffsetExpr.push_back(dwarf::DW_OP_deref); in prependOffsetExpression()
662 return DIExpression::prependOpcodes(Expr, OffsetExpr, in prependOffsetExpression()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCCodeEmitter.cpp285 const MCExpr *OffsetExpr = MCConstantExpr::create(Offset, Ctx); in getPCRelEncoding() local
286 Expr = MCBinaryExpr::createAdd(Expr, OffsetExpr, Ctx); in getPCRelEncoding()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsAsmPrinter.cpp173 const MCExpr *OffsetExpr = in emitDirectiveRelocJalr() local
178 *OffsetExpr, in emitDirectiveRelocJalr()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp3899 const MCExpr *OffsetExpr = Inst.getOperand(2).getExpr(); in expandCondBranches() local
4033 TOut.emitRX(Mips::BLTZ, Mips::ZERO, MCOperand::createExpr(OffsetExpr), in expandCondBranches()
4038 TOut.emitRX(Mips::BLEZ, Mips::ZERO, MCOperand::createExpr(OffsetExpr), in expandCondBranches()
4056 MCOperand::createExpr(OffsetExpr), IDLoc, STI); in expandCondBranches()
4063 MCOperand::createExpr(OffsetExpr), IDLoc, STI); in expandCondBranches()
4088 MCOperand::createExpr(OffsetExpr), IDLoc, STI); in expandCondBranches()
4107 MCOperand::createExpr(OffsetExpr), IDLoc, STI); in expandCondBranches()
4115 MCOperand::createExpr(OffsetExpr), IDLoc, STI); in expandCondBranches()
7799 const MCExpr *OffsetExpr; in parseDirectiveCPSetup() local
7803 if (Parser.parseExpression(OffsetExpr) || in parseDirectiveCPSetup()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FrameLowering.cpp520 SmallString<64> OffsetExpr; in createCfaOffset() local
521 appendVGScaledOffsetExpr(OffsetExpr, NumBytes, NumVGScaledBytes, in createCfaOffset()
529 CfaExpr.append(buffer, buffer + encodeULEB128(OffsetExpr.size(), buffer)); in createCfaOffset()
530 CfaExpr.append(OffsetExpr.str()); in createCfaOffset()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp11617 const MCExpr *OffsetExpr; in parseDirectiveSetFP() local
11620 if (getParser().parseExpression(OffsetExpr, EndLoc)) in parseDirectiveSetFP()
11622 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr); in parseDirectiveSetFP()
11652 const MCExpr *OffsetExpr; in parseDirectivePad() local
11655 if (getParser().parseExpression(OffsetExpr, EndLoc)) in parseDirectivePad()
11657 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr); in parseDirectivePad()
11844 const MCExpr *OffsetExpr; in parseDirectiveUnwindRaw() local
11849 if (getParser().parseExpression(OffsetExpr)) in parseDirectiveUnwindRaw()
11852 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr); in parseDirectiveUnwindRaw()
11933 const MCExpr *OffsetExpr; in parseDirectiveMovSP() local
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp8318 const Expr *OffsetExpr = OASE->getLowerBound(); in generateInfoForComponentList() local
8320 if (!OffsetExpr) { in generateInfoForComponentList()
8324 Offset = CGF.Builder.CreateIntCast(CGF.EmitScalarExpr(OffsetExpr), in generateInfoForComponentList()