blob: bd8e389639f5d897f3f9589cee21ce2bfa20569d [file] [log] [blame]
Tom Stellard75aadc22012-12-11 21:25:42 +00001//===-- AMDGPUInstrInfo.h - AMDGPU Instruction Information ------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10/// \file
11/// \brief Contains the definition of a TargetInstrInfo class that is common
12/// to all AMD GPUs.
13//
14//===----------------------------------------------------------------------===//
15
Matt Arsenault6b6a2c32016-03-11 08:00:27 +000016#ifndef LLVM_LIB_TARGET_AMDGPU_AMDGPUINSTRINFO_H
17#define LLVM_LIB_TARGET_AMDGPU_AMDGPUINSTRINFO_H
Tom Stellard75aadc22012-12-11 21:25:42 +000018
Tom Stellard75aadc22012-12-11 21:25:42 +000019#include "llvm/Target/TargetInstrInfo.h"
Sam Koltona3ec5c12016-10-07 14:46:06 +000020#include "Utils/AMDGPUBaseInfo.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000021
22#define GET_INSTRINFO_HEADER
23#define GET_INSTRINFO_ENUM
24#include "AMDGPUGenInstrInfo.inc"
25
Tom Stellard75aadc22012-12-11 21:25:42 +000026namespace llvm {
27
Tom Stellard2e59a452014-06-13 01:32:00 +000028class AMDGPUSubtarget;
Tom Stellard75aadc22012-12-11 21:25:42 +000029class MachineFunction;
30class MachineInstr;
31class MachineInstrBuilder;
32
33class AMDGPUInstrInfo : public AMDGPUGenInstrInfo {
34private:
Tom Stellard2e59a452014-06-13 01:32:00 +000035 const AMDGPUSubtarget &ST;
Matt Arsenault43e92fe2016-06-24 06:30:11 +000036
37 virtual void anchor();
38
Tom Stellard75aadc22012-12-11 21:25:42 +000039public:
Tom Stellard2e59a452014-06-13 01:32:00 +000040 explicit AMDGPUInstrInfo(const AMDGPUSubtarget &st);
Tom Stellard75aadc22012-12-11 21:25:42 +000041
Tom Stellard75aadc22012-12-11 21:25:42 +000042 bool shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
43 int64_t Offset1, int64_t Offset2,
Craig Topper5656db42014-04-29 07:57:24 +000044 unsigned NumLoads) const override;
Tom Stellard75aadc22012-12-11 21:25:42 +000045
Marek Olsaka93603d2015-01-15 18:42:51 +000046 /// \brief Return a target-specific opcode if Opcode is a pseudo instruction.
47 /// Return -1 if the target-specific opcode for the pseudo instruction does
48 /// not exist. If Opcode is not a pseudo instruction, this is identity.
49 int pseudoToMCOpcode(int Opcode) const;
50
Tom Stellard682bfbc2013-10-10 17:11:24 +000051 /// \brief Given a MIMG \p Opcode that writes all 4 channels, return the
52 /// equivalent opcode that writes \p Channels Channels.
53 int getMaskedMIMGOp(uint16_t Opcode, unsigned Channels) const;
Tom Stellard75aadc22012-12-11 21:25:42 +000054};
Alexander Kornienkof00654e2015-06-23 09:49:53 +000055} // End llvm namespace
Tom Stellard75aadc22012-12-11 21:25:42 +000056
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000057#endif