LLVM 17.0.0git
RISCVMatInt.h
Go to the documentation of this file.
1//===- RISCVMatInt.h - Immediate materialisation ---------------*- 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
9#ifndef LLVM_LIB_TARGET_RISCV_MCTARGETDESC_MATINT_H
10#define LLVM_LIB_TARGET_RISCV_MCTARGETDESC_MATINT_H
11
14#include <cstdint>
15
16namespace llvm {
17class APInt;
18
19namespace RISCVMatInt {
20
22 RegImm, // ADDI/ADDIW/SLLI/SRLI/BSETI/BCLRI
23 Imm, // LUI
24 RegReg, // SH1ADD/SH2ADD/SH3ADD
25 RegX0, // ADD_UW
26};
27
28class Inst {
29 unsigned Opc;
30 int32_t Imm; // The largest value we need to store is 20 bits.
31
32public:
33 Inst(unsigned Opc, int64_t I) : Opc(Opc), Imm(I) {
34 assert(I == Imm && "truncated");
35 }
36
37 unsigned getOpcode() const { return Opc; }
38 int64_t getImm() const { return Imm; }
39
40 OpndKind getOpndKind() const;
41};
43
44// Helper to generate an instruction sequence that will materialise the given
45// immediate value into a register. A sequence of instructions represented by a
46// simple struct is produced rather than directly emitting the instructions in
47// order to allow this helper to be used from both the MC layer and during
48// instruction selection.
49InstSeq generateInstSeq(int64_t Val, const FeatureBitset &ActiveFeatures);
50
51// Helper to estimate the number of instructions required to materialise the
52// given immediate value into a register. This estimate does not account for
53// `Val` possibly fitting into an immediate, and so may over-estimate.
54//
55// This will attempt to produce instructions to materialise `Val` as an
56// `Size`-bit immediate.
57//
58// If CompressionCost is true it will use a different cost calculation if RVC is
59// enabled. This should be used to compare two different sequences to determine
60// which is more compressible.
61int getIntMatCost(const APInt &Val, unsigned Size,
62 const FeatureBitset &ActiveFeatures,
63 bool CompressionCost = false);
64} // namespace RISCVMatInt
65} // namespace llvm
66#endif
uint64_t Size
#define I(x, y, z)
Definition: MD5.cpp:58
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file defines the SmallVector class.
Class for arbitrary precision integers.
Definition: APInt.h:75
Container class for subtarget features.
Inst(unsigned Opc, int64_t I)
Definition: RISCVMatInt.h:33
int64_t getImm() const
Definition: RISCVMatInt.h:38
unsigned getOpcode() const
Definition: RISCVMatInt.h:37
OpndKind getOpndKind() const
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1200
int getIntMatCost(const APInt &Val, unsigned Size, const FeatureBitset &ActiveFeatures, bool CompressionCost)
InstSeq generateInstSeq(int64_t Val, const FeatureBitset &ActiveFeatures)
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18