Home
last modified time | relevance | path

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

/llvm-project/lldb/unittests/Utility/
H A DFileSpecTest.cpp433 EXPECT_TRUE(file.IsAbsolute()); in TEST()
435 EXPECT_FALSE(file.IsAbsolute()); in TEST()
437 EXPECT_TRUE(file.IsAbsolute()); in TEST()
439 EXPECT_FALSE(file.IsAbsolute()); in TEST()
441 EXPECT_TRUE(file.IsAbsolute()); in TEST()
443 EXPECT_TRUE(file.IsAbsolute()); in TEST()
445 EXPECT_FALSE(file.IsAbsolute()); in TEST()
447 EXPECT_FALSE(file.IsAbsolute()); in TEST()
449 EXPECT_TRUE(file.IsAbsolute()); in TEST()
/llvm-project/llvm/lib/Target/LoongArch/MCTargetDesc/
H A DLoongArchAsmBackend.cpp327 bool IsAbsolute = AddrDelta.evaluateKnownAbsolute(Value, Asm); in relaxDwarfLineAddr()
328 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfLineAddr()
329 (void)IsAbsolute; in relaxDwarfLineAddr()
392 bool IsAbsolute = AddrDelta.evaluateKnownAbsolute(Value, Asm); in relaxDwarfCFA()
393 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfCFA()
394 (void)IsAbsolute; in relaxDwarfCFA()
326 bool IsAbsolute = AddrDelta.evaluateKnownAbsolute(Value, Asm); relaxDwarfLineAddr() local
391 bool IsAbsolute = AddrDelta.evaluateKnownAbsolute(Value, Asm); relaxDwarfCFA() local
/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUMemoryUtils.cpp
/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVAsmBackend.cpp218 [[maybe_unused]] bool IsAbsolute = in relaxDwarfLineAddr()
220 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfLineAddr()
283 [[maybe_unused]] bool IsAbsolute = in relaxDwarfCFA()
285 assert(IsAbsolute && "CFA with invalid expression"); in relaxDwarfCFA()
216 [[maybe_unused]] bool IsAbsolute = relaxDwarfLineAddr() local
281 [[maybe_unused]] bool IsAbsolute = relaxDwarfCFA() local
/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h116 : Address(Address), IsDefined(IsDefined), IsAbsolute(false) {} in Addressable()
119 : Address(Address), IsDefined(false), IsAbsolute(true) { in Addressable()
120 assert(!(IsDefined && IsAbsolute) && in Addressable()
136 bool isAbsolute() const { return static_cast<bool>(IsAbsolute); } in isAbsolute()
139 void setAbsolute(bool IsAbsolute) { in setAbsolute() argument
141 this->IsAbsolute = IsAbsolute; in setAbsolute()
146 uint64_t IsAbsolute : 1; variable
/llvm-project/lldb/include/lldb/Utility/
H A DFileSpec.h272 bool IsAbsolute() const;
/llvm-project/lldb/source/Host/linux/
H A DHostInfoLinux.cpp
/llvm-project/lldb/source/Utility/
H A DFileSpec.cpp508 return !IsAbsolute(); in IsRelative()
511 bool FileSpec::IsAbsolute() const { in IsAbsolute() function in FileSpec
/llvm-project/lldb/source/Plugins/SymbolLocator/Default/
H A DSymbolLocatorDefault.cpp101 if (symbol_file_spec.IsAbsolute() && in LocateExecutableSymbolFile()
/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTBundleSaver.cpp256 if (!module_sp->GetFileSpec().IsAbsolute()) in BuildModulesSection()
/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp1491 const bool IsAbsolute = NumBytes.evaluateAsAbsolute(IntNumBytes); in emitAlignmentDirective()
1492 if (IsAbsolute && IntNumBytes == 0) in emitAlignmentDirective()
1504 if (!IsAbsolute) in emitAlignmentDirective()
1444 const bool IsAbsolute = NumBytes.evaluateAsAbsolute(IntNumBytes); emitFill() local
/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) {
/llvm-project/lldb/source/Target/
H A DPlatform.cpp1860 if (remote_filename.IsAbsolute()) in UnloadImage()