Searched refs:compiled_methods (Results 1 – 8 of 8) 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_debug_writer.cc | 52 WriteCFISection(builder, debug_info.compiled_methods); in WriteDebugInfo() 56 for (const MethodDebugInfo& mi : debug_info.compiled_methods) { in WriteDebugInfo() 136 if (!debug_info.compiled_methods.empty()) { in MakeMiniDebugInfoInternal() 137 WriteCFISection(builder.get(), debug_info.compiled_methods); in MakeMiniDebugInfoInternal() 183 debug_info.compiled_methods = ArrayRef<const MethodDebugInfo>(&method_info, 1); in MakeElfFileForJIT() 195 WriteCFISection(builder.get(), debug_info.compiled_methods); in MakeElfFileForJIT()
|
D | elf_symtab_writer.h | 63 for (const MethodDebugInfo& info : debug_info.compiled_methods) { in WriteDebugSymbols() 81 for (const MethodDebugInfo& info : debug_info.compiled_methods) { in WriteDebugSymbols()
|
/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 | 99 def Test(self, compiled_methods, passes_to_run=None): argument 114 compiled_methods, passes_to_run)) 115 cmd = self._PrepareCmd(compiled_methods=compiled_methods, 157 cmd = self._PrepareCmd(compiled_methods=[compiled_method]) 165 def _PrepareCmd(self, compiled_methods=None, passes_to_run=None): argument 413 if testable.Test(compiled_methods=[]):
|
/art/dex2oat/linker/ |
D | oat_writer.cc | 242 OatClass(const dchecked_vector<CompiledMethod*>& compiled_methods, 4135 OatWriter::OatClass::OatClass(const dchecked_vector<CompiledMethod*>& compiled_methods, in OatClass() argument 4138 : compiled_methods_(compiled_methods) { in OatClass() 4139 const uint32_t num_methods = compiled_methods.size(); in OatClass() 4222 debug_info.compiled_methods = ArrayRef<const debug::MethodDebugInfo>(method_info_); in GetDebugInfo()
|
/art/oatdump/ |
D | oatdump.cc | 217 debug_info.compiled_methods = ArrayRef<const debug::MethodDebugInfo>(method_debug_infos_); in Symbolize()
|