Searched refs:compiled_methods (Results 1 – 9 of 9) sorted by relevance
/art/compiler/driver/ |
D | compiled_method_storage_test.cc | 61 std::vector<CompiledMethod*> compiled_methods; in TEST() local 62 compiled_methods.reserve(1u << 4); in TEST() 67 compiled_methods.push_back(CompiledMethod::SwapAllocCompiledMethod( in TEST() 77 CHECK_EQ(compiled_methods.size(), 1u << 4); in TEST() 78 for (size_t i = 0; i != compiled_methods.size(); ++i) { in TEST() 79 for (size_t j = 0; j != compiled_methods.size(); ++j) { in TEST() 80 CompiledMethod* lhs = compiled_methods[i]; in TEST() 81 CompiledMethod* rhs = compiled_methods[j]; in TEST() 96 for (CompiledMethod* method : compiled_methods) { in TEST()
|
/art/compiler/debug/ |
D | debug_info.h | 33 ArrayRef<const MethodDebugInfo> compiled_methods; member 39 return compiled_methods.empty() && dex_files.empty(); in Empty()
|
D | elf_symtab_writer.h | 103 for (const MethodDebugInfo& info : debug_info.compiled_methods) { in WriteDebugSymbols() 117 for (const MethodDebugInfo& info : debug_info.compiled_methods) { in WriteDebugSymbols() 126 if (kGenerateSortedSymbol && debug_info.compiled_methods.size() >= kSortedSymbolMinCount) { in WriteDebugSymbols() 134 for (const MethodDebugInfo& info : debug_info.compiled_methods) { in WriteDebugSymbols()
|
D | elf_debug_writer.cc | 53 WriteCFISection(builder, debug_info.compiled_methods); in WriteDebugInfo() 57 for (const MethodDebugInfo& mi : debug_info.compiled_methods) { in WriteDebugInfo() 137 if (!debug_info.compiled_methods.empty()) { in MakeMiniDebugInfoInternal() 138 WriteCFISection(builder.get(), debug_info.compiled_methods); in MakeMiniDebugInfoInternal() 184 debug_info.compiled_methods = ArrayRef<const MethodDebugInfo>(&method_info, 1); in MakeElfFileForJIT() 196 WriteCFISection(builder.get(), debug_info.compiled_methods); in MakeElfFileForJIT()
|
/art/tools/bisection_search/ |
D | bisection_test.py | 57 def MethodFailsForAllPasses(self, compiled_methods, run_passes=None): argument 58 return self._FAILING_METHOD not in compiled_methods 60 def MethodFailsForAPass(self, compiled_methods, run_passes=None): argument 61 return (self._FAILING_METHOD not in compiled_methods or
|
D | bisection_search.py | 97 def Test(self, compiled_methods, passes_to_run=None): argument 112 compiled_methods, passes_to_run)) 113 cmd = self._PrepareCmd(compiled_methods=compiled_methods, 155 cmd = self._PrepareCmd(compiled_methods=[compiled_method]) 163 def _PrepareCmd(self, compiled_methods=None, passes_to_run=None): argument 411 if testable.Test(compiled_methods=[]):
|
/art/runtime/jit/ |
D | jit_code_cache.cc | 484 std::map<const void*, ArtMethod*> compiled_methods; in FreeAllMethodHeaders() local 488 compiled_methods.emplace(addr, method); in FreeAllMethodHeaders() 495 CHECK_EQ(compiled_methods.count(addr), 1u) << "Extra debug info: " << addr << " " << name; in FreeAllMethodHeaders() 498 for (auto it : compiled_methods) { in FreeAllMethodHeaders() 501 CHECK_EQ(compiled_methods.size(), debug_info.size()); in FreeAllMethodHeaders()
|
/art/dex2oat/linker/ |
D | oat_writer.cc | 253 OatClass(const dchecked_vector<CompiledMethod*>& compiled_methods, 3984 OatWriter::OatClass::OatClass(const dchecked_vector<CompiledMethod*>& compiled_methods, in OatClass() argument 3987 : compiled_methods_(compiled_methods) { in OatClass() 3988 const uint32_t num_methods = compiled_methods.size(); in OatClass() 4076 debug_info.compiled_methods = ArrayRef<const debug::MethodDebugInfo>(method_info_); in GetDebugInfo()
|
/art/oatdump/ |
D | oatdump.cc | 215 debug_info.compiled_methods = ArrayRef<const debug::MethodDebugInfo>(method_debug_infos_); in Symbolize()
|