Searched defs:compiled_methods (Results 1 - 4 of 4) sorted by relevance

/art/compiler/debug/
H A Ddebug_info.h33 ArrayRef<const MethodDebugInfo> compiled_methods; member in struct:art::debug::DebugInfo
39 return compiled_methods.empty() && dex_files.empty();
/art/compiler/driver/
H A Dcompiled_method_storage_test.cc38 /* compiled_methods */ nullptr,
83 std::vector<CompiledMethod*> compiled_methods; local
84 compiled_methods.reserve(1u << 7);
90 compiled_methods.push_back(CompiledMethod::SwapAllocCompiledMethod(
102 CHECK_EQ(compiled_methods.size(), 1u << 5);
103 for (size_t i = 0; i != compiled_methods.size(); ++i) {
104 for (size_t j = 0; j != compiled_methods.size(); ++j) {
105 CompiledMethod* lhs = compiled_methods[i];
106 CompiledMethod* rhs = compiled_methods[j];
124 for (CompiledMethod* method : compiled_methods) {
[all...]
H A Dcompiler_driver.cc268 std::unordered_set<std::string>* compiled_methods,
283 methods_to_compile_(compiled_methods),
260 CompilerDriver( const CompilerOptions* compiler_options, VerificationResults* verification_results, Compiler::Kind compiler_kind, InstructionSet instruction_set, const InstructionSetFeatures* instruction_set_features, std::unordered_set<std::string>* image_classes, std::unordered_set<std::string>* compiled_classes, std::unordered_set<std::string>* compiled_methods, size_t thread_count, int swap_fd, const ProfileCompilationInfo* profile_compilation_info) argument
/art/dex2oat/linker/
H A Doat_writer.cc232 OatClass(const dchecked_vector<CompiledMethod*>& compiled_methods,
4294 OatWriter::OatClass::OatClass(const dchecked_vector<CompiledMethod*>& compiled_methods, argument
4297 : compiled_methods_(compiled_methods) {
4298 const uint32_t num_methods = compiled_methods.size();
4417 debug_info.compiled_methods = ArrayRef<const debug::MethodDebugInfo>(method_info_);

Completed in 121 milliseconds