Home
last modified time | relevance | path

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

/freebsd/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/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreMCInstLower.cpp70 const MCConstantExpr *OffsetExpr = MCConstantExpr::create(Offset, *Ctx); in LowerSymbolOperand() local
71 const MCBinaryExpr *Add = MCBinaryExpr::createAdd(MCSym, OffsetExpr, *Ctx); in LowerSymbolOperand()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCMCInstLower.cpp70 const MCConstantExpr *OffsetExpr = MCConstantExpr::create(Offset, *Ctx); in LowerSymbolOperand() local
71 const MCBinaryExpr *Add = MCBinaryExpr::createAdd(MCSym, OffsetExpr, *Ctx); in LowerSymbolOperand()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetRegisterInfo.cpp712 SmallVector<uint64_t, 16> OffsetExpr; in prependOffsetExpression() local
714 OffsetExpr.push_back(dwarf::DW_OP_deref); in prependOffsetExpression()
715 getOffsetOpcodes(Offset, OffsetExpr); in prependOffsetExpression()
717 OffsetExpr.push_back(dwarf::DW_OP_deref); in prependOffsetExpression()
718 return DIExpression::prependOpcodes(Expr, OffsetExpr, in prependOffsetExpression()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCCodeEmitter.cpp209 const MCExpr *OffsetExpr = MCConstantExpr::create(Offset, Ctx); in getPCRelEncoding() local
210 Expr = MCBinaryExpr::createAdd(Expr, OffsetExpr, Ctx, Loc); in getPCRelEncoding()
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/
H A DXtensaAsmPrinter.cpp265 const MCConstantExpr *OffsetExpr = in LowerSymbolOperand() local
267 ME = MCBinaryExpr::createAdd(ME, OffsetExpr, OutContext); in LowerSymbolOperand()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsAsmPrinter.cpp167 const MCExpr *OffsetExpr = in emitDirectiveRelocJalr() local
172 *OffsetExpr, in emitDirectiveRelocJalr()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp3912 const MCExpr *OffsetExpr = Inst.getOperand(2).getExpr(); in expandCondBranches() local
4046 TOut.emitRX(Mips::BLTZ, Mips::ZERO, MCOperand::createExpr(OffsetExpr), in expandCondBranches()
4051 TOut.emitRX(Mips::BLEZ, Mips::ZERO, MCOperand::createExpr(OffsetExpr), in expandCondBranches()
4057 TOut.emitRX(Mips::BGEZ, Mips::ZERO, MCOperand::createExpr(OffsetExpr), in expandCondBranches()
4063 TOut.emitRX(Mips::BGTZ, Mips::ZERO, MCOperand::createExpr(OffsetExpr), in expandCondBranches()
4069 MCOperand::createExpr(OffsetExpr), IDLoc, STI); in expandCondBranches()
4076 MCOperand::createExpr(OffsetExpr), IDLoc, STI); in expandCondBranches()
4101 MCOperand::createExpr(OffsetExpr), IDLoc, STI); in expandCondBranches()
4120 MCOperand::createExpr(OffsetExpr), IDLoc, STI); in expandCondBranches()
4128 MCOperand::createExpr(OffsetExpr), IDLoc, STI); in expandCondBranches()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCWin64EH.cpp2663 const MCExpr *OffsetExpr = nullptr; in ARMEmitUnwindInfo() local
2668 OffsetExpr = GetSubDivExpr(streamer, EpilogStart, info->Begin, 2); in ARMEmitUnwindInfo()
2682 OffsetExpr, MCConstantExpr::create(row3, context), context), in ARMEmitUnwindInfo()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp12163 const MCExpr *OffsetExpr; in parseDirectiveSetFP() local
12166 if (getParser().parseExpression(OffsetExpr, EndLoc)) in parseDirectiveSetFP()
12168 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr); in parseDirectiveSetFP()
12197 const MCExpr *OffsetExpr; in parseDirectivePad() local
12200 if (getParser().parseExpression(OffsetExpr, EndLoc)) in parseDirectivePad()
12202 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr); in parseDirectivePad()
12387 const MCExpr *OffsetExpr; in parseDirectiveUnwindRaw() local
12392 if (getParser().parseExpression(OffsetExpr)) in parseDirectiveUnwindRaw()
12395 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr); in parseDirectiveUnwindRaw()
12475 const MCExpr *OffsetExpr; in parseDirectiveMovSP() local
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaHLSL.cpp3114 Expr *OffsetExpr = TheCall->getArg(1); in CheckBuiltinFunctionCall() local
3116 OffsetExpr->getIntegerConstantExpr(SemaRef.getASTContext()); in CheckBuiltinFunctionCall()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp5961 SmallString<64> OffsetExpr; in createCFAOffset() local
5962 appendVGScaledOffsetExpr(OffsetExpr, NumBytes, NumVGScaledBytes, in createCFAOffset()
5970 CfaExpr.append(buffer, buffer + encodeULEB128(OffsetExpr.size(), buffer)); in createCFAOffset()
5971 CfaExpr.append(OffsetExpr.str()); in createCFAOffset()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp7878 const Expr *OffsetExpr = OASE->getLowerBound(); local
7880 if (!OffsetExpr) {
7884 Offset = CGF.Builder.CreateIntCast(CGF.EmitScalarExpr(OffsetExpr),