1 //===-- MipsBaseInfo.h - Top level definitions for MIPS MC ------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 // This file contains small standalone helper functions and enum definitions for
10 // the Mips target useful for the compiler back-end and the MC libraries.
12 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_MIPS_MCTARGETDESC_MIPSBASEINFO_H
14 #define LLVM_LIB_TARGET_MIPS_MCTARGETDESC_MIPSBASEINFO_H
16 #include "MipsFixupKinds.h"
17 #include "MipsMCTargetDesc.h"
18 #include "llvm/MC/MCExpr.h"
19 #include "llvm/Support/DataTypes.h"
20 #include "llvm/Support/ErrorHandling.h"
24 /// MipsII - This namespace holds all of the target specific flags that
25 /// instruction info tracks.
28 /// Target Operand Flag enum.
30 //===------------------------------------------------------------------===//
31 // Mips Specific MachineOperand flags.
35 /// MO_GOT - Represents the offset into the global offset table at which
36 /// the address the relocation entry symbol resides during execution.
39 /// MO_GOT_CALL - Represents the offset into the global offset table at
40 /// which the address of a call site relocation entry symbol resides
41 /// during execution. This is different from the above since this flag
42 /// can only be present in call instructions.
45 /// MO_GPREL - Represents the offset from the current gp value to be used
46 /// for the relocatable object file being produced.
49 /// MO_ABS_HI/LO - Represents the hi or low part of an absolute symbol
54 /// MO_TLSGD - Represents the offset into the global offset table at which
55 // the module ID and TSL block offset reside during execution (General
59 /// MO_TLSLDM - Represents the offset into the global offset table at which
60 // the module ID and TSL block offset reside during execution (Local
66 /// MO_GOTTPREL - Represents the offset from the thread pointer (Initial
70 /// MO_TPREL_HI/LO - Represents the hi and low part of the offset from
71 // the thread pointer (Local Exec TLS).
82 /// MO_HIGHER/HIGHEST - Represents the highest or higher half word of a
83 /// 64-bit symbol address.
87 /// MO_GOT_HI16/LO16, MO_CALL_HI16/LO16 - Relocations used for large GOTs.
93 /// Helper operand used to generate R_MIPS_JALR
98 //===------------------------------------------------------------------===//
99 // Instruction encodings. These are the standard/most common forms for
100 // Mips instructions.
103 // Pseudo - This represents an instruction that is a pseudo instruction
104 // or one that has not been implemented yet. It is illegal to code generate
105 // it, but tolerated for intermediate implementation stages.
108 /// FrmR - This form is for instructions of the format R.
110 /// FrmI - This form is for instructions of the format I.
112 /// FrmJ - This form is for instructions of the format J.
114 /// FrmFR - This form is for instructions of the format FR.
116 /// FrmFI - This form is for instructions of the format FI.
118 /// FrmOther - This form is for instructions that have no specific format.
122 /// IsCTI - Instruction is a Control Transfer Instruction.
124 /// HasForbiddenSlot - Instruction has a forbidden slot.
125 HasForbiddenSlot
= 1 << 5,
126 /// IsPCRelativeLoad - A Load instruction with implicit source register
127 /// ($pc) with explicit offset and destination register
128 IsPCRelativeLoad
= 1 << 6,
129 /// HasFCCRegOperand - Instruction uses an $fcc<x> register.
130 HasFCCRegOperand
= 1 << 7