Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVAsmBackend.cpp217 bool IsAbsolute = AddrDelta.evaluateKnownAbsolute(Value, Layout); in relaxDwarfLineAddr() local
218 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfLineAddr()
219 (void)IsAbsolute; in relaxDwarfLineAddr()
285 bool IsAbsolute = AddrDelta.evaluateKnownAbsolute(Value, Layout); in relaxDwarfCFA() local
286 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfCFA()
287 (void)IsAbsolute; in relaxDwarfCFA()
/llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h108 : Address(Address), IsDefined(IsDefined), IsAbsolute(false) {} in Addressable()
111 : Address(Address), IsDefined(false), IsAbsolute(true) { in Addressable()
112 assert(!(IsDefined && IsAbsolute) && in Addressable()
128 bool isAbsolute() const { return static_cast<bool>(IsAbsolute); } in isAbsolute()
131 void setAbsolute(bool IsAbsolute) { in setAbsolute() argument
133 this->IsAbsolute = IsAbsolute; in setAbsolute()
138 uint64_t IsAbsolute : 1; variable
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DFileSpec.h263 bool IsAbsolute() const;
/llvm-project-15.0.7/lldb/source/Utility/
H A DFileSpec.cpp475 return !IsAbsolute(); in IsRelative()
478 bool FileSpec::IsAbsolute() const { in IsAbsolute() function in FileSpec
/llvm-project-15.0.7/lldb/source/Host/linux/
H A DHostInfoLinux.cpp172 file_spec.IsAbsolute() && FileSystem::Instance().Exists(file_spec)) in ComputeSupportExeDirectory()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DLocateSymbolFile.cpp263 if (symbol_file_spec.IsAbsolute() && in LocateExecutableSymbolFile()
/llvm-project-15.0.7/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTBundleSaver.cpp258 if (!module_sp->GetFileSpec().IsAbsolute()) in BuildModulesSection()
/llvm-project-15.0.7/llvm/lib/MC/
H A DMCAsmStreamer.cpp1362 const bool IsAbsolute = NumBytes.evaluateAsAbsolute(IntNumBytes); in emitFill() local
1363 if (IsAbsolute && IntNumBytes == 0) in emitFill()
1375 if (!IsAbsolute) in emitFill()
/llvm-project-15.0.7/llvm/lib/Support/Windows/
H A DPath.inc85 const bool IsAbsolute = llvm::sys::path::is_absolute(Path8);
87 if (IsAbsolute)
102 if (!IsAbsolute) {
/llvm-project-15.0.7/lldb/source/Target/
H A DPlatform.cpp1738 if (remote_filename.IsAbsolute()) in LoadImageUsingPaths()