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_debug_writer.cc52 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()
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()
/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.py99 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/
Doat_writer.cc242 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/
Doatdump.cc217 debug_info.compiled_methods = ArrayRef<const debug::MethodDebugInfo>(method_debug_infos_); in Symbolize()