2009-08-27 09:57:12 +02:00
|
|
|
//===- lib/MC/MCInst.cpp - MCInst implementation --------------------------===//
|
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2009-08-27 09:57:12 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/MC/MCInst.h"
|
2018-04-30 16:59:11 +02:00
|
|
|
#include "llvm/Config/llvm-config.h"
|
2009-08-31 10:08:38 +02:00
|
|
|
#include "llvm/MC/MCExpr.h"
|
2010-03-22 22:49:34 +01:00
|
|
|
#include "llvm/MC/MCInstPrinter.h"
|
[RISCV] Tablegen-driven Instruction Compression.
Summary:
This patch implements a tablegen-driven Instruction Compression
mechanism for generating RISCV compressed instructions
(C Extension) from the expanded instruction form.
This tablegen backend processes CompressPat declarations in a
td file and generates all the compile-time and runtime checks
required to validate the declarations, validate the input
operands and generate correct instructions.
The checks include validating register operands, immediate
operands, fixed register operands and fixed immediate operands.
Example:
class CompressPat<dag input, dag output> {
dag Input = input;
dag Output = output;
list<Predicate> Predicates = [];
}
let Predicates = [HasStdExtC] in {
def : CompressPat<(ADD GPRNoX0:$rs1, GPRNoX0:$rs1, GPRNoX0:$rs2),
(C_ADD GPRNoX0:$rs1, GPRNoX0:$rs2)>;
}
The result is an auto-generated header file
'RISCVGenCompressEmitter.inc' which exports two functions for
compressing/uncompressing MCInst instructions, plus
some helper functions:
bool compressInst(MCInst& OutInst, const MCInst &MI,
const MCSubtargetInfo &STI,
MCContext &Context);
bool uncompressInst(MCInst& OutInst, const MCInst &MI,
const MCRegisterInfo &MRI,
const MCSubtargetInfo &STI);
The clients that include this auto-generated header file and
invoke these functions can compress an instruction before emitting
it, in the target-specific ASM or ELF streamer, or can uncompress
an instruction before printing it, when the expanded instruction
format aliases is favored.
The following clients were added to implement compression\uncompression
for RISCV:
1) RISCVAsmParser::MatchAndEmitInstruction:
Inserted a call to compressInst() to compresses instructions
parsed by llvm-mc coming from an ASM input.
2) RISCVAsmPrinter::EmitInstruction:
Inserted a call to compressInst() to compress instructions that
were lowered from Machine Instructions (MachineInstr).
3) RVInstPrinter::printInst:
Inserted a call to uncompressInst() to print the expanded
version of the instruction instead of the compressed one (e.g,
add s0, s0, a5 instead of c.add s0, a5) when -riscv-no-aliases
is not passed.
This patch squashes D45119, D42780 and D41932. It was reviewed in smaller patches by
asb, efriedma, apazos and mgrang.
Reviewers: asb, efriedma, apazos, llvm-commits, sabuasal
Reviewed By: sabuasal
Subscribers: mgorny, eraman, asb, rbar, johnrusso, simoncook, jordy.potman.lists, apazos, niosHD, kito-cheng, shiva0217, zzheng
Differential Revision: https://reviews.llvm.org/D45385
llvm-svn: 329455
2018-04-06 23:07:05 +02:00
|
|
|
#include "llvm/Support/Casting.h"
|
2017-02-11 01:27:28 +01:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2010-01-05 02:28:22 +01:00
|
|
|
#include "llvm/Support/Debug.h"
|
2009-08-27 09:57:12 +02:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2015-02-05 01:58:51 +01:00
|
|
|
void MCOperand::print(raw_ostream &OS) const {
|
2009-08-27 09:57:12 +02:00
|
|
|
OS << "<MCOperand ";
|
|
|
|
if (!isValid())
|
|
|
|
OS << "INVALID";
|
|
|
|
else if (isReg())
|
|
|
|
OS << "Reg:" << getReg();
|
|
|
|
else if (isImm())
|
|
|
|
OS << "Imm:" << getImm();
|
2021-02-05 03:01:38 +01:00
|
|
|
else if (isSFPImm())
|
|
|
|
OS << "SFPImm:" << bit_cast<float>(getSFPImm());
|
|
|
|
else if (isDFPImm())
|
|
|
|
OS << "DFPImm:" << bit_cast<double>(getDFPImm());
|
2009-08-31 10:08:38 +02:00
|
|
|
else if (isExpr()) {
|
2010-01-18 01:37:40 +01:00
|
|
|
OS << "Expr:(" << *getExpr() << ")";
|
2012-01-19 20:32:20 +01:00
|
|
|
} else if (isInst()) {
|
|
|
|
OS << "Inst:(" << *getInst() << ")";
|
2009-08-27 09:57:12 +02:00
|
|
|
} else
|
|
|
|
OS << "UNDEFINED";
|
|
|
|
OS << ">";
|
|
|
|
}
|
|
|
|
|
[RISCV] Tablegen-driven Instruction Compression.
Summary:
This patch implements a tablegen-driven Instruction Compression
mechanism for generating RISCV compressed instructions
(C Extension) from the expanded instruction form.
This tablegen backend processes CompressPat declarations in a
td file and generates all the compile-time and runtime checks
required to validate the declarations, validate the input
operands and generate correct instructions.
The checks include validating register operands, immediate
operands, fixed register operands and fixed immediate operands.
Example:
class CompressPat<dag input, dag output> {
dag Input = input;
dag Output = output;
list<Predicate> Predicates = [];
}
let Predicates = [HasStdExtC] in {
def : CompressPat<(ADD GPRNoX0:$rs1, GPRNoX0:$rs1, GPRNoX0:$rs2),
(C_ADD GPRNoX0:$rs1, GPRNoX0:$rs2)>;
}
The result is an auto-generated header file
'RISCVGenCompressEmitter.inc' which exports two functions for
compressing/uncompressing MCInst instructions, plus
some helper functions:
bool compressInst(MCInst& OutInst, const MCInst &MI,
const MCSubtargetInfo &STI,
MCContext &Context);
bool uncompressInst(MCInst& OutInst, const MCInst &MI,
const MCRegisterInfo &MRI,
const MCSubtargetInfo &STI);
The clients that include this auto-generated header file and
invoke these functions can compress an instruction before emitting
it, in the target-specific ASM or ELF streamer, or can uncompress
an instruction before printing it, when the expanded instruction
format aliases is favored.
The following clients were added to implement compression\uncompression
for RISCV:
1) RISCVAsmParser::MatchAndEmitInstruction:
Inserted a call to compressInst() to compresses instructions
parsed by llvm-mc coming from an ASM input.
2) RISCVAsmPrinter::EmitInstruction:
Inserted a call to compressInst() to compress instructions that
were lowered from Machine Instructions (MachineInstr).
3) RVInstPrinter::printInst:
Inserted a call to uncompressInst() to print the expanded
version of the instruction instead of the compressed one (e.g,
add s0, s0, a5 instead of c.add s0, a5) when -riscv-no-aliases
is not passed.
This patch squashes D45119, D42780 and D41932. It was reviewed in smaller patches by
asb, efriedma, apazos and mgrang.
Reviewers: asb, efriedma, apazos, llvm-commits, sabuasal
Reviewed By: sabuasal
Subscribers: mgorny, eraman, asb, rbar, johnrusso, simoncook, jordy.potman.lists, apazos, niosHD, kito-cheng, shiva0217, zzheng
Differential Revision: https://reviews.llvm.org/D45385
llvm-svn: 329455
2018-04-06 23:07:05 +02:00
|
|
|
bool MCOperand::evaluateAsConstantImm(int64_t &Imm) const {
|
|
|
|
if (isImm()) {
|
|
|
|
Imm = getImm();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MCOperand::isBareSymbolRef() const {
|
|
|
|
assert(isExpr() &&
|
|
|
|
"isBareSymbolRef expects only expressions");
|
|
|
|
const MCExpr *Expr = getExpr();
|
|
|
|
MCExpr::ExprKind Kind = getExpr()->getKind();
|
|
|
|
return Kind == MCExpr::SymbolRef &&
|
|
|
|
cast<MCSymbolRefExpr>(Expr)->getKind() == MCSymbolRefExpr::VK_None;
|
|
|
|
}
|
|
|
|
|
2017-10-15 16:32:27 +02:00
|
|
|
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
2016-01-29 21:50:44 +01:00
|
|
|
LLVM_DUMP_METHOD void MCOperand::dump() const {
|
2015-02-05 02:13:47 +01:00
|
|
|
print(dbgs());
|
2010-01-05 02:28:22 +01:00
|
|
|
dbgs() << "\n";
|
2009-08-27 09:57:12 +02:00
|
|
|
}
|
2017-01-28 03:02:38 +01:00
|
|
|
#endif
|
2009-08-27 09:57:12 +02:00
|
|
|
|
2015-02-05 01:58:51 +01:00
|
|
|
void MCInst::print(raw_ostream &OS) const {
|
2009-08-27 09:57:12 +02:00
|
|
|
OS << "<MCInst " << getOpcode();
|
|
|
|
for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
|
|
|
|
OS << " ";
|
2015-02-05 01:58:51 +01:00
|
|
|
getOperand(i).print(OS);
|
2009-08-27 09:57:12 +02:00
|
|
|
}
|
|
|
|
OS << ">";
|
|
|
|
}
|
|
|
|
|
2015-02-05 01:58:51 +01:00
|
|
|
void MCInst::dump_pretty(raw_ostream &OS, const MCInstPrinter *Printer,
|
2010-03-22 22:49:34 +01:00
|
|
|
StringRef Separator) const {
|
2018-12-03 11:21:28 +01:00
|
|
|
StringRef InstName = Printer ? Printer->getOpcodeName(getOpcode()) : "";
|
|
|
|
dump_pretty(OS, InstName, Separator);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MCInst::dump_pretty(raw_ostream &OS, StringRef Name,
|
|
|
|
StringRef Separator) const {
|
2010-03-22 22:49:34 +01:00
|
|
|
OS << "<MCInst #" << getOpcode();
|
|
|
|
|
2018-12-03 11:21:28 +01:00
|
|
|
// Show the instruction opcode name if we have it.
|
|
|
|
if (!Name.empty())
|
|
|
|
OS << ' ' << Name;
|
2010-03-22 22:49:34 +01:00
|
|
|
|
|
|
|
for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
|
|
|
|
OS << Separator;
|
2015-02-05 01:58:51 +01:00
|
|
|
getOperand(i).print(OS);
|
2010-03-22 22:49:34 +01:00
|
|
|
}
|
2010-05-26 17:18:13 +02:00
|
|
|
OS << ">";
|
2010-03-22 22:49:34 +01:00
|
|
|
}
|
|
|
|
|
2017-10-15 16:32:27 +02:00
|
|
|
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
2016-01-29 21:50:44 +01:00
|
|
|
LLVM_DUMP_METHOD void MCInst::dump() const {
|
2015-02-05 02:13:47 +01:00
|
|
|
print(dbgs());
|
2010-01-05 02:28:22 +01:00
|
|
|
dbgs() << "\n";
|
2009-08-27 09:57:12 +02:00
|
|
|
}
|
2017-01-28 03:02:38 +01:00
|
|
|
#endif
|