/art/compiler/sea_ir/types/ |
types.h | 34 art::SafeMap<int, const Type*>* GetTypeMap() { 39 art::SafeMap<int, const Type*>::const_iterator result_it = type_map_.find(instruction_id); 52 art::SafeMap<int, const Type*> type_map_;
|
type_inference.h | 40 art::SafeMap<int, const Type*>* GetTypeMap() { 45 TypeData type_data_; // TODO: Make private, add accessor and not publish a SafeMap above.
|
/art/runtime/ |
safe_map.h | 32 class SafeMap { 34 typedef SafeMap<K, V, Comparator, Allocator> Self; 46 SafeMap() = default; 47 explicit SafeMap(const key_compare& cmp, const allocator_type& allocator = allocator_type()) 123 bool operator==(const SafeMap<K, V, Comparator, Allocator>& lhs, 124 const SafeMap<K, V, Comparator, Allocator>& rhs) { 129 bool operator!=(const SafeMap<K, V, Comparator, Allocator>& lhs, 130 const SafeMap<K, V, Comparator, Allocator>& rhs) { 135 class AllocationTrackingSafeMap : public SafeMap<
|
oat.h | 45 const SafeMap<std::string, std::string>* variable_data); 115 const SafeMap<std::string, std::string>* variable_data); 117 void Flatten(const SafeMap<std::string, std::string>* variable_data);
|
oat.cc | 28 static size_t ComputeOatHeaderSize(const SafeMap<std::string, std::string>* variable_data) { 31 SafeMap<std::string, std::string>::const_iterator it = variable_data->begin(); 32 SafeMap<std::string, std::string>::const_iterator end = variable_data->end(); 46 const SafeMap<std::string, std::string>* variable_data) { 67 const SafeMap<std::string, std::string>* variable_data) { 479 void OatHeader::Flatten(const SafeMap<std::string, std::string>* key_value_store) { 482 SafeMap<std::string, std::string>::const_iterator it = key_value_store->begin(); 483 SafeMap<std::string, std::string>::const_iterator end = key_value_store->end();
|
trace.h | 172 SafeMap<pid_t, std::string> exited_threads_;
|
/art/compiler/sea_ir/debug/ |
dot_gen.h | 42 art::SafeMap<int, const Type*>* types): graph_(), types_(types), options_(options) { } 93 art::SafeMap<int, const Type*>* types_; 103 art::SafeMap<int, const Type*>* types) const {
|
dot_gen.cc | 54 art::SafeMap<int, const Type*>::const_iterator type_it = types_->find(def_it->second->Id()); 86 art::SafeMap<int, const Type*>::const_iterator type_it = types_->find((*def_it)->Id());
|
/art/compiler/dex/ |
verification_results.h | 63 typedef SafeMap<MethodReference, const VerifiedMethod*,
|
verified_method.h | 40 typedef SafeMap<uint32_t, MethodReference> DevirtualizationMap;
|
/art/compiler/ |
elf_writer_mclinker.h | 88 SafeMap<const std::string*, const std::string*> added_symbols_; 92 SafeMap<const std::string*, uint32_t> symbol_to_compiled_code_offset_;
|
oat_writer.h | 85 SafeMap<std::string, std::string>* key_value_store); 260 SafeMap<std::string, std::string>* key_value_store_;
|
elf_writer_mclinker.cc | 262 SafeMap<const std::string*, const std::string*>::iterator it = added_symbols_.find(&symbol); 392 SafeMap<const std::string*, uint32_t>::iterator it = symbol_to_compiled_code_offset_.find(&symbol);
|
image_test.cc | 82 SafeMap<std::string, std::string> key_value_store;
|
oat_test.cc | 118 SafeMap<std::string, std::string> key_value_store;
|
oat_writer.cc | 56 SafeMap<std::string, std::string>* key_value_store) 489 SafeMap<const CompiledMethod*, uint32_t, CodeOffsetsKeyComparator> dedupe_map_; 530 SafeMap<const SwapVector<uint8_t>*, uint32_t> dedupe_map_; [all...] |
/art/compiler/llvm/ |
llvm_compilation_unit.h | 122 SafeMap<const ::llvm::Function*, CompiledMethod*> compiled_methods_map_;
|
/art/compiler/sea_ir/ |
frontend.cc | 53 SafeMap<int, const sea_ir::Type*>* types = ir_graph->ti_->GetTypeMap();
|
/art/runtime/jdwp/ |
object_registry.h | 119 SafeMap<JDWP::ObjectId, ObjectRegistryEntry*> id_to_entry_ GUARDED_BY(lock_);
|
/art/compiler/utils/ |
arena_containers.h | 58 SafeMap<K, V, Comparator, ArenaAllocatorAdapter<std::pair<const K, V>>>;
|
scoped_arena_containers.h | 56 SafeMap<K, V, Comparator, ScopedArenaAllocatorAdapter<std::pair<const K, V>>>;
|
/art/compiler/dex/quick/ |
dex_file_method_inliner.h | 326 SafeMap<uint32_t, InlineMethod> inline_methods_ GUARDED_BY(lock_);
|
/art/runtime/gc/space/ |
large_object_space.h | 135 typedef SafeMap<mirror::Object*, MemMap*, std::less<mirror::Object*>,
|
/art/compiler/dex/portable/ |
mir_to_gbc.h | 195 SafeMap<int32_t, ::llvm::BasicBlock*> id_to_block_map_; // block id -> llvm bb.
|
/art/compiler/driver/ |
compiler_driver.h | 788 typedef SafeMap<const ClassReference, CompiledClass*> ClassTable; 793 typedef SafeMap<const MethodReference, CompiledMethod*, MethodReferenceComparator> MethodTable; [all...] |