| /llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | ManualDWARFIndex.cpp | 578 bool ManualDWARFIndex::IndexSet::Decode(const DataExtractor &data, in Decode() 582 if (!strtab.Decode(data, offset_ptr)) in Decode() 600 if (!function_basenames.Decode(data, offset_ptr, strtab)) in Decode() 604 if (!function_fullnames.Decode(data, offset_ptr, strtab)) in Decode() 608 if (!function_methods.Decode(data, offset_ptr, strtab)) in Decode() 612 if (!function_selectors.Decode(data, offset_ptr, strtab)) in Encode() 616 if (!objc_class_selectors.Decode(data, offset_ptr, strtab)) in Encode() 620 if (!globals.Decode(data, offset_ptr, strtab)) in Encode() 624 if (!types.Decode(data, offset_ptr, strtab)) in Encode() 628 if (!namespaces.Decode(dat in Encode() 548 bool ManualDWARFIndex::IndexSet::Decode(const DataExtractor &data, Decode() function in ManualDWARFIndex::IndexSet 664 bool ManualDWARFIndex::Decode(const DataExtractor &data, Decode() function in ManualDWARFIndex [all...] |
| H A D | ManualDWARFIndex.h | 71 bool Decode(const DataExtractor &data, lldb::offset_t *offset_ptr); 87 /// Decode a serialized version of this object from data. 100 bool Decode(const DataExtractor &data, lldb::offset_t *offset_ptr,
|
| H A D | NameToDIE.cpp | 97 bool NameToDIE::Decode(const DataExtractor &data, lldb::offset_t *offset_ptr, in Decode() function in NameToDIE 110 if (std::optional<DIERef> die_ref = DIERef::Decode(data, offset_ptr)) in Decode()
|
| H A D | DIERef.cpp | 27 std::optional<DIERef> DIERef::Decode(const DataExtractor &data, in Decode() function in DIERef
|
| H A D | NameToDIE.h | 65 bool Decode(const DataExtractor &data, lldb::offset_t *offset_ptr,
|
| H A D | DIERef.h | 87 /// Decode a serialized version of this object from data. 99 static std::optional<DIERef> Decode(const DataExtractor &data,
|
| /llvm-project/lldb/unittests/Instruction/RISCV/ |
| H A D | TestRISCVEmulator.cpp | 93 Decode(inst), in DecodeAndExecute() 342 auto decode = this->Decode(i.inst); in TEST_F() 367 auto decode = this->Decode(i.inst); in TEST_F() 429 auto decode = this->Decode(i.inst); in TEST_F() 576 auto decode = this->Decode(i.inst); in TEST_F() 614 auto decode = this->Decode(i.inst); in TEST_F() 671 auto f2i = this->Decode(i.f2i); in TEST_F() 672 auto i2f = this->Decode(i.i2f); in TEST_F() 686 auto d2f = this->Decode(0x4010F0D3); in TEST_F() 688 auto f2d = this->Decode(0x4200F0D3); in TEST_F() [all …]
|
| /llvm-project/lldb/unittests/SymbolFile/DWARF/ |
| H A D | DWARFIndexCachingTest.cpp | 33 EXPECT_EQ(object, DIERef::Decode(data, &data_offset)); in EncodeDecode() 86 ASSERT_EQ(strtab_reader.Decode(strtab_data, &strtab_data_offset), true); in EncodeDecode() 90 decoded_object.Decode(data, &data_offset, strtab_reader); in EncodeDecode() 122 decoded_object.Decode(data, &data_offset); in EncodeDecode() 233 EXPECT_TRUE(decoded_object.Decode(data, &data_offset)); in EncodeDecode() 284 EXPECT_FALSE(sig.Decode(data, &data_offset)); in TEST() 290 EXPECT_FALSE(sig.Decode(data, &data_offset)); in TEST()
|
| /llvm-project/lldb/unittests/Symbol/ |
| H A D | MangledTest.cpp | 36 ASSERT_EQ(strtab_reader.Decode(strtab_data, &strtab_data_offset), true); in EncodeDecode() 40 decoded_object.Decode(data, &data_offset, strtab_reader); in EncodeDecode()
|
| H A D | SymbolTest.cpp | 36 ASSERT_EQ(strtab_reader.Decode(strtab_data, &strtab_data_offset), true); in EncodeDecode() 40 decoded_object.Decode(data, &data_offset, sect_list, strtab_reader); in EncodeDecode()
|
| H A D | SymtabTest.cpp | 48 decoded_object.Decode(data, &data_offset, uuid_mismatch); in EncodeDecode() 693 const bool success = symtab.Decode(data, &data_offset, uuid_mismatch); in TEST_F()
|
| /llvm-project/lldb/include/lldb/Core/ |
| H A D | DataFileCache.h | 176 bool Decode(const DataExtractor &data, lldb::offset_t *offset_ptr); 219 bool Decode(const DataExtractor &data, lldb::offset_t *offset_ptr);
|
| H A D | Mangled.h | 262 bool Decode(const DataExtractor &data, lldb::offset_t *offset_ptr,
|
| H A D | Disassembler.h | 174 virtual size_t Decode(const Disassembler &disassembler, 374 size_t Decode(const Disassembler &disassembler, const DataExtractor &data,
|
| /llvm-project/lldb/source/Plugins/Trace/intel-pt/ |
| H A D | TraceIntelPT.cpp | 178 Expected<DecodedThreadSP> TraceIntelPT::Decode(Thread &thread) { in Decode() function in TraceIntelPT 184 return storage.multicpu_decoder->Decode(thread); in Decode() 189 return it->second->Decode(); in Decode() 230 if (Expected<DecodedThreadSP> decoded_thread = Decode(thread)) { in CreateNewCursor() 259 Expected<DecodedThreadSP> decoded_thread_sp_or_err = Decode(thread); in DumpTraceInfo() 370 Expected<DecodedThreadSP> decoded_thread_sp_or_err = Decode(thread); in DumpTraceInfoAsJson()
|
| H A D | ThreadDecoder.h | 37 llvm::Expected<DecodedThreadSP> Decode();
|
| H A D | TraceIntelPTMultiCpuDecoder.h | 42 llvm::Expected<DecodedThreadSP> Decode(Thread &thread);
|
| H A D | ThreadDecoder.cpp | 40 Expected<DecodedThreadSP> ThreadDecoder::Decode() { in Decode() function in ThreadDecoder
|
| H A D | TraceIntelPT.h | 249 llvm::Expected<DecodedThreadSP> Decode(Thread &thread);
|
| /llvm-project/lldb/source/Core/ |
| H A D | DataFileCache.cpp | 232 bool CacheSignature::Decode(const lldb_private::DataExtractor &data, in Decode() function in CacheSignature 299 bool StringTableReader::Decode(const lldb_private::DataExtractor &data, in Encode() 301 bool StringTableReader::Decode(const lldb_private::DataExtractor &data, Decode() function in StringTableReader
|
| /llvm-project/lldb/source/Plugins/Instruction/RISCV/ |
| H A D | EmulateInstructionRISCV.h | 74 std::optional<DecodeResult> Decode(uint32_t inst);
|
| /llvm-project/lldb/source/Symbol/ |
| H A D | Symtab.cpp | 1303 bool Symtab::Decode(const DataExtractor &data, lldb::offset_t *offset_ptr, in Decode() function in Symtab 1310 if (!signature.Decode(data, offset_ptr)) in Decode() 1317 if (!strtab.Decode(data, offset_ptr)) in Decode() 1333 if (!m_symbols[i].Decode(data, offset_ptr, sections, strtab)) in Decode() 1368 const bool result = Decode(data, &offset, signature_mismatch); in LoadFromCache()
|
| /llvm-project/llvm/tools/llvm-readobj/ |
| H A D | ARMEHABIPrinter.h | 66 void Decode(const uint8_t *Opcodes, off_t Offset, size_t Length); 306 inline void OpcodeDecoder::Decode(const uint8_t *Opcodes, off_t Offset, in Decode() function 515 OpcodeDecoder(SW).Decode(Entry, Offset, Length); in PrintOpcodes()
|
| /llvm-project/lldb/include/lldb/Host/ |
| H A D | Host.h | 69 static WaitStatus Decode(int wstatus);
|
| /llvm-project/clang-tools-extra/clangd/unittests/ |
| H A D | URITests.cpp | 52 TEST(PercentEncodingTest, Decode) { in TEST() argument
|