LLVM 17.0.0git
X86CustomBehaviour.h
Go to the documentation of this file.
1//===-------------------- X86CustomBehaviour.h ------------------*-C++ -* -===//
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/// \file
9///
10/// This file defines the X86CustomBehaviour class which inherits from
11/// CustomBehaviour. This class is used by the tool llvm-mca to enforce
12/// target specific behaviour that is not expressed well enough in the
13/// scheduling model for mca to enforce it automatically.
14///
15//===----------------------------------------------------------------------===//
16
17#ifndef LLVM_LIB_TARGET_X86_MCA_X86CUSTOMBEHAVIOUR_H
18#define LLVM_LIB_TARGET_X86_MCA_X86CUSTOMBEHAVIOUR_H
19
23
24namespace llvm {
25namespace mca {
26
28 /// Called within X86InstrPostProcess to specify certain instructions
29 /// as load and store barriers.
30 void setMemBarriers(std::unique_ptr<Instruction> &Inst, const MCInst &MCI);
31
32public:
35
37
38 void postProcessInstruction(std::unique_ptr<Instruction> &Inst,
39 const MCInst &MCI) override;
40};
41
42} // namespace mca
43} // namespace llvm
44
45#endif
This file defines the base class CustomBehaviour which can be inherited from by specific targets (ex.
This file defines the SmallVector class.
Instances of this class represent a single low-level machine instruction.
Definition: MCInst.h:184
Interface to description of machine instruction set.
Definition: MCInstrInfo.h:26
Generic base class for all target subtargets.
Class which can be overriden by targets to modify the mca::Instruction objects before the pipeline st...
const MCSubtargetInfo & STI
const MCInstrInfo & MCII
void postProcessInstruction(std::unique_ptr< Instruction > &Inst, const MCInst &MCI) override
This method can be overriden by targets to modify the mca::Instruction object after it has been lower...
X86InstrPostProcess(const MCSubtargetInfo &STI, const MCInstrInfo &MCII)
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18