Home
last modified time | relevance | path

Searched refs:isAbsolute (Results 1 – 25 of 40) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUDelayedMCExpr.cpp34 if (Res.isAbsolute()) { in assignDocNode()
48 if (!DE.ExprValue->evaluateAsRelocatable(Res, nullptr) || !Res.isAbsolute()) in resolveDelayedExpressions()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCExpr.cpp269 return IsRelocatable && Value.isAbsolute() && Value.getSpecifier() == 0; in evaluateAsAbsolute()
510 if (Res.isAbsolute()) { in evaluateAsRelocatableImpl()
552 if (!Value.isAbsolute()) in evaluateAsRelocatableImpl()
566 if (!Value.isAbsolute()) in evaluateAsRelocatableImpl()
606 if (!LHSValue.isAbsolute() || !RHSValue.isAbsolute()) { in evaluateAsRelocatableImpl()
616 if (RHSValue.isAbsolute()) { in evaluateAsRelocatableImpl()
621 if (LHSValue.isAbsolute()) { in evaluateAsRelocatableImpl()
H A DMCValue.cpp19 if (isAbsolute()) { in print()
H A DMachObjectWriter.cpp413 else if (Symbol->isAbsolute()) in writeNlist()
620 } else if (Symbol.isAbsolute()) { in computeSymbolTable()
643 if (Symbol.isAbsolute()) { in computeSymbolTable()
1092 if (ISD.Symbol->isAbsolute()) in writeObject()
H A DMCObjectStreamer.cpp633 if (OffsetVal.isAbsolute()) { in getOffsetAndDataFragment()
706 if (OffsetVal.isAbsolute()) { in emitRelocDirective()
H A DMCAssembler.cpp177 if (Add && !Sub && !Add->isUndefined() && !Add->isAbsolute()) { in evaluateFixup()
182 IsResolved = Target.isAbsolute(); in evaluateFixup()
/freebsd/contrib/llvm-project/lld/MachO/
H A DSymbols.cpp85 return !isAbsolute() && isThreadLocalVariables(originalIsec->getFlags()); in isTlv()
91 if (isAbsolute()) in getVA()
H A DICF.cpp138 assert(da->isAbsolute() && db->isAbsolute()); in equalsConstant()
204 if (da->isAbsolute()) in equalsVariable()
H A DExportTrie.cpp72 if (defined->isAbsolute()) in ExportInfo()
H A DSymbols.h130 bool isAbsolute() const { return originalIsec == nullptr; } in isAbsolute() function
H A DSectionPriorities.cpp272 if (sym->isAbsolute()) in getSymbolPriority()
/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRMCAsmInfo.cpp191 if (Value.isAbsolute()) { in evaluateAsRelocatableImpl()
218 if (Value.isAbsolute()) { in evaluateAsConstant()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h137 bool isAbsolute() const { return static_cast<bool>(IsAbsolute); } in isAbsolute() function
556 return !Base->isDefined() && !Base->isAbsolute(); in isExternal()
560 bool isAbsolute() const { in isAbsolute() function
562 return Base->isAbsolute(); in isAbsolute()
638 assert((L == Linkage::Strong || (!Base->isAbsolute() && Name)) && in setLinkage()
650 assert((S != Scope::Local || Base->isDefined() || Base->isAbsolute()) && in setScope()
680 assert(!A.isDefined() && !A.isAbsolute() && in makeExternal()
690 assert(!A.isDefined() && A.isAbsolute() && in makeAbsolute()
1457 if (Sym.isAbsolute()) { in makeExternal()
1483 assert(!Sym.isAbsolute() && "Symbol is already absolute"); in makeAbsolute()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCAsmInfo.cpp144 if (!Value.isAbsolute()) in evaluateAsConstant()
163 if (Res.isAbsolute() && MaybeInt) { in evaluateAsRelocatable()
H A DPPCAsmBackend.cpp123 return !Target.isAbsolute() && S->isExternal() && in shouldForceRelocation()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUMCExpr.cpp102 if (!Arg->evaluateAsRelocatable(MCVal, Asm) || !MCVal.isAbsolute()) in evaluateExtraSGPRs()
131 if (!Arg->evaluateAsRelocatable(MCVal, Asm) || !MCVal.isAbsolute()) in evaluateTotalNumVGPR()
157 if (!Arg->evaluateAsRelocatable(MCVal, Asm) || !MCVal.isAbsolute()) in evaluateAlignTo()
178 if (!Arg->evaluateAsRelocatable(MCVal, Asm) || !MCVal.isAbsolute()) in evaluateOccupancy()
266 if (!Arg->evaluateAsRelocatable(ArgRes, Asm) || !ArgRes.isAbsolute()) in evaluateAsRelocatableImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCValue.h54 bool isAbsolute() const { return !SymA && !SymB; } in isAbsolute() function
H A DMCSymbol.h265 bool isAbsolute() const { in isAbsolute() function
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MachObjectWriter.cpp127 if (Target.isAbsolute()) { // constant in RecordX86_64Relocation()
522 if (Target.isAbsolute()) { // constant in RecordX86Relocation()
537 bool isAbs = Val.isAbsolute(); in RecordX86Relocation()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DCOFF_x86_64.cpp150 if (COFFSymbol.isAbsolute()) in addSingleRelocation()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MachObjectWriter.cpp199 if (Target.isAbsolute()) { // constant in recordRelocation()
/freebsd/contrib/llvm-project/lld/ELF/
H A DLinkerScript.h49 bool isAbsolute() const { return forceAbsolute || sec == nullptr; } in isAbsolute() function
H A DScriptParser.cpp144 if (a.sec == nullptr || (a.forceAbsolute && !b.isAbsolute())) in moveAbsRight()
146 if (!b.isAbsolute()) in moveAbsRight()
158 if (!a.isAbsolute() && !b.isAbsolute()) in sub()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMachObjectWriter.cpp419 bool isAbs = Val.isAbsolute(); in recordRelocation()
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/MCTargetDesc/
H A DLoongArchAsmBackend.cpp258 return !Target.isAbsolute(); in shouldForceRelocation()

12