Home
last modified time | relevance | path

Searched refs:compiled_methods (Results 1 – 8 of 8) sorted by relevance

/art/compiler/driver/
Dcompiled_method_storage_test.cc61 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/
Ddebug_info.h33 ArrayRef<const MethodDebugInfo> compiled_methods; member
39 return compiled_methods.empty() && dex_files.empty(); in Empty()
Delf_symtab_writer.h63 for (const MethodDebugInfo& info : debug_info.compiled_methods) { in WriteDebugSymbols()
81 for (const MethodDebugInfo& info : debug_info.compiled_methods) { in WriteDebugSymbols()
Delf_debug_writer.cc53 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/
Dbisection_test.py57 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
Dbisection_search.py97 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/dex2oat/linker/
Doat_writer.cc243 OatClass(const dchecked_vector<CompiledMethod*>& compiled_methods,
4152 OatWriter::OatClass::OatClass(const dchecked_vector<CompiledMethod*>& compiled_methods, in OatClass() argument
4155 : compiled_methods_(compiled_methods) { in OatClass()
4156 const uint32_t num_methods = compiled_methods.size(); in OatClass()
4239 debug_info.compiled_methods = ArrayRef<const debug::MethodDebugInfo>(method_info_); in GetDebugInfo()
/art/oatdump/
Doatdump.cc214 debug_info.compiled_methods = ArrayRef<const debug::MethodDebugInfo>(method_debug_infos_); in Symbolize()