Home
last modified time | relevance | path

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

/art/compiler/driver/
Dcompiled_method_storage_test.cc85 std::vector<CompiledMethod*> compiled_methods; in TEST() local
86 compiled_methods.reserve(1u << 7); in TEST()
92 compiled_methods.push_back(CompiledMethod::SwapAllocCompiledMethod( in TEST()
104 CHECK_EQ(compiled_methods.size(), 1u << 5); in TEST()
105 for (size_t i = 0; i != compiled_methods.size(); ++i) { in TEST()
106 for (size_t j = 0; j != compiled_methods.size(); ++j) { in TEST()
107 CompiledMethod* lhs = compiled_methods[i]; in TEST()
108 CompiledMethod* rhs = compiled_methods[j]; in TEST()
126 for (CompiledMethod* method : compiled_methods) { in TEST()
Dcompiler_driver.h97 std::unordered_set<std::string>* compiled_methods,
Dcompiler_driver.cc276 std::unordered_set<std::string>* compiled_methods, in CompilerDriver() argument
294 methods_to_compile_(compiled_methods), in CompilerDriver()
/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
169 if compiled_methods is not None:
170 self._test_env.WriteLines(self._compiled_methods_path, compiled_methods)
417 if testable.Test(compiled_methods=[]):
/art/compiler/
Doat_writer.cc164 const dchecked_vector<CompiledMethod*>& compiled_methods,
3073 const dchecked_vector<CompiledMethod*>& compiled_methods, in OatClass() argument
3076 : compiled_methods_(compiled_methods) { in OatClass()
3077 uint32_t num_methods = compiled_methods.size(); in OatClass()