LLVM 24.0.0git
X86MacroFusion.cpp
Go to the documentation of this file.
1//===- X86MacroFusion.cpp - 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 implementation of the DAG scheduling
10/// mutation to pair instructions back to back.
11//
12//===----------------------------------------------------------------------===//
13
14#include "X86MacroFusion.h"
16#include "X86Subtarget.h"
20
21using namespace llvm;
22
26
31
32/// Check if the instr pair, FirstMI and SecondMI, should be fused
33/// together. Given SecondMI, when FirstMI is unspecified, then check if
34/// SecondMI may be part of a fused pair at all.
36 const TargetSubtargetInfo &TSI,
37 const MachineInstr *FirstMI,
38 const MachineInstr &SecondMI,
39 const SDep *Dep) {
40 if (isNonDataDep(Dep))
41 return false;
42 const X86Subtarget &ST = static_cast<const X86Subtarget &>(TSI);
43
44 // Check if this processor supports any kind of fusion.
45 if (!(ST.hasBranchFusion() || ST.hasMacroFusion()))
46 return false;
47
48 const X86::SecondMacroFusionInstKind BranchKind = classifySecond(SecondMI);
49
51 return false; // Second cannot be fused with anything.
52
53 if (FirstMI == nullptr)
54 return true; // We're only checking whether Second can be fused at all.
55
56 const X86::FirstMacroFusionInstKind TestKind = classifyFirst(*FirstMI);
57
58 if (ST.hasBranchFusion()) {
59 // Branch fusion can merge CMP and TEST with all conditional jumps.
60 return (TestKind == X86::FirstMacroFusionInstKind::Cmp ||
62 }
63
64 if (ST.hasMacroFusion()) {
65 return X86::isMacroFused(TestKind, BranchKind);
66 }
67
68 llvm_unreachable("unknown fusion type");
69}
70
71namespace llvm {
72
73std::unique_ptr<ScheduleDAGMutation> createX86MacroFusionDAGMutation() {
75 /*BranchOnly=*/true);
76}
77
78} // end namespace llvm
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
static X86::SecondMacroFusionInstKind classifySecond(const MachineInstr &MI)
static X86::FirstMacroFusionInstKind classifyFirst(const MachineInstr &MI)
Representation of each machine instruction.
Scheduling dependency.
Definition ScheduleDAG.h:52
TargetInstrInfo - Interface to description of machine instruction set.
TargetSubtargetInfo - Generic base class for all target subtargets.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
FirstMacroFusionInstKind classifyFirstOpcodeInMacroFusion(unsigned Opcode)
CondCode getCondFromBranch(const MachineInstr &MI)
SecondMacroFusionInstKind
FirstMacroFusionInstKind
SecondMacroFusionInstKind classifySecondCondCodeInMacroFusion(X86::CondCode CC)
bool isMacroFused(FirstMacroFusionInstKind FirstKind, SecondMacroFusionInstKind SecondKind)
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI std::unique_ptr< ScheduleDAGMutation > createMacroFusionDAGMutation(ArrayRef< MacroFusionPredTy > Predicates, bool BranchOnly=false)
Create a DAG scheduling mutation to pair instructions back to back for instructions that benefit acco...
std::unique_ptr< ScheduleDAGMutation > createX86MacroFusionDAGMutation()
Note that you have to add: DAG.addMutation(createX86MacroFusionDAGMutation()); to X86TargetMachine::c...
static bool shouldScheduleAdjacent(const TargetInstrInfo &TII, const TargetSubtargetInfo &TSI, const MachineInstr *FirstMI, const MachineInstr &SecondMI, const SDep *Dep)
Check if the instr pair, FirstMI and SecondMI, should be fused together.
LLVM_ABI bool isNonDataDep(const SDep *Dep)
Returns true if Dep is a non-null non-data dependency.