Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/MCTargetDesc/
H A DLoongArchAsmBackend.cpp303 bool IsAbsolute = AddrDelta.evaluateKnownAbsolute(Value, *Asm); in relaxDwarfLineAddr() local
304 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfLineAddr()
305 (void)IsAbsolute; in relaxDwarfLineAddr()
367 bool IsAbsolute = AddrDelta.evaluateKnownAbsolute(Value, *Asm); in relaxDwarfCFA() local
368 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfCFA()
369 (void)IsAbsolute; in relaxDwarfCFA()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMemoryUtils.cpp270 bool IsAbsolute = GV->isAbsoluteSymbolRef(); in getTransitiveUsesOfLDS() local
280 if (*HasAbsoluteGVs != IsAbsolute) { in getTransitiveUsesOfLDS()
285 HasAbsoluteGVs = IsAbsolute; in getTransitiveUsesOfLDS()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h117 : Address(Address), IsDefined(IsDefined), IsAbsolute(false) {} in Addressable()
120 : Address(Address), IsDefined(false), IsAbsolute(true) { in Addressable()
121 assert(!(IsDefined && IsAbsolute) && in Addressable()
137 bool isAbsolute() const { return static_cast<bool>(IsAbsolute); } in isAbsolute()
140 void setAbsolute(bool IsAbsolute) { in setAbsolute() argument
142 this->IsAbsolute = IsAbsolute; in setAbsolute()
147 uint64_t IsAbsolute : 1; variable
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVAsmBackend.cpp314 [[maybe_unused]] bool IsAbsolute = in relaxDwarfLineAddr() local
316 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfLineAddr()
379 [[maybe_unused]] bool IsAbsolute = in relaxDwarfCFA() local
381 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfCFA()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFileSpec.h283 bool IsAbsolute() const;
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DFileSpec.cpp515 return !IsAbsolute(); in IsRelative()
518 bool FileSpec::IsAbsolute() const { in IsAbsolute() function in FileSpec
/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DHostInfoPosix.cpp173 file_spec.IsAbsolute() && FileSystem::Instance().Exists(file_spec)) in ComputeSupportExeDirectory()
/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.cpp1424 const bool IsAbsolute = NumBytes.evaluateAsAbsolute(IntNumBytes); in emitFill() local
1425 if (IsAbsolute && IntNumBytes == 0) in emitFill()
1437 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.cpp1859 if (remote_filename.IsAbsolute()) in LoadImageUsingPaths()