Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/LoongArch/MCTargetDesc/
H A DLoongArchAsmBackend.cpp321 bool IsAbsolute = AddrDelta.evaluateKnownAbsolute(Value, Layout); in relaxDwarfLineAddr() local
322 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfLineAddr()
323 (void)IsAbsolute; in relaxDwarfLineAddr()
386 bool IsAbsolute = AddrDelta.evaluateKnownAbsolute(Value, Layout); in relaxDwarfCFA() local
387 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfCFA()
388 (void)IsAbsolute; in relaxDwarfCFA()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVAsmBackend.cpp221 bool IsAbsolute = AddrDelta.evaluateKnownAbsolute(Value, Layout); in relaxDwarfLineAddr() local
222 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfLineAddr()
223 (void)IsAbsolute; in relaxDwarfLineAddr()
286 bool IsAbsolute = AddrDelta.evaluateKnownAbsolute(Value, Layout); in relaxDwarfCFA() local
287 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfCFA()
288 (void)IsAbsolute; in relaxDwarfCFA()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h115 : Address(Address), IsDefined(IsDefined), IsAbsolute(false) {} in Addressable()
118 : Address(Address), IsDefined(false), IsAbsolute(true) { in Addressable()
119 assert(!(IsDefined && IsAbsolute) && in Addressable()
135 bool isAbsolute() const { return static_cast<bool>(IsAbsolute); } in isAbsolute()
138 void setAbsolute(bool IsAbsolute) { in setAbsolute() argument
140 this->IsAbsolute = IsAbsolute; in setAbsolute()
145 uint64_t IsAbsolute : 1; variable
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFileSpec.h272 bool IsAbsolute() const;
/freebsd-14.2/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-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/
H A DSymbolLocatorDefault.cpp97 if (symbol_file_spec.IsAbsolute() && in LocateExecutableSymbolFile()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTBundleSaver.cpp256 if (!module_sp->GetFileSpec().IsAbsolute()) in BuildModulesSection()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp1445 const bool IsAbsolute = NumBytes.evaluateAsAbsolute(IntNumBytes); in emitFill() local
1446 if (IsAbsolute && IntNumBytes == 0) in emitFill()
1458 if (!IsAbsolute) in emitFill()
/freebsd-14.2/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-14.2/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1896 if (remote_filename.IsAbsolute()) in LoadImageUsingPaths()