#ifndef V8_HEAP_PRETENURING_HANDLER_INL_H_
#define V8_HEAP_PRETENURING_HANDLER_INL_H_
#include "src/base/sanitizer/msan.h"
#include "src/heap/mutable-page-metadata.h"
#include "src/heap/new-spaces.h"
#include "src/heap/pretenuring-handler.h"
#include "src/heap/spaces.h"
#include "src/objects/allocation-site-inl.h"
#include "src/objects/allocation-site.h"
namespace v8 {
namespace internal {
void PretenuringHandler::UpdateAllocationSite(
Tagged<Map> map, Tagged<HeapObject> object,
PretenuringFeedbackMap* pretenuring_feedback) { … }
template <PretenuringHandler::FindMementoMode mode>
Tagged<AllocationMemento> PretenuringHandler::FindAllocationMemento(
Tagged<Map> map, Tagged<HeapObject> object) { … }
}
}
#endif