]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Target/AArch64/AArch64MacroFusion.h
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / Target / AArch64 / AArch64MacroFusion.h
1 //===- AArch64MacroFusion.h - AArch64 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 AArch64 definition of the DAG scheduling
10 /// mutation to pair instructions back to back.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/CodeGen/MachineScheduler.h"
15
16 namespace llvm {
17
18 /// Note that you have to add:
19 ///   DAG.addMutation(createAArch64MacroFusionDAGMutation());
20 /// to AArch64PassConfig::createMachineScheduler() to have an effect.
21 std::unique_ptr<ScheduleDAGMutation> createAArch64MacroFusionDAGMutation();
22
23 } // llvm