#ifndef V8_HEAP_EVACUATION_VERIFIER_INL_H_
#define V8_HEAP_EVACUATION_VERIFIER_INL_H_
#include "src/heap/evacuation-verifier.h"
#include "src/heap/heap-inl.h"
#include "src/heap/mark-compact.h"
namespace v8 {
namespace internal {
#ifdef VERIFY_HEAP
void EvacuationVerifier::VerifyHeapObjectImpl(Tagged<HeapObject> heap_object) { … }
bool EvacuationVerifier::ShouldVerifyObject(Tagged<HeapObject> heap_object) { … }
template <typename TSlot>
void EvacuationVerifier::VerifyPointersImpl(TSlot start, TSlot end) { … }
#endif
}
}
#endif