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

/art/runtime/gc/accounting/
H A Dmod_union_table.h85 virtual void Verify() EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) = 0;
126 void Verify() OVERRIDE
165 virtual void Verify() OVERRIDE {}
H A Dmod_union_table_test.cc207 // Verify that all the other references were visited.
219 table->Verify();
221 // Verify that dump doesn't crash.
238 // Verify that the dump still works.
H A Dmod_union_table.cc262 void ModUnionTableReferenceCache::Verify() { function in class:art::gc::accounting::ModUnionTableReferenceCache
/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.def106 RUNTIME_OPTIONS_KEY (bool, Verify, true)
H A Dquick_exception_handler.cc211 bool verifier_success = verifier.Verify();
H A Ddex_file_verifier.cc127 bool DexFileVerifier::Verify(const DexFile* dex_file, const uint8_t* begin, size_t size, function in class:art::DexFileVerifier
130 if (!verifier->Verify()) {
780 // try_items are 4-byte aligned. Verify the spacer is 0.
2109 bool DexFileVerifier::Verify() { function in class:art::DexFileVerifier
H A Dparsed_options.cc251 .IntoKey(M::Verify)
H A Ddex_file.cc251 if (verify && !DexFileVerifier::Verify(dex_file.get(), dex_file->Begin(), dex_file->Size(),
315 if (!DexFileVerifier::Verify(dex_file.get(), dex_file->Begin(), dex_file->Size(),
H A Druntime.cc836 verify_ = runtime_options.GetOrDefault(Opt::Verify);
/art/runtime/base/
H A Dtiming_logger.cc236 void TimingLogger::Verify() { function in class:art::TimingLogger
249 Verify();
H A Dtiming_logger.h136 // Verify that all open timings have related closed timings.
137 void Verify();
H A Dhash_set_test.cc135 ASSERT_EQ(hash_set.Verify(), 0U);
H A Dhash_set.h369 size_t Verify() { function in class:art::HashSet
/art/runtime/gc/space/
H A Drosalloc_space.h137 void Verify() EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_) {
138 rosalloc_->Verify();
/art/cmdline/
H A Dcmdline_parser_test.cc196 EXPECT_SINGLE_PARSE_VALUE(false, "-Xverify:none", M::Verify);
197 EXPECT_SINGLE_PARSE_VALUE(true, "-Xverify:remote", M::Verify);
198 EXPECT_SINGLE_PARSE_VALUE(true, "-Xverify:all", M::Verify);
/art/runtime/gc/allocator/
H A Drosalloc.h255 // Verify for debugging.
256 void Verify(Thread* self, RosAlloc* rosalloc, bool running_on_valgrind)
649 // Verify for debugging.
650 void Verify() EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
H A Drosalloc.cc1889 void RosAlloc::Verify() { function in class:art::gc::allocator::RosAlloc
2012 // Call Verify() here for the lock order.
2014 run->Verify(self, this, running_on_valgrind_);
2018 void RosAlloc::Run::Verify(Thread* self, RosAlloc* rosalloc, bool running_on_valgrind) { function in class:art::gc::allocator::RosAlloc::Run
/art/runtime/verifier/
H A Dmethod_verifier.h139 /* Verify a class. Returns "kNoFailure" on success. */
226 bool Verify() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
426 // Verify an array data table. "cur_offset" is the offset of the fill-array-data instruction.
429 // Verify that the target of a branch instruction is valid. We don't expect code to jump directly
436 // Verify a switch table. "cur_offset" is the offset of the switch instruction.
587 * Verify the arguments to a method. We're executing in "method", making
629 * Verify that the target instruction is not "move-exception". It's important that the only way
636 * Verify that the target instruction is not "move-result". It is important that we cannot
644 * Verify that the target instruction is not "move-result" or "move-exception". This is to
H A Dmethod_verifier.cc318 if (verifier.Verify()) {
363 verifier->Verify();
465 Verify();
485 bool success = Verify();
514 bool success = Verify();
539 Verify();
543 bool MethodVerifier::Verify() { function in class:art::verifier::MethodVerifier
3697 // Verify each register. If "arg_count" is bad, VerifyRegisterType() will run off the end of
4261 // Verify that the monitor stack is empty on return.
/art/compiler/driver/
H A Dcompiler_driver.h567 void Verify(jobject class_loader, const std::vector<const DexFile*>& dex_files,
H A Dcompiler_driver.cc516 // Verify at runtime shouldn't dex to dex since we didn't resolve of verify.
637 VLOG(compiler) << "Verify none mode specified, skipping verification.";
645 Verify(class_loader, dex_files, thread_pool, timings);
646 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
1879 void CompilerDriver::Verify(jobject class_loader, const std::vector<const DexFile*>& dex_files, function in class:art::CompilerDriver
1946 TimingLogger::ScopedTiming t("Verify Dex File", timings);
1996 TimingLogger::ScopedTiming t("Verify Dex File", timings);
/art/runtime/gc/
H A Dheap.cc109 // Verify objet has a small allocation stack size since searching the allocation stack is slow.
2595 // Verify a reference from an object.
2639 // Verify that the reference is live.
2734 // Verify all references within an object, for use with HeapBitmap::Visit.
2822 // Verify objects in the allocation stack since these will be objects which were:
2828 // Verify the roots:
3080 mod_union_table->Verify();
3166 space->AsRosAllocSpace()->Verify();

Completed in 314 milliseconds