Searched refs:profile_file (Results 1 - 4 of 4) sorted by relevance

/art/runtime/native/
H A Ddalvik_system_DexFile.cc418 std::string profile_file; local
422 profile_file = GetDalvikCacheOrDie("profiles", false /* create_if_absent */)
424 prev_profile_file = profile_file + std::string("@old");
427 int e1 = stat(profile_file.c_str(), &profstat);
435 LOG(INFO) << "DexFile_isDexOptNeededInternal profile file " << profile_file << " doesn't exist. "
442 << profile_file;
452 bool new_ok = new_profile.LoadFile(profile_file);
457 << (new_ok ? "" : profile_file) << " " << (old_ok ? "" : prev_profile_file);
465 LOG(INFO) << "DexFile_isDexOptNeededInternal empty profile: " << profile_file;
485 LOG(INFO) << "DexFile_isDexOptNeededInternal size of new profile file " << profile_file <<
[all...]
/art/dex2oat/
H A Ddex2oat.cc368 std::string profile_file,
404 profile_file));
889 std::string profile_file; local
1074 profile_file = option.substr(strlen("--profile-file=")).data();
1075 VLOG(compiler) << "dex2oat: profile file is " << profile_file;
1556 profile_file,
353 CreateOatFile(const std::string& boot_image_option, const std::string& android_root, bool is_host, const std::vector<const DexFile*>& dex_files, File* oat_file, const std::string& oat_location, const std::string& bitcode_filename, bool image, std::unique_ptr<std::set<std::string>>& image_classes, std::unique_ptr<std::set<std::string>>& compiled_classes, bool dump_stats, bool dump_passes, TimingLogger& timings, CumulativeLogger& compiler_phases_timings, int swap_fd, std::string profile_file, SafeMap<std::string, std::string>* key_value_store) argument
/art/compiler/driver/
H A Dcompiler_driver.cc341 int swap_fd, std::string profile_file)
398 if (!profile_file.empty()) {
399 profile_present_ = profile_file_.LoadFile(profile_file);
401 LOG(INFO) << "Using profile data form file " << profile_file;
403 LOG(INFO) << "Failed to load profile file " << profile_file;
332 CompilerDriver(const CompilerOptions* compiler_options, VerificationResults* verification_results, DexFileToMethodInlinerMap* method_inliner_map, Compiler::Kind compiler_kind, InstructionSet instruction_set, InstructionSetFeatures instruction_set_features, bool image, std::set<std::string>* image_classes, std::set<std::string>* compiled_classes, size_t thread_count, bool dump_stats, bool dump_passes, CumulativeLogger* timer, int swap_fd, std::string profile_file) argument
H A Dcompiler_driver.h114 std::string profile_file = "");

Completed in 1666 milliseconds