#include "src/compiler/turboshaft/memory-optimization-reducer.h"
#include <optional>
#include "src/codegen/interface-descriptors-inl.h"
#include "src/compiler/linkage.h"
#include "src/roots/roots-inl.h"
namespace v8::internal::compiler::turboshaft {
const TSCallDescriptor* CreateAllocateBuiltinDescriptor(Zone* zone,
Isolate* isolate) { … }
void MemoryAnalyzer::Run() { … }
void MemoryAnalyzer::Process(const Operation& op) { … }
void MemoryAnalyzer::ProcessBlockTerminator(const Operation& op) { … }
void MemoryAnalyzer::ProcessAllocation(const AllocateOp& alloc) { … }
void MemoryAnalyzer::ProcessStore(const StoreOp& store) { … }
void MemoryAnalyzer::MergeCurrentStateIntoSuccessor(const Block* successor) { … }
}