Home
last modified time | relevance | path

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

/art/compiler/driver/
Dcompiled_method_storage_test.cc90 std::vector<CompiledMethod*> compiled_methods; in TEST() local
91 compiled_methods.reserve(1u << 7); in TEST()
97 compiled_methods.push_back(CompiledMethod::SwapAllocCompiledMethod( in TEST()
109 CHECK_EQ(compiled_methods.size(), 1u << 5); in TEST()
110 for (size_t i = 0; i != compiled_methods.size(); ++i) { in TEST()
111 for (size_t j = 0; j != compiled_methods.size(); ++j) { in TEST()
112 CompiledMethod* lhs = compiled_methods[i]; in TEST()
113 CompiledMethod* rhs = compiled_methods[j]; in TEST()
131 for (CompiledMethod* method : compiled_methods) { in TEST()
Dcompiler_driver.h99 std::unordered_set<std::string>* compiled_methods,
Dcompiler_driver.cc367 std::unordered_set<std::string>* compiled_methods, in CompilerDriver() argument
390 methods_to_compile_(compiled_methods), in CompilerDriver()
/art/compiler/
Doat_writer.cc151 const dchecked_vector<CompiledMethod*>& compiled_methods,
2355 const dchecked_vector<CompiledMethod*>& compiled_methods, in OatClass() argument
2358 : compiled_methods_(compiled_methods) { in OatClass()
2359 uint32_t num_methods = compiled_methods.size(); in OatClass()