Home
last modified time | relevance | path

Searched refs:IsAbsolute (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/MCTargetDesc/
H A DLoongArchAsmBackend.cpp326 bool IsAbsolute = AddrDelta.evaluateKnownAbsolute(Value, Asm); in relaxDwarfLineAddr() local
327 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfLineAddr()
328 (void)IsAbsolute; in relaxDwarfLineAddr()
391 bool IsAbsolute = AddrDelta.evaluateKnownAbsolute(Value, Asm); in relaxDwarfCFA() local
392 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfCFA()
393 (void)IsAbsolute; in relaxDwarfCFA()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUMemoryUtils.cpp217 bool IsAbsolute = GV->isAbsoluteSymbolRef(); in getTransitiveUsesOfLDS() local
222 if (*HasAbsoluteGVs != IsAbsolute) { in getTransitiveUsesOfLDS()
227 HasAbsoluteGVs = IsAbsolute; in getTransitiveUsesOfLDS()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVAsmBackend.cpp216 [[maybe_unused]] bool IsAbsolute = in relaxDwarfLineAddr() local
218 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfLineAddr()
281 [[maybe_unused]] bool IsAbsolute = in relaxDwarfCFA() local
283 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfCFA()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h116 : Address(Address), IsDefined(IsDefined), IsAbsolute(false) {} in Addressable()
119 : Address(Address), IsDefined(false), IsAbsolute(true) { in Addressable()
120 assert(!(IsDefined && IsAbsolute) && in Addressable()
136 bool isAbsolute() const { return static_cast<bool>(IsAbsolute); } in isAbsolute()
139 void setAbsolute(bool IsAbsolute) { in setAbsolute() argument
141 this->IsAbsolute = IsAbsolute; in setAbsolute()
146 uint64_t IsAbsolute : 1; variable
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFileSpec.h272 bool IsAbsolute() const;
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DFileSpec.cpp508 return !IsAbsolute(); in IsRelative()
511 bool FileSpec::IsAbsolute() const { in IsAbsolute() function in FileSpec
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/
H A DSymbolLocatorDefault.cpp101 if (symbol_file_spec.IsAbsolute() && in LocateExecutableSymbolFile()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFile.cpp
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTBundleSaver.cpp256 if (!module_sp->GetFileSpec().IsAbsolute()) in BuildModulesSection()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp1460 const bool IsAbsolute = NumBytes.evaluateAsAbsolute(IntNumBytes); in emitFill() local
1461 if (IsAbsolute && IntNumBytes == 0) in emitFill()
1473 if (!IsAbsolute) in emitFill()
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc85 const bool IsAbsolute = llvm::sys::path::is_absolute(Path8);
87 if (IsAbsolute)
102 if (!IsAbsolute) {
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1848 if (remote_filename.IsAbsolute()) in LoadImageUsingPaths()