summaryrefslogtreecommitdiff
path: root/deps/v8/src/compiler/turboshaft/machine-lowering-phase.h
blob: 468e627f526910243ee7c6512929dd72781b70e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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.

#ifndef V8_COMPILER_TURBOSHAFT_MACHINE_LOWERING_PHASE_H_
#define V8_COMPILER_TURBOSHAFT_MACHINE_LOWERING_PHASE_H_

#include "src/compiler/turboshaft/phase.h"

namespace v8::internal::compiler::turboshaft {

struct MachineLoweringPhase {
  DECL_TURBOSHAFT_PHASE_CONSTANTS(MachineLowering)

  void Run(PipelineData* data, Zone* temp_zone);
};

}  // namespace v8::internal::compiler::turboshaft

#endif  // V8_COMPILER_TURBOSHAFT_MACHINE_LOWERING_PHASE_H_