chromium/v8/src/heap/zapping.cc

// Copyright 2023 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/heap/zapping.h"

#include "src/base/memory.h"
#include "src/heap/heap.h"
#include "src/heap/memory-chunk-metadata-inl.h"
#include "src/objects/slots-inl.h"

namespace v8::internal::heap {

void ZapCodeBlock(Address start, int size_in_bytes) {}

void ZapBlock(Address start, size_t size, uintptr_t zap_value) {}

}  // namespace v8::internal::heap