summaryrefslogtreecommitdiff
path: root/deps/v8/src/compiler/turboshaft/tag-untag-lowering-phase.h
blob: c132cda4ac8f24f07e1fd5f36f0e6fe405477ed9 (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_TAG_UNTAG_LOWERING_PHASE_H_
#define V8_COMPILER_TURBOSHAFT_TAG_UNTAG_LOWERING_PHASE_H_

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

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

struct TagUntagLoweringPhase {
  DECL_TURBOSHAFT_PHASE_CONSTANTS(TagUntagLowering)

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

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

#endif  // V8_COMPILER_TURBOSHAFT_TAG_UNTAG_LOWERING_PHASE_H_