v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
code-elimination-and-simplification-phase.cc
Go to the documentation of this file.
1// Copyright 2023 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
6
15
16#if V8_ENABLE_WEBASSEMBLY
18#endif
19
21
23 Zone* temp_zone) {
24 UnparkedScopeIfNeeded scope(data->broker(), DEBUG_BOOL);
25
27#if V8_ENABLE_WEBASSEMBLY
29#endif
31 // We make sure that DuplicationOptimizationReducer runs after
32 // LoadStoreSimplificationReducer, so that it can optimize
33 // Loads/Stores produced by LoadStoreSimplificationReducer
34 // (which, for simplificy, doesn't use the Assembler helper
35 // methods, but only calls Next::ReduceLoad/Store).
38 ValueNumberingReducer>::Run(data, temp_zone);
39}
40
41} // namespace v8::internal::compiler::turboshaft
#define DEBUG_BOOL
Definition globals.h:87