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

/art/runtime/gc/accounting/
H A Dmod_union_table.h75 virtual void Verify() REQUIRES(Locks::heap_bitmap_lock_) = 0;
120 void Verify() OVERRIDE
160 virtual void Verify() OVERRIDE {}
H A Dmod_union_table_test.cc225 // Verify that all the other references were visited.
237 table->Verify();
239 // Verify that dump doesn't crash.
257 // Verify that the dump still works.
H A Dmod_union_table.cc321 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.cc1746 void RosAlloc::Verify() { function in class:art::gc::allocator::RosAlloc
1869 // Call Verify() here for the lock order.
1871 run->Verify(self, this, is_running_on_memory_tool_);
1875 void RosAlloc::Run::Verify(Thread* self, RosAlloc* rosalloc, bool running_on_memory_tool) { function in class:art::gc::allocator::RosAlloc::Run
/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/
H A Ddex_file_verifier.h29 static bool Verify(const DexFile* dex_file, const uint8_t* begin, size_t size,
42 bool Verify();
H A Druntime_options.def115 Verify, verifier::VerifyMode::kEnable)
H A Dclass_table.cc180 class_set.Verify();
H A Ddex_file_verifier.cc131 bool DexFileVerifier::Verify(const DexFile* dex_file, const uint8_t* begin, size_t size, function in class:art::DexFileVerifier
134 if (!verifier->Verify()) {
983 // try_items are 4-byte aligned. Verify the spacer is 0.
2376 bool DexFileVerifier::Verify() { function in class:art::DexFileVerifier
H A Dparsed_options.cc272 .IntoKey(M::Verify)
H A Ddex_file_verifier_test.cc139 bool success = DexFileVerifier::Verify(dex_file.get(),
H A Ddex_file.cc219 if (verify && !DexFileVerifier::Verify(dex_file.get(),
278 if (verify && !DexFileVerifier::Verify(dex_file.get(), dex_file->Begin(), dex_file->Size(),
344 if (!DexFileVerifier::Verify(dex_file.get(), dex_file->Begin(), dex_file->Size(),
H A Druntime.cc986 verify_ = runtime_options.GetOrDefault(Opt::Verify);
/art/runtime/gc/space/
H A Drosalloc_space.h137 void Verify() REQUIRES(Locks::mutator_lock_) {
138 rosalloc_->Verify();
/art/cmdline/
H A Dcmdline_parser_test.cc563 EXPECT_SINGLE_PARSE_VALUE(verifier::VerifyMode::kNone, "-Xverify:none", M::Verify);
564 EXPECT_SINGLE_PARSE_VALUE(verifier::VerifyMode::kEnable, "-Xverify:remote", M::Verify);
565 EXPECT_SINGLE_PARSE_VALUE(verifier::VerifyMode::kEnable, "-Xverify:all", M::Verify);
566 EXPECT_SINGLE_PARSE_VALUE(verifier::VerifyMode::kSoftFail, "-Xverify:softfail", M::Verify);
/art/compiler/driver/
H A Dcompiler_driver.h574 void Verify(jobject class_loader,
H A Dcompiler_driver.cc502 // Verify at runtime shouldn't dex to dex since we didn't resolve of verify.
909 VLOG(compiler) << "Verify none mode specified, skipping verification.";
923 Verify(class_loader, dex_files, timings);
924 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
2218 void CompilerDriver::Verify(jobject class_loader, function in class:art::CompilerDriver
2317 TimingLogger::ScopedTiming t("Verify Dex File", timings);
2381 TimingLogger::ScopedTiming t("Verify Dex File", timings);
/art/runtime/verifier/
H A Dmethod_verifier.h153 // Verify a class. Returns "kNoFailure" on success.
234 bool Verify() SHARED_REQUIRES(Locks::mutator_lock_);
330 // Verify all direct or virtual methods of a class. The method assumes that the iterator is
483 // Verify an array data table. "cur_offset" is the offset of the fill-array-data instruction.
486 // Verify that the target of a branch instruction is valid. We don't expect code to jump directly
493 // Verify a switch table. "cur_offset" is the offset of the switch instruction.
644 * Verify the arguments to a method. We're executing in "method", making
684 * Verify that the target instruction is not "move-exception". It's important that the only way
691 * Verify that the target instruction is not "move-result". It is important that we cannot
699 * Verify tha
[all...]
H A Dmethod_verifier.cc383 if (verifier.Verify()) {
483 verifier->Verify();
607 Verify();
638 bool success = Verify();
678 bool success = Verify();
691 bool MethodVerifier::Verify() { function in class:art::MethodVerifier
4298 // Verify each register. If "arg_count" is bad, VerifyRegisterType() will run off the end of
4924 // Verify that the monitor stack is empty on return.
/art/runtime/gc/
H A Dheap.cc108 // Verify objet has a small allocation stack size since searching the allocation stack is slow.
2853 // Verify a reference from an object.
2908 // Verify that the reference is live.
3003 // Verify all references within an object, for use with HeapBitmap::Visit.
3089 // Verify objects in the allocation stack since these will be objects which were:
3095 // Verify the roots:
3361 mod_union_table->Verify();
3446 space->AsRosAllocSpace()->Verify();

Completed in 286 milliseconds