v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
block-instrumentation-phase.cc
Go to the documentation of this file.
1
// Copyright 2024 the V8 project authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
4
5
#include "
src/compiler/turboshaft/block-instrumentation-phase.h
"
6
7
#include "
src/compiler/turboshaft/block-instrumentation-reducer.h
"
8
#include "
src/compiler/turboshaft/copying-phase.h
"
9
#include "
src/compiler/turboshaft/load-store-simplification-reducer.h
"
10
#include "
src/compiler/turboshaft/value-numbering-reducer.h
"
11
12
namespace
v8::internal::compiler::turboshaft
{
13
14
void
BlockInstrumentationPhase::Run
(
PipelineData
* data,
Zone
* temp_zone) {
15
// BlockInstrumentationReducer introduces loads & stores that are not
16
// normalized. We thus always add LoadStoreSimplificationReducer to the stack
17
// to make sure that those loads & stores get normalized.
18
CopyingPhase
<
BlockInstrumentationReducer
,
LoadStoreSimplificationReducer
,
19
ValueNumberingReducer
>
::Run
(data, temp_zone);
20
}
21
22
}
// namespace v8::internal::compiler::turboshaft
block-instrumentation-phase.h
block-instrumentation-reducer.h
v8::internal::Zone
Definition
zone.h:43
v8::internal::compiler::turboshaft::BlockInstrumentationReducer
Definition
block-instrumentation-reducer.h:24
v8::internal::compiler::turboshaft::CopyingPhase
Definition
copying-phase.h:1065
v8::internal::compiler::turboshaft::LoadStoreSimplificationReducer
Definition
load-store-simplification-reducer.h:61
v8::internal::compiler::turboshaft::PipelineData
Definition
phase.h:177
v8::internal::compiler::turboshaft::ValueNumberingReducer
Definition
value-numbering-reducer.h:107
copying-phase.h
load-store-simplification-reducer.h
v8::internal::compiler::turboshaft
Definition
builtins.h:33
v8::internal::compiler::turboshaft::BlockInstrumentationPhase::Run
void Run(PipelineData *data, Zone *temp_zone)
Definition
block-instrumentation-phase.cc:14
value-numbering-reducer.h
src
compiler
turboshaft
block-instrumentation-phase.cc
Generated on Sun Apr 6 2025 21:08:52 for v8 by
1.12.0