[InstCombine] Signed saturation patterns
[llvm-core.git] / lib / Target / X86 / X86MacroFusion.h
blobd4ae54f657a5bf56dfd2d87de625e79f4e59d902
1 //===- X86MacroFusion.h - X86 Macro Fusion --------------------------------===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 /// \file This file contains the X86 definition of the DAG scheduling mutation
10 /// to pair instructions back to back.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_LIB_TARGET_X86_X86MACROFUSION_H
15 #define LLVM_LIB_TARGET_X86_X86MACROFUSION_H
17 #include "llvm/CodeGen/MachineScheduler.h"
19 namespace llvm {
21 /// Note that you have to add:
22 /// DAG.addMutation(createX86MacroFusionDAGMutation());
23 /// to X86PassConfig::createMachineScheduler() to have an effect.
24 std::unique_ptr<ScheduleDAGMutation>
25 createX86MacroFusionDAGMutation();
27 } // end namespace llvm
29 #endif