#include "src/heap/code-stats.h"
#include "src/codegen/code-comments.h"
#include "src/codegen/reloc-info.h"
#include "src/heap/heap-inl.h"
#include "src/heap/large-spaces.h"
#include "src/heap/paged-spaces-inl.h"
#include "src/objects/objects-inl.h"
namespace v8 {
namespace internal {
void CodeStatistics::RecordCodeAndMetadataStatistics(Tagged<HeapObject> object,
Isolate* isolate) { … }
void CodeStatistics::ResetCodeAndMetadataStatistics(Isolate* isolate) { … }
void CodeStatistics::CollectCodeStatistics(PagedSpace* space,
Isolate* isolate) { … }
void CodeStatistics::CollectCodeStatistics(OldLargeObjectSpace* space,
Isolate* isolate) { … }
#ifdef DEBUG
void CodeStatistics::ReportCodeStatistics(Isolate* isolate) { … }
void CodeStatistics::ResetCodeStatistics(Isolate* isolate) { … }
void CodeStatistics::EnterComment(Isolate* isolate, const char* comment,
int delta) { … }
void CodeStatistics::CollectCommentStatistics(Isolate* isolate,
CodeCommentsIterator* cit) { … }
void CodeStatistics::CollectCodeCommentStatistics(Tagged<AbstractCode> obj,
Isolate* isolate) { … }
#endif
}
}