| Matt Arsenault | 9aa45f0 | 2017-07-06 20:57:05 +0000 | [diff] [blame] | 1 | //===- AMDGPUMacroFusion.h - AMDGPU Macro Fusion ----------------*- C++ -*-===// |
| 2 | // |
| Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| Matt Arsenault | 9aa45f0 | 2017-07-06 20:57:05 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #include "llvm/CodeGen/MachineScheduler.h" |
| 10 | |
| 11 | namespace llvm { |
| 12 | |
| 13 | /// Note that you have to add: |
| 14 | /// DAG.addMutation(createAMDGPUMacroFusionDAGMutation()); |
| 15 | /// to AMDGPUPassConfig::createMachineScheduler() to have an effect. |
| 16 | std::unique_ptr<ScheduleDAGMutation> createAMDGPUMacroFusionDAGMutation(); |
| 17 | |
| 18 | } // llvm |