Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/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
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFileSpec.h263 bool IsAbsolute() const;
/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DFileSpec.cpp476 return !IsAbsolute(); in IsRelative()
479 bool FileSpec::IsAbsolute() const { in IsAbsolute() function in FileSpec
/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFile.cpp260 if (symbol_file_spec.IsAbsolute() && in LocateExecutableSymbolFile()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp1332 const bool IsAbsolute = NumBytes.evaluateAsAbsolute(IntNumBytes); in emitFill() local
1333 if (IsAbsolute && IntNumBytes == 0) in emitFill()
1345 if (!IsAbsolute) in emitFill()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc80 const bool IsAbsolute = llvm::sys::path::is_absolute(Path8);
82 if (IsAbsolute)
97 if (!IsAbsolute) {
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1778 if (remote_filename.IsAbsolute()) in LoadImageUsingPaths()