Searched refs:Verify (Results 1 - 25 of 26) sorted by relevance

12

/art/dexoptanalyzer/
H A Ddexoptanalyzer_test.cc70 // Verify that the output of dexoptanalyzer for the given arguments is the same
72 void Verify(const std::string& dex_file, function in class:art::DexoptAnalyzerTest
91 Verify(dex_location, CompilerFilter::kSpeed);
92 Verify(dex_location, CompilerFilter::kExtract);
93 Verify(dex_location, CompilerFilter::kQuicken);
94 Verify(dex_location, CompilerFilter::kSpeedProfile);
103 Verify(dex_location, CompilerFilter::kSpeed);
104 Verify(dex_location, CompilerFilter::kQuicken);
105 Verify(dex_location, CompilerFilter::kExtract);
106 Verify(dex_locatio
[all...]
/art/runtime/gc/accounting/
H A Dmod_union_table.h81 virtual void Verify() REQUIRES(Locks::heap_bitmap_lock_) = 0;
133 void Verify() OVERRIDE
179 virtual void Verify() OVERRIDE {}
H A Dmod_union_table_test.cc226 // Verify that all the other references were visited.
238 table->Verify();
240 // Verify that dump doesn't crash.
258 // Verify that the dump still works.
H A Dmod_union_table.cc340 void ModUnionTableReferenceCache::Verify() { function in class:art::gc::accounting::ModUnionTableReferenceCache
/art/runtime/gc/allocator/
H A Drosalloc.h159 Verify();
186 Verify();
192 Verify();
218 Verify();
228 Verify();
230 list->Verify();
256 Verify();
268 void Verify() { function in class:art::gc::allocator::RosAlloc::SlotFreeList
454 // Verify for debugging.
455 void Verify(Threa
[all...]
H A Drosalloc.cc1739 void RosAlloc::Verify() { function in class:art::gc::allocator::RosAlloc
1862 // Call Verify() here for the lock order.
1864 run->Verify(self, this, is_running_on_memory_tool_);
1868 void RosAlloc::Run::Verify(Thread* self, RosAlloc* rosalloc, bool running_on_memory_tool) { function in class:art::gc::allocator::RosAlloc::Run
/art/runtime/
H A Ddex_file_verifier_test.cc74 bool success = DexFileVerifier::Verify(dex_file.get(),
1641 EXPECT_TRUE(DexFileVerifier::Verify(dex_file.get(),
1647 EXPECT_TRUE(DexFileVerifier::Verify(dex_file.get(),
1658 EXPECT_TRUE(DexFileVerifier::Verify(dex_file.get(),
1664 EXPECT_FALSE(DexFileVerifier::Verify(dex_file.get(),
1711 EXPECT_FALSE(DexFileVerifier::Verify(dex_file.get(),
1755 EXPECT_FALSE(DexFileVerifier::Verify(dex_file.get(),
1799 EXPECT_FALSE(DexFileVerifier::Verify(dex_file.get(),
1843 EXPECT_FALSE(DexFileVerifier::Verify(dex_file.get(),
1880 EXPECT_FALSE(DexFileVerifier::Verify(dex_fil
[all...]
H A Ddex_file_verifier.h30 static bool Verify(const DexFile* dex_file,
57 bool Verify();
H A Druntime_options.def116 Verify, verifier::VerifyMode::kEnable)
H A Dclass_table.cc278 class_set.Verify();
H A Ddex_file_verifier.cc226 bool DexFileVerifier::Verify(const DexFile* dex_file, function in class:art::DexFileVerifier
234 if (!verifier->Verify()) {
1252 // try_items are 4-byte aligned. Verify the spacer is 0.
2833 bool DexFileVerifier::Verify() { function in class:art::DexFileVerifier
H A Dparsed_options.cc277 .IntoKey(M::Verify)
H A Ddex_file.cc506 if (verify && !DexFileVerifier::Verify(dex_file.get(),
/art/cmdline/
H A Dcmdline_parser_test.cc516 EXPECT_SINGLE_PARSE_VALUE(verifier::VerifyMode::kNone, "-Xverify:none", M::Verify);
517 EXPECT_SINGLE_PARSE_VALUE(verifier::VerifyMode::kEnable, "-Xverify:remote", M::Verify);
518 EXPECT_SINGLE_PARSE_VALUE(verifier::VerifyMode::kEnable, "-Xverify:all", M::Verify);
519 EXPECT_SINGLE_PARSE_VALUE(verifier::VerifyMode::kSoftFail, "-Xverify:softfail", M::Verify);
/art/runtime/base/
H A Dtiming_logger.cc235 void TimingLogger::Verify() { function in class:art::TimingLogger
248 Verify();
H A Dtiming_logger.h136 // Verify that all open timings have related closed timings.
137 void Verify();
H A Dhash_set_test.cc137 ASSERT_EQ(hash_set.Verify(), 0U);
H A Dhash_set.h467 size_t Verify() NO_THREAD_SAFETY_ANALYSIS {
/art/runtime/gc/space/
H A Drosalloc_space.h137 void Verify() REQUIRES(Locks::mutator_lock_) {
138 rosalloc_->Verify();
/art/compiler/driver/
H A Dcompiler_driver.h405 void Verify(jobject class_loader,
H A Dcompiler_driver.cc937 VLOG(compiler) << "Verify none mode specified, skipping verification.";
951 Verify(class_loader, dex_files, timings);
952 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
1953 TimingLogger::ScopedTiming t("Fast Verify", timings);
2010 void CompilerDriver::Verify(jobject jclass_loader, function in class:art::CompilerDriver
2172 TimingLogger::ScopedTiming t("Verify Dex File", timings);
2236 TimingLogger::ScopedTiming t("Verify Dex File", timings);
/art/runtime/verifier/
H A Dmethod_verifier.h88 // Verify a class. Returns "kNoFailure" on success.
174 bool Verify() REQUIRES_SHARED(Locks::mutator_lock_);
270 // Verify all direct or virtual methods of a class. The method assumes that the iterator is
428 // Verify an array data table. "cur_offset" is the offset of the fill-array-data instruction.
431 // Verify that the target of a branch instruction is valid. We don't expect code to jump directly
438 // Verify a switch table. "cur_offset" is the offset of the switch instruction.
595 * Verify the arguments to a method. We're executing in "method", making
635 * Verify the arguments present for a call site. Returns "true" if all is well, "false" otherwise.
640 * Verify that the target instruction is not "move-exception". It's important that the only way
647 * Verify tha
[all...]
H A Dmethod_verifier.cc398 if (verifier.Verify()) {
527 verifier->Verify();
650 Verify();
681 bool success = Verify();
721 bool success = Verify();
734 bool MethodVerifier::Verify() { function in class:art::MethodVerifier
3118 // Verify registers based on method_type in the call site.
4607 // Verify each register. If "arg_count" is bad, VerifyRegisterType() will run off the end of
5244 // Verify that the monitor stack is empty on return.
/art/compiler/
H A Dverifier_deps_test.cc87 TimingLogger timings("Verify", false, false);
92 compiler_driver_->Verify(class_loader_, dex_files_, &timings);
191 verifier.Verify();
/art/runtime/gc/
H A Dheap.cc121 // Verify objet has a small allocation stack size since searching the allocation stack is slow.
2882 // Verify a reference from an object.
2939 // Verify that the reference is live.
3034 // Verify all references within an object, for use with HeapBitmap::Visit.
3121 // Verify objects in the allocation stack since these will be objects which were:
3127 // Verify the roots:
3394 mod_union_table->Verify();
3479 space->AsRosAllocSpace()->Verify();

Completed in 998 milliseconds

12