Searched refs:SwapVector (Results 1 – 11 of 11) sorted by relevance
/art/compiler/utils/ |
D | dedupe_set_test.cc | 43 DedupeSet<ByteArray, SwapVector<uint8_t>, size_t, DedupeHashFunc> deduplicator("test", swap); in TEST() 44 SwapVector<uint8_t>* array1; in TEST() 57 SwapVector<uint8_t>* array2; in TEST() 69 SwapVector<uint8_t>* array3; in TEST()
|
D | swap_space_test.cc | 42 SwapVector<int32_t> v(alloc); in SwapTest() 49 SwapVector<int32_t> v2(alloc); in SwapTest() 56 SwapVector<int32_t> v3(alloc); in SwapTest()
|
D | swap_space.h | 205 using SwapVector = std::vector<T, SwapAllocator<T>>; variable
|
/art/compiler/ |
D | compiled_method.h | 46 const SwapVector<uint8_t>* GetQuickCode() const { in GetQuickCode() 83 SwapVector<uint8_t>* quick_code_; 360 SwapVector<uint8_t> const* GetMappingTable() const { in GetMappingTable() 364 const SwapVector<uint8_t>* GetVmapTable() const { in GetVmapTable() 369 SwapVector<uint8_t> const* GetGcMap() const { in GetGcMap() 373 const SwapVector<uint8_t>* GetCFIInfo() const { in GetCFIInfo() 394 SwapVector<uint8_t>* mapping_table_; 396 SwapVector<uint8_t>* vmap_table_; 399 SwapVector<uint8_t>* gc_map_; 401 SwapVector<uint8_t>* cfi_info_; [all …]
|
D | compiled_method.cc | 35 quick_code_ = new SwapVector<uint8_t>(quick_code->begin(), quick_code->end(), in SetCode() 149 nullptr : new SwapVector<uint8_t>(mapping_table.begin(), mapping_table.end(), in CompiledMethod() 151 vmap_table_ = new SwapVector<uint8_t>(vmap_table.begin(), vmap_table.end(), in CompiledMethod() 154 new SwapVector<uint8_t>(native_gc_map.begin(), native_gc_map.end(), in CompiledMethod() 157 new SwapVector<uint8_t>(cfi_info.begin(), cfi_info.end(), driver->GetSwapSpaceAllocator()); in CompiledMethod()
|
D | common_compiler_test.cc | 56 const SwapVector<uint8_t>* code = compiled_method->GetQuickCode(); in MakeExecutable() 59 const SwapVector<uint8_t>* vmap_table = compiled_method->GetVmapTable(); in MakeExecutable() 62 const SwapVector<uint8_t>* mapping_table = compiled_method->GetMappingTable(); in MakeExecutable() 67 const SwapVector<uint8_t>* gc_map = compiled_method->GetGcMap(); in MakeExecutable()
|
D | oat_writer.cc | 160 static const SwapVector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE { in GetData() 182 static const SwapVector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE { in GetData() 204 static const SwapVector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE { in GetData() 376 const SwapVector<uint8_t>* quick_code = compiled_method->GetQuickCode(); in VisitMethod() 481 const SwapVector<uint8_t>* gc_map = compiled_method->GetGcMap(); in VisitMethod() 568 const SwapVector<uint8_t>* map = DataAccess::GetData(compiled_method); in VisitMethod() 590 SafeMap<const SwapVector<uint8_t>*, uint32_t> dedupe_map_; 691 const SwapVector<uint8_t>* quick_code = compiled_method->GetQuickCode(); in VisitMethod() 916 const SwapVector<uint8_t>* map = DataAccess::GetData(compiled_method); in VisitMethod()
|
D | oat_test.cc | 66 const SwapVector<uint8_t>* quick_code = compiled_method->GetQuickCode(); in CheckMethod()
|
D | elf_writer_debug.cc | 185 const SwapVector<uint8_t>* opcodes = mi.compiled_method_->GetCFIInfo(); in WriteCFISection()
|
/art/compiler/driver/ |
D | compiler_driver.h | 456 SwapVector<uint8_t>* DeduplicateCode(const ArrayRef<const uint8_t>& code); 458 SwapVector<uint8_t>* DeduplicateMappingTable(const ArrayRef<const uint8_t>& code); 459 SwapVector<uint8_t>* DeduplicateVMapTable(const ArrayRef<const uint8_t>& code); 460 SwapVector<uint8_t>* DeduplicateGCMap(const ArrayRef<const uint8_t>& code); 461 SwapVector<uint8_t>* DeduplicateCFIInfo(const ArrayRef<const uint8_t>& cfi_info); 766 SwapVector<uint8_t>, size_t, DedupeHashFunc<const uint8_t>, 4> dedupe_code_; 770 SwapVector<uint8_t>, size_t, DedupeHashFunc<const uint8_t>, 4> dedupe_mapping_table_; 772 SwapVector<uint8_t>, size_t, DedupeHashFunc<const uint8_t>, 4> dedupe_vmap_table_; 774 SwapVector<uint8_t>, size_t, DedupeHashFunc<const uint8_t>, 4> dedupe_gc_map_; 776 SwapVector<uint8_t>, size_t, DedupeHashFunc<const uint8_t>, 4> dedupe_cfi_info_;
|
D | compiler_driver.cc | 414 SwapVector<uint8_t>* CompilerDriver::DeduplicateCode(const ArrayRef<const uint8_t>& code) { in DeduplicateCode() 424 SwapVector<uint8_t>* CompilerDriver::DeduplicateMappingTable(const ArrayRef<const uint8_t>& code) { in DeduplicateMappingTable() 429 SwapVector<uint8_t>* CompilerDriver::DeduplicateVMapTable(const ArrayRef<const uint8_t>& code) { in DeduplicateVMapTable() 434 SwapVector<uint8_t>* CompilerDriver::DeduplicateGCMap(const ArrayRef<const uint8_t>& code) { in DeduplicateGCMap() 439 SwapVector<uint8_t>* CompilerDriver::DeduplicateCFIInfo(const ArrayRef<const uint8_t>& cfi_info) { in DeduplicateCFIInfo()
|