blob: a122fd612ecedb778f8f4f1ce4a5d8e3700ce31d [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
Yaxun Liu1a14bfa2017-03-27 14:04:01 +000019#include "AMDGPU.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000020#include "llvm/Target/TargetInstrInfo.h"
Sam Koltona3ec5c12016-10-07 14:46:06 +000021#include "Utils/AMDGPUBaseInfo.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000022
23#define GET_INSTRINFO_HEADER
24#define GET_INSTRINFO_ENUM
25#include "AMDGPUGenInstrInfo.inc"
26
Tom Stellard75aadc22012-12-11 21:25:42 +000027namespace llvm {
28
Tom Stellard2e59a452014-06-13 01:32:00 +000029class AMDGPUSubtarget;
Tom Stellard75aadc22012-12-11 21:25:42 +000030class MachineFunction;
31class MachineInstr;
32class MachineInstrBuilder;
33
34class AMDGPUInstrInfo : public AMDGPUGenInstrInfo {
35private:
Tom Stellard2e59a452014-06-13 01:32:00 +000036 const AMDGPUSubtarget &ST;
Matt Arsenault43e92fe2016-06-24 06:30:11 +000037
38 virtual void anchor();
Yaxun Liu1a14bfa2017-03-27 14:04:01 +000039protected:
40 AMDGPUAS AMDGPUASI;
Matt Arsenault43e92fe2016-06-24 06:30:11 +000041
Tom Stellard75aadc22012-12-11 21:25:42 +000042public:
Tom Stellard2e59a452014-06-13 01:32:00 +000043 explicit AMDGPUInstrInfo(const AMDGPUSubtarget &st);
Tom Stellard75aadc22012-12-11 21:25:42 +000044
Tom Stellard75aadc22012-12-11 21:25:42 +000045 bool shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
46 int64_t Offset1, int64_t Offset2,
Craig Topper5656db42014-04-29 07:57:24 +000047 unsigned NumLoads) const override;
Tom Stellard75aadc22012-12-11 21:25:42 +000048
Marek Olsaka93603d2015-01-15 18:42:51 +000049 /// \brief Return a target-specific opcode if Opcode is a pseudo instruction.
50 /// Return -1 if the target-specific opcode for the pseudo instruction does
51 /// not exist. If Opcode is not a pseudo instruction, this is identity.
52 int pseudoToMCOpcode(int Opcode) const;
53
Tom Stellard682bfbc2013-10-10 17:11:24 +000054 /// \brief Given a MIMG \p Opcode that writes all 4 channels, return the
55 /// equivalent opcode that writes \p Channels Channels.
56 int getMaskedMIMGOp(uint16_t Opcode, unsigned Channels) const;
Tom Stellard75aadc22012-12-11 21:25:42 +000057};
Alexander Kornienkof00654e2015-06-23 09:49:53 +000058} // End llvm namespace
Tom Stellard75aadc22012-12-11 21:25:42 +000059
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000060#endif