Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVAsmBackend.cpp198 bool IsAbsolute = AddrDelta.evaluateKnownAbsolute(Value, Layout); in relaxDwarfLineAddr() local
199 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfLineAddr()
200 (void)IsAbsolute; in relaxDwarfLineAddr()
266 bool IsAbsolute = AddrDelta.evaluateKnownAbsolute(Value, Layout); in relaxDwarfCFA() local
267 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfCFA()
268 (void)IsAbsolute; in relaxDwarfCFA()
/openbsd-src/gnu/llvm/lldb/source/Host/openbsd/
H A DHostInfoOpenBSD.cpp58 file_spec.IsAbsolute() && FileSystem::Instance().Exists(file_spec)) in ComputeSupportExeDirectory()
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h110 : Address(Address), IsDefined(IsDefined), IsAbsolute(false) {} in Addressable()
113 : Address(Address), IsDefined(false), IsAbsolute(true) { in Addressable()
114 assert(!(IsDefined && IsAbsolute) && in Addressable()
130 bool isAbsolute() const { return static_cast<bool>(IsAbsolute); } in isAbsolute()
133 void setAbsolute(bool IsAbsolute) { in setAbsolute() argument
135 this->IsAbsolute = IsAbsolute; in setAbsolute()
140 uint64_t IsAbsolute : 1; variable
/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DFileSpec.h272 bool IsAbsolute() const;
/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DFileSpec.cpp494 return !IsAbsolute(); in IsRelative()
497 bool FileSpec::IsAbsolute() const { in IsAbsolute() function in FileSpec
/openbsd-src/gnu/llvm/lldb/source/Host/linux/
H A DHostInfoLinux.cpp172 file_spec.IsAbsolute() && FileSystem::Instance().Exists(file_spec)) in ComputeSupportExeDirectory()
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DLocateSymbolFile.cpp266 if (symbol_file_spec.IsAbsolute() && in LocateExecutableSymbolFile()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTBundleSaver.cpp256 if (!module_sp->GetFileSpec().IsAbsolute()) in BuildModulesSection()
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DMCAsmStreamer.cpp1377 const bool IsAbsolute = NumBytes.evaluateAsAbsolute(IntNumBytes); in emitFill() local
1378 if (IsAbsolute && IntNumBytes == 0) in emitFill()
1390 if (!IsAbsolute) in emitFill()
/openbsd-src/gnu/llvm/llvm/lib/Support/Windows/
H A DPath.inc85 const bool IsAbsolute = llvm::sys::path::is_absolute(Path8);
87 if (IsAbsolute)
102 if (!IsAbsolute) {
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DPlatform.cpp1739 if (remote_filename.IsAbsolute()) in LoadImageUsingPaths()