summaryrefslogtreecommitdiff
path: root/deps/v8/src/compiler/turboshaft/tag-untag-lowering-phase.cc
blob: b927e69dd90b36a16bdc62391df6fe5403f652ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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.

#include "src/compiler/turboshaft/tag-untag-lowering-phase.h"

#include "src/compiler/turboshaft/tag-untag-lowering-reducer.h"

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

void TagUntagLoweringPhase::Run(PipelineData* data, Zone* temp_zone) {
  turboshaft::OptimizationPhase<turboshaft::TagUntagLoweringReducer>::Run(
      data->isolate(), &data->graph(), temp_zone, data->node_origins());
}

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