/art/libprofile/profile/ |
D | profile_boot_info_test.cc | 37 ScratchFile profile; in TEST_F() local 42 ASSERT_TRUE(loaded_info.Load(profile.GetFd(), dex_files)); in TEST_F() 47 ScratchFile profile; in TEST_F() local 53 ASSERT_TRUE(saved_info.Save(profile.GetFd())); in TEST_F() 54 ASSERT_TRUE(profile.GetFile()->ResetOffset()); in TEST_F() 57 ASSERT_TRUE(loaded_info.Load(profile.GetFd(), dex_files)); in TEST_F() 66 ScratchFile profile; in TEST_F() local 77 ASSERT_TRUE(saved_info.Save(profile.GetFd())); in TEST_F() 78 ASSERT_TRUE(profile.GetFile()->ResetOffset()); in TEST_F() 81 ASSERT_TRUE(loaded_info.Load(profile.GetFd(), dex_files2)); in TEST_F() [all …]
|
D | profile_compilation_info_test.cc | 130 ScratchFile profile; in TestProfileLoadFromZip() local 136 ASSERT_TRUE(saved_info.Save(GetFd(profile))); in TestProfileLoadFromZip() 137 ASSERT_EQ(0, profile.GetFile()->Flush()); in TestProfileLoadFromZip() 140 std::vector<uint8_t> data(profile.GetFile()->GetLength()); in TestProfileLoadFromZip() 141 ASSERT_TRUE(profile.GetFile()->PreadFully(data.data(), data.size(), /*offset=*/ 0)); in TestProfileLoadFromZip() 281 ScratchFile profile; in TEST_F() local 289 ASSERT_TRUE(saved_info.Save(GetFd(profile))); in TEST_F() 290 ASSERT_EQ(0, profile.GetFile()->Flush()); in TEST_F() 294 ASSERT_TRUE(loaded_info.Load(GetFd(profile))); in TEST_F() 303 ASSERT_TRUE(profile.GetFile()->ResetOffset()); in TEST_F() [all …]
|
/art/test/595-profile-saving/ |
D | Android.bp | 3 // Build rules for ART run-test `595-profile-saving`. 16 name: "art-run-test-595-profile-saving", 21 ":art-run-test-595-profile-saving-expected-stdout", 22 ":art-run-test-595-profile-saving-expected-stderr", 28 name: "art-run-test-595-profile-saving-expected-stdout", 29 out: ["art-run-test-595-profile-saving-expected-stdout.txt"], 36 name: "art-run-test-595-profile-saving-expected-stderr", 37 out: ["art-run-test-595-profile-saving-expected-stderr.txt"],
|
/art/tools/ |
D | boot-image-profile-generate.sh | 73 OUT_BOOT_PROFILE="$OUT_DIR"/boot-image-profile.txt 75 OUT_SYSTEM_SERVER="$OUT_DIR"/art-profile 118 --generate-boot-image-profile \ 120 --out-profile-path="$OUT_BOOT_PROFILE" \ 133 --generate-boot-image-profile \ 135 --out-profile-path="$OUT_SYSTEM_SERVER" \
|
D | art | 54 --profile Run with profiling, then run using profile data. 249 --compiler-filter=speed-profile) 252 --compiler-filter=everything-profile) 387 --profile) 631 -Xps-profile-path:$PROFILE_PATH \ 649 DEX2OAT_FLAGS+=(--profile-file="$PROFILE_PATH")
|
/art/test/707-checker-invalid-profile/ |
D | Android.bp | 3 // Build rules for ART run-test `707-checker-invalid-profile`. 16 name: "art-run-test-707-checker-invalid-profile", 21 ":art-run-test-707-checker-invalid-profile-expected-stdout", 22 ":art-run-test-707-checker-invalid-profile-expected-stderr", 31 name: "art-run-test-707-checker-invalid-profile-expected-stdout", 32 out: ["art-run-test-707-checker-invalid-profile-expected-stdout.txt"], 39 name: "art-run-test-707-checker-invalid-profile-expected-stderr", 40 out: ["art-run-test-707-checker-invalid-profile-expected-stderr.txt"],
|
D | run | 17 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile
|
D | expected-stdout.txt | 1 Invalid inline cache in profile file.
|
/art/test/178-app-image-native-method/ |
D | run | 19 ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile \ 24 ${RUN} ${@} --profile -Xcompiler-option --compiler-filter=verify
|
/art/test/172-app-image-twice/ |
D | run | 19 ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile
|
/art/test/1001-app-image-regions/ |
D | run | 17 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile
|
/art/test/729-checker-polymorphic-intrinsic/ |
D | run | 17 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile
|
/art/test/158-app-image-class-table/ |
D | run | 17 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile
|
/art/test/643-checker-bogus-ic/ |
D | run | 17 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile
|
/art/test/638-checker-inline-caches/ |
D | run | 17 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile
|
/art/test/164-resolution-trampoline-dex-cache/ |
D | run | 21 -Xcompiler-option --compiler-filter=speed-profile --profile \
|
/art/test/1003-metadata-section-strings/ |
D | run | 17 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile -Xcompiler-option --reso…
|
/art/test/159-app-image-fields/ |
D | run | 20 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile \
|
/art/test/163-app-image-methods/ |
D | run | 20 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile \
|
/art/runtime/jit/ |
D | profiling_info_test.cc | 172 ScratchFile profile; in TEST_F() local 185 profile.GetFilename(), in TEST_F() 191 ASSERT_TRUE(info1.Load(GetFd(profile))); in TEST_F() 205 profile.GetFilename(), in TEST_F() 211 ASSERT_TRUE(info2.Load(GetFd(profile))); in TEST_F() 229 ScratchFile profile; in TEST_F() local 244 profile.GetFilename(), in TEST_F() 251 ASSERT_TRUE(info.Load(GetFd(profile))); in TEST_F()
|
/art/test/176-app-image-string/ |
D | run | 17 exec ${RUN} $@ --profile
|
/art/test/818-clinit-nterp/ |
D | run | 17 exec ${RUN} $@ --profile
|
/art/test/596-app-images/ |
D | run | 18 exec ${RUN} --profile $@
|
/art/test/648-inline-caches-unresolved/ |
D | run | 17 exec ${RUN} $@ --secondary --profile
|
/art/profman/ |
D | profile_assistant_test.cc | 67 const ScratchFile& profile, in SetupProfile() argument 90 ASSERT_TRUE(info->Save(GetFd(profile))); in SetupProfile() 91 ASSERT_EQ(0, profile.GetFile()->Flush()); in SetupProfile() 98 const ScratchFile& profile, in SetupBasicProfile() argument 109 ASSERT_TRUE(info->Save(GetFd(profile))); in SetupBasicProfile() 110 ASSERT_EQ(0, profile.GetFile()->Flush()); in SetupBasicProfile() 418 ScratchFile profile; in CheckCompilationMethodPercentChange() local 420 std::vector<int> profile_fds({ GetFd(profile)}); in CheckCompilationMethodPercentChange() 433 profile, &info1); in CheckCompilationMethodPercentChange() 450 ScratchFile profile; in CheckCompilationClassPercentChange() local [all …]
|