/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCValue.cpp | 31 if (getSymB()) { in print() 33 OS << *getSymB(); in print() 47 const MCSymbolRefExpr *B = getSymB(); in getAccessVariant()
|
H A D | MCExpr.cpp | 741 const MCSymbolRefExpr *LHS_B = LHS.getSymB(); in evaluateSymbolicAdd() 745 const MCSymbolRefExpr *RHS_B = RHS.getSymB(); in evaluateSymbolicAdd() 848 Res.getSymB() || Res.getConstant()) in evaluateAsRelocatableImpl() 853 Res.getSymB(), Res.getConstant(), Res.getRefKind()); in evaluateAsRelocatableImpl() 859 const MCSymbolRefExpr *B = Res.getSymB(); in evaluateAsRelocatableImpl() 895 if (Value.getSymA() && !Value.getSymB()) in evaluateAsRelocatableImpl() 899 Res = MCValue::get(Value.getSymB(), Value.getSymA(), in evaluateAsRelocatableImpl() 952 MCValue::get(RHSValue.getSymB(), RHSValue.getSymA(), in evaluateAsRelocatableImpl() 960 MCValue::get(RHSValue.getSymA(), RHSValue.getSymB(), in evaluateAsRelocatableImpl()
|
H A D | MCAssembler.cpp | 127 if (V.getSymB() || V.getRefKind() != MCSymbolRefExpr::VK_None) in isThumbFunc() 164 if (const MCSymbolRefExpr *RefB = Target.getSymB()) { in evaluateFixup() 186 if (Target.getSymB()) { in evaluateFixup() 212 if (const MCSymbolRefExpr *B = Target.getSymB()) { in evaluateFixup() 241 if (!IsResolved && Target.getSymA() && Target.getSymB() && in evaluateFixup() 495 const MCSymbolRefExpr *B = Target.getSymB(); in getSymbolOffsetImpl() 530 const MCSymbolRefExpr *RefB = Value.getSymB(); in getBaseSymbol()
|
H A D | MachObjectWriter.cpp | 117 if (Target.getSymB() && Target.getSymB()->getSymbol().isUndefined()) in getSymbolAddress() 119 Target.getSymB()->getSymbol().getName() + "'"); in getSymbolAddress() 124 if (Target.getSymB()) in getSymbolAddress() 125 Address += getSymbolAddress(Target.getSymB()->getSymbol(), Asm); in getSymbolAddress() 501 if (!Target.getSymA() && Target.getSymB()) in isFixupTargetValid()
|
H A D | MCObjectStreamer.cpp | 651 if (OffsetVal.getSymB()) in getOffsetAndDataFragment() 718 if (OffsetVal.getSymB()) in emitRelocDirective()
|
H A D | MCMachOStreamer.cpp | 188 if (!Res.getSymB() && (SymA.getName() == "" || Res.getConstant() != 0)) in emitAssignment()
|
H A D | XCOFFObjectWriter.cpp | 786 if (!Target.getSymB()) in recordRelocation() 789 const MCSymbol *const SymB = &Target.getSymB()->getSymbol(); in recordRelocation()
|
H A D | WinCOFFObjectWriter.cpp | 851 const MCSymbolRefExpr *SymB = Target.getSymB(); in recordRelocation()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
H A D | AArch64MachObjectWriter.cpp | 215 } else if (Target.getSymB()) { // A - B + constant in recordRelocation() 219 const MCSymbol *B = &Target.getSymB()->getSymbol(); in recordRelocation() 226 Target.getSymB()->getKind() == MCSymbolRefExpr::VK_None && in recordRelocation() 238 Target.getSymB()->getKind() != MCSymbolRefExpr::VK_None) { in recordRelocation()
|
H A D | AArch64MCExpr.cpp | 110 MCValue::get(Res.getSymA(), Res.getSymB(), Res.getConstant(), getKind()); in evaluateAsRelocatableImpl() 195 if (Res.getSymB()) in evaluateAsRelocatableImpl()
|
H A D | AArch64ELFObjectWriter.cpp | 127 assert((!Target.getSymB() || in getRelocType() 128 Target.getSymB()->getKind() == MCSymbolRefExpr::VK_None) && in getRelocType()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86MachObjectWriter.cpp | 135 } else if (Target.getSymB()) { // A - B + constant in RecordX86_64Relocation() 141 const MCSymbol *B = &Target.getSymB()->getSymbol(); in RecordX86_64Relocation() 381 if (const MCSymbolRefExpr *B = Target.getSymB()) { in recordScatteredRelocation() 470 if (auto *SymB = Target.getSymB()) { in recordTLVPRelocation() 510 if (Target.getSymB()) { in RecordX86Relocation()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/MCTargetDesc/ |
H A D | LoongArchMCExpr.cpp | 56 MCValue::get(Res.getSymA(), Res.getSymB(), Res.getConstant(), getKind()); in evaluateAsRelocatableImpl() 58 return Res.getSymB() ? getKind() == VK_LoongArch_None : true; in evaluateAsRelocatableImpl()
|
H A D | LoongArchAsmBackend.cpp | 459 const MCSymbol &SB = Target.getSymB()->getSymbol(); in handleAddSubRelocations() 500 MCValue B = MCValue::get(Target.getSymB()); in handleAddSubRelocations()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/ |
H A D | RISCVMCExpr.cpp | 101 MCValue::get(Res.getSymA(), Res.getSymB(), Res.getConstant(), getKind()); in evaluateAsRelocatableImpl() 103 return Res.getSymB() ? getKind() == VK_RISCV_None : true; in evaluateAsRelocatableImpl()
|
H A D | RISCVAsmBackend.cpp | 555 if (!AUIPCTarget.getSymA() || AUIPCTarget.getSymB()) in evaluateTargetFixup() 611 MCValue B = MCValue::get(Target.getSymB()); in handleAddSubRelocations()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/ |
H A D | MipsMCExpr.cpp | 142 Res = MCValue::get(Res.getSymA(), Res.getSymB(), Res.getConstant(), in evaluateAsRelocatableImpl() 213 MCValue::get(Res.getSymA(), Res.getSymB(), Res.getConstant(), getKind()); in evaluateAsRelocatableImpl()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/ |
H A D | SystemZMCExpr.cpp | 46 MCValue::get(Res.getSymA(), Res.getSymB(), Res.getConstant(), getKind()); in evaluateAsRelocatableImpl()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMMachObjectWriter.cpp | 165 if (const MCSymbolRefExpr *B = Target.getSymB()) { in recordARMScatteredHalfRelocation() 274 if (const MCSymbolRefExpr *B = Target.getSymB()) { in recordARMScatteredRelocation() 380 if (Target.getSymB()) { in recordRelocation()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/ |
H A D | LanaiMCExpr.cpp | 56 MCValue::get(Res.getSymA(), Res.getSymB(), Res.getConstant(), getKind()); in evaluateAsRelocatableImpl()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCValue.h | 45 const MCSymbolRefExpr *getSymB() const { return SymB; } in getSymB() function
|
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/MCTargetDesc/ |
H A D | CSKYMCExpr.cpp | 118 if (Res.getSymA() && Res.getSymB()) { in evaluateAsRelocatableImpl()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/ |
H A D | PPCMCExpr.cpp | 165 Res = MCValue::get(Sym, Value.getSymB(), Value.getConstant()); in evaluateAsRelocatableImpl()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/MCTargetDesc/ |
H A D | VEMCExpr.cpp | 182 MCValue::get(Res.getSymA(), Res.getSymB(), Res.getConstant(), getKind()); in evaluateAsRelocatableImpl()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/ |
H A D | AVRMCExpr.cpp | 95 Result = MCValue::get(Sym, Value.getSymB(), Value.getConstant()); in evaluateAsRelocatableImpl()
|