2003-10-05 21:27:59 +02:00
|
|
|
//===- CodeEmitterGen.cpp - Code Emitter Generator ------------------------===//
|
2005-04-22 02:00:37 +02:00
|
|
|
//
|
2003-10-20 22:20:30 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:37:13 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 02:00:37 +02:00
|
|
|
//
|
2003-10-20 22:20:30 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-10-05 21:27:59 +02:00
|
|
|
//
|
2004-08-05 00:07:54 +02:00
|
|
|
// CodeEmitterGen uses the descriptions of instructions and their fields to
|
|
|
|
// construct an automated code emitter: a function that, given a MachineInstr,
|
|
|
|
// returns the (currently, 32-bit unsigned) value of the instruction.
|
2003-10-05 21:27:59 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-08-09 21:10:43 +02:00
|
|
|
#include "CodeGenTarget.h"
|
Check that emitted instructions meet their predicates on all targets except ARM, Mips, and X86.
Summary:
* ARM is omitted from this patch because this check appears to expose bugs in this target.
* Mips is omitted from this patch because this check either detects bugs or deliberate
emission of instructions that don't satisfy their predicates. One deliberate
use is the SYNC instruction where the version with an operand is correctly
defined as requiring MIPS32 while the version without an operand is defined
as an alias of 'SYNC 0' and requires MIPS2.
* X86 is omitted from this patch because it doesn't use the tablegen-erated
MCCodeEmitter infrastructure.
Patches for ARM and Mips will follow.
Depends on D25617
Reviewers: tstellarAMD, jmolloy
Subscribers: wdng, jmolloy, aemerson, rengolin, arsenm, jyknight, nemanjai, nhaehnle, tstellarAMD, llvm-commits
Differential Revision: https://reviews.llvm.org/D25618
llvm-svn: 287439
2016-11-19 14:05:44 +01:00
|
|
|
#include "SubtargetFeatureInfo.h"
|
|
|
|
#include "Types.h"
|
2006-07-13 23:02:53 +02:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2004-09-02 00:55:40 +02:00
|
|
|
#include "llvm/Support/Debug.h"
|
2012-12-04 11:37:14 +01:00
|
|
|
#include "llvm/TableGen/Record.h"
|
2012-06-11 17:37:55 +02:00
|
|
|
#include "llvm/TableGen/TableGenBackend.h"
|
2010-12-13 02:05:54 +01:00
|
|
|
#include <map>
|
2012-06-11 17:37:55 +02:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2004-08-01 05:55:39 +02:00
|
|
|
using namespace llvm;
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2012-06-11 17:37:55 +02:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
class CodeEmitterGen {
|
|
|
|
RecordKeeper &Records;
|
|
|
|
public:
|
|
|
|
CodeEmitterGen(RecordKeeper &R) : Records(R) {}
|
|
|
|
|
|
|
|
void run(raw_ostream &o);
|
|
|
|
private:
|
|
|
|
int getVariableBit(const std::string &VarName, BitsInit *BI, int bit);
|
|
|
|
std::string getInstructionCase(Record *R, CodeGenTarget &Target);
|
|
|
|
void AddCodeToMergeInOperand(Record *R, BitsInit *BI,
|
|
|
|
const std::string &VarName,
|
|
|
|
unsigned &NumberedOp,
|
[TableGen] Optionally forbid overlap between named and positional operands
There are currently two schemes for mapping instruction operands to
instruction-format variables for generating the instruction encoders and
decoders for the assembler and disassembler respectively: a) to map by name and
b) to map by position.
In the long run, we'd like to remove the position-based scheme and use only
name-based mapping. Unfortunately, the name-based scheme currently cannot deal
with complex operands (those with suboperands), and so we currently must use
the position-based scheme for those. On the other hand, the position-based
scheme cannot deal with (register) variables that are split into multiple
ranges. An upcoming commit to the PowerPC backend (adding VSX support) will
require this capability. While we could teach the position-based scheme to
handle that, since we'd like to move away from the position-based mapping
generally, it seems silly to teach it new tricks now. What makes more sense is
to allow for partial transitioning: use the name-based mapping when possible,
and only use the position-based scheme when necessary.
Now the problem is that mixing the two sensibly was not possible: the
position-based mapping would map based on position, but would not skip those
variables that were mapped by name. Instead, the two sets of assignments would
overlap. However, I cannot currently change the current behavior, because there
are some backends that rely on it [I think mistakenly, but I'll send a message
to llvmdev about that]. So I've added a new TableGen bit variable:
noNamedPositionallyEncodedOperands, that can be used to cause the
position-based mapping to skip variables mapped by name.
llvm-svn: 203767
2014-03-13 08:57:54 +01:00
|
|
|
std::set<unsigned> &NamedOpIndices,
|
2012-06-11 17:37:55 +02:00
|
|
|
std::string &Case, CodeGenTarget &Target);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2006-07-14 00:17:08 +02:00
|
|
|
// If the VarBitInit at position 'bit' matches the specified variable then
|
|
|
|
// return the variable bit position. Otherwise return -1.
|
2009-12-15 21:21:44 +01:00
|
|
|
int CodeEmitterGen::getVariableBit(const std::string &VarName,
|
2011-07-30 00:43:06 +02:00
|
|
|
BitsInit *BI, int bit) {
|
2012-10-10 22:24:43 +02:00
|
|
|
if (VarBitInit *VBI = dyn_cast<VarBitInit>(BI->getBit(bit))) {
|
|
|
|
if (VarInit *VI = dyn_cast<VarInit>(VBI->getBitVar()))
|
2010-11-15 07:42:13 +01:00
|
|
|
if (VI->getName() == VarName)
|
|
|
|
return VBI->getBitNum();
|
2012-10-10 22:24:43 +02:00
|
|
|
} else if (VarInit *VI = dyn_cast<VarInit>(BI->getBit(bit))) {
|
2011-04-28 19:51:45 +02:00
|
|
|
if (VI->getName() == VarName)
|
|
|
|
return 0;
|
|
|
|
}
|
2010-10-07 18:56:28 +02:00
|
|
|
|
2006-07-13 23:02:53 +02:00
|
|
|
return -1;
|
2010-10-07 18:56:28 +02:00
|
|
|
}
|
2006-07-13 23:02:53 +02:00
|
|
|
|
2010-11-15 07:59:17 +01:00
|
|
|
void CodeEmitterGen::
|
2011-07-30 00:43:06 +02:00
|
|
|
AddCodeToMergeInOperand(Record *R, BitsInit *BI, const std::string &VarName,
|
2011-07-12 01:06:52 +02:00
|
|
|
unsigned &NumberedOp,
|
[TableGen] Optionally forbid overlap between named and positional operands
There are currently two schemes for mapping instruction operands to
instruction-format variables for generating the instruction encoders and
decoders for the assembler and disassembler respectively: a) to map by name and
b) to map by position.
In the long run, we'd like to remove the position-based scheme and use only
name-based mapping. Unfortunately, the name-based scheme currently cannot deal
with complex operands (those with suboperands), and so we currently must use
the position-based scheme for those. On the other hand, the position-based
scheme cannot deal with (register) variables that are split into multiple
ranges. An upcoming commit to the PowerPC backend (adding VSX support) will
require this capability. While we could teach the position-based scheme to
handle that, since we'd like to move away from the position-based mapping
generally, it seems silly to teach it new tricks now. What makes more sense is
to allow for partial transitioning: use the name-based mapping when possible,
and only use the position-based scheme when necessary.
Now the problem is that mixing the two sensibly was not possible: the
position-based mapping would map based on position, but would not skip those
variables that were mapped by name. Instead, the two sets of assignments would
overlap. However, I cannot currently change the current behavior, because there
are some backends that rely on it [I think mistakenly, but I'll send a message
to llvmdev about that]. So I've added a new TableGen bit variable:
noNamedPositionallyEncodedOperands, that can be used to cause the
position-based mapping to skip variables mapped by name.
llvm-svn: 203767
2014-03-13 08:57:54 +01:00
|
|
|
std::set<unsigned> &NamedOpIndices,
|
2010-11-15 07:59:17 +01:00
|
|
|
std::string &Case, CodeGenTarget &Target) {
|
|
|
|
CodeGenInstruction &CGI = Target.getInstruction(R);
|
|
|
|
|
2010-11-15 08:09:28 +01:00
|
|
|
// Determine if VarName actually contributes to the Inst encoding.
|
|
|
|
int bit = BI->getNumBits()-1;
|
|
|
|
|
|
|
|
// Scan for a bit that this contributed to.
|
|
|
|
for (; bit >= 0; ) {
|
|
|
|
if (getVariableBit(VarName, BI, bit) != -1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
--bit;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we found no bits, ignore this value, otherwise emit the call to get the
|
|
|
|
// operand encoding.
|
|
|
|
if (bit < 0) return;
|
|
|
|
|
|
|
|
// If the operand matches by name, reference according to that
|
|
|
|
// operand number. Non-matching operands are assumed to be in
|
|
|
|
// order.
|
|
|
|
unsigned OpIdx;
|
|
|
|
if (CGI.Operands.hasOperandNamed(VarName, OpIdx)) {
|
|
|
|
// Get the machine operand number for the indicated operand.
|
|
|
|
OpIdx = CGI.Operands[OpIdx].MIOperandNo;
|
|
|
|
assert(!CGI.Operands.isFlatOperandNotEmitted(OpIdx) &&
|
|
|
|
"Explicitly used operand also marked as not emitted!");
|
|
|
|
} else {
|
2012-11-09 21:29:37 +01:00
|
|
|
unsigned NumberOps = CGI.Operands.size();
|
2010-11-15 08:09:28 +01:00
|
|
|
/// If this operand is not supposed to be emitted by the
|
|
|
|
/// generated emitter, skip it.
|
2012-11-09 21:29:37 +01:00
|
|
|
while (NumberedOp < NumberOps &&
|
[TableGen] Optionally forbid overlap between named and positional operands
There are currently two schemes for mapping instruction operands to
instruction-format variables for generating the instruction encoders and
decoders for the assembler and disassembler respectively: a) to map by name and
b) to map by position.
In the long run, we'd like to remove the position-based scheme and use only
name-based mapping. Unfortunately, the name-based scheme currently cannot deal
with complex operands (those with suboperands), and so we currently must use
the position-based scheme for those. On the other hand, the position-based
scheme cannot deal with (register) variables that are split into multiple
ranges. An upcoming commit to the PowerPC backend (adding VSX support) will
require this capability. While we could teach the position-based scheme to
handle that, since we'd like to move away from the position-based mapping
generally, it seems silly to teach it new tricks now. What makes more sense is
to allow for partial transitioning: use the name-based mapping when possible,
and only use the position-based scheme when necessary.
Now the problem is that mixing the two sensibly was not possible: the
position-based mapping would map based on position, but would not skip those
variables that were mapped by name. Instead, the two sets of assignments would
overlap. However, I cannot currently change the current behavior, because there
are some backends that rely on it [I think mistakenly, but I'll send a message
to llvmdev about that]. So I've added a new TableGen bit variable:
noNamedPositionallyEncodedOperands, that can be used to cause the
position-based mapping to skip variables mapped by name.
llvm-svn: 203767
2014-03-13 08:57:54 +01:00
|
|
|
(CGI.Operands.isFlatOperandNotEmitted(NumberedOp) ||
|
2015-01-15 12:41:30 +01:00
|
|
|
(!NamedOpIndices.empty() && NamedOpIndices.count(
|
2014-03-22 12:33:32 +01:00
|
|
|
CGI.Operands.getSubOperandNumber(NumberedOp).first)))) {
|
2010-11-15 08:09:28 +01:00
|
|
|
++NumberedOp;
|
2012-11-09 22:27:03 +01:00
|
|
|
|
2014-03-22 12:33:32 +01:00
|
|
|
if (NumberedOp >= CGI.Operands.back().MIOperandNo +
|
|
|
|
CGI.Operands.back().MINumOperands) {
|
|
|
|
errs() << "Too few operands in record " << R->getName() <<
|
|
|
|
" (no match for variable " << VarName << "):\n";
|
|
|
|
errs() << *R;
|
|
|
|
errs() << '\n';
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-15 08:09:28 +01:00
|
|
|
OpIdx = NumberedOp++;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<unsigned, unsigned> SO = CGI.Operands.getSubOperandNumber(OpIdx);
|
|
|
|
std::string &EncoderMethodName = CGI.Operands[SO.first].EncoderMethodName;
|
|
|
|
|
|
|
|
// If the source operand has a custom encoder, use it. This will
|
|
|
|
// get the encoding for all of the suboperands.
|
|
|
|
if (!EncoderMethodName.empty()) {
|
|
|
|
// A custom encoder has all of the information for the
|
|
|
|
// sub-operands, if there are more than one, so only
|
|
|
|
// query the encoder once per source operand.
|
|
|
|
if (SO.second == 0) {
|
|
|
|
Case += " // op: " + VarName + "\n" +
|
|
|
|
" op = " + EncoderMethodName + "(MI, " + utostr(OpIdx);
|
2014-09-03 00:28:02 +02:00
|
|
|
Case += ", Fixups, STI";
|
2010-11-15 08:09:28 +01:00
|
|
|
Case += ");\n";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Case += " // op: " + VarName + "\n" +
|
|
|
|
" op = getMachineOpValue(MI, MI.getOperand(" + utostr(OpIdx) + ")";
|
2014-09-03 00:28:02 +02:00
|
|
|
Case += ", Fixups, STI";
|
2010-11-15 08:09:28 +01:00
|
|
|
Case += ");\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; bit >= 0; ) {
|
2010-11-15 07:59:17 +01:00
|
|
|
int varBit = getVariableBit(VarName, BI, bit);
|
|
|
|
|
|
|
|
// If this bit isn't from a variable, skip it.
|
|
|
|
if (varBit == -1) {
|
|
|
|
--bit;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-01-28 00:08:52 +01:00
|
|
|
// Figure out the consecutive range of bits covered by this operand, in
|
2010-11-15 07:59:17 +01:00
|
|
|
// order to generate better encoding code.
|
|
|
|
int beginInstBit = bit;
|
|
|
|
int beginVarBit = varBit;
|
|
|
|
int N = 1;
|
|
|
|
for (--bit; bit >= 0;) {
|
|
|
|
varBit = getVariableBit(VarName, BI, bit);
|
|
|
|
if (varBit == -1 || varBit != (beginVarBit - N)) break;
|
|
|
|
++N;
|
|
|
|
--bit;
|
|
|
|
}
|
2010-11-15 08:09:28 +01:00
|
|
|
|
2012-03-09 15:52:44 +01:00
|
|
|
uint64_t opMask = ~(uint64_t)0 >> (64-N);
|
2010-11-15 07:59:17 +01:00
|
|
|
int opShift = beginVarBit - N + 1;
|
|
|
|
opMask <<= opShift;
|
|
|
|
opShift = beginInstBit - beginVarBit;
|
|
|
|
|
|
|
|
if (opShift > 0) {
|
2012-01-24 19:37:29 +01:00
|
|
|
Case += " Value |= (op & UINT64_C(" + utostr(opMask) + ")) << " +
|
2010-11-15 07:59:17 +01:00
|
|
|
itostr(opShift) + ";\n";
|
|
|
|
} else if (opShift < 0) {
|
2012-01-24 19:37:29 +01:00
|
|
|
Case += " Value |= (op & UINT64_C(" + utostr(opMask) + ")) >> " +
|
2010-11-15 07:59:17 +01:00
|
|
|
itostr(-opShift) + ";\n";
|
|
|
|
} else {
|
2012-01-24 19:37:29 +01:00
|
|
|
Case += " Value |= op & UINT64_C(" + utostr(opMask) + ");\n";
|
2010-11-15 07:59:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::string CodeEmitterGen::getInstructionCase(Record *R,
|
|
|
|
CodeGenTarget &Target) {
|
|
|
|
std::string Case;
|
|
|
|
|
2011-07-30 00:43:06 +02:00
|
|
|
BitsInit *BI = R->getValueAsBitsInit("Inst");
|
2010-11-15 07:59:17 +01:00
|
|
|
const std::vector<RecordVal> &Vals = R->getValues();
|
|
|
|
unsigned NumberedOp = 0;
|
|
|
|
|
[TableGen] Optionally forbid overlap between named and positional operands
There are currently two schemes for mapping instruction operands to
instruction-format variables for generating the instruction encoders and
decoders for the assembler and disassembler respectively: a) to map by name and
b) to map by position.
In the long run, we'd like to remove the position-based scheme and use only
name-based mapping. Unfortunately, the name-based scheme currently cannot deal
with complex operands (those with suboperands), and so we currently must use
the position-based scheme for those. On the other hand, the position-based
scheme cannot deal with (register) variables that are split into multiple
ranges. An upcoming commit to the PowerPC backend (adding VSX support) will
require this capability. While we could teach the position-based scheme to
handle that, since we'd like to move away from the position-based mapping
generally, it seems silly to teach it new tricks now. What makes more sense is
to allow for partial transitioning: use the name-based mapping when possible,
and only use the position-based scheme when necessary.
Now the problem is that mixing the two sensibly was not possible: the
position-based mapping would map based on position, but would not skip those
variables that were mapped by name. Instead, the two sets of assignments would
overlap. However, I cannot currently change the current behavior, because there
are some backends that rely on it [I think mistakenly, but I'll send a message
to llvmdev about that]. So I've added a new TableGen bit variable:
noNamedPositionallyEncodedOperands, that can be used to cause the
position-based mapping to skip variables mapped by name.
llvm-svn: 203767
2014-03-13 08:57:54 +01:00
|
|
|
std::set<unsigned> NamedOpIndices;
|
|
|
|
// Collect the set of operand indices that might correspond to named
|
|
|
|
// operand, and skip these when assigning operands based on position.
|
|
|
|
if (Target.getInstructionSet()->
|
|
|
|
getValueAsBit("noNamedPositionallyEncodedOperands")) {
|
|
|
|
CodeGenInstruction &CGI = Target.getInstruction(R);
|
|
|
|
for (unsigned i = 0, e = Vals.size(); i != e; ++i) {
|
|
|
|
unsigned OpIdx;
|
|
|
|
if (!CGI.Operands.hasOperandNamed(Vals[i].getName(), OpIdx))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
NamedOpIndices.insert(OpIdx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-15 07:59:17 +01:00
|
|
|
// Loop over all of the fields in the instruction, determining which are the
|
|
|
|
// operands to the instruction.
|
|
|
|
for (unsigned i = 0, e = Vals.size(); i != e; ++i) {
|
|
|
|
// Ignore fixed fields in the record, we're looking for values like:
|
|
|
|
// bits<5> RST = { ?, ?, ?, ?, ? };
|
|
|
|
if (Vals[i].getPrefix() || Vals[i].getValue()->isComplete())
|
|
|
|
continue;
|
|
|
|
|
[TableGen] Optionally forbid overlap between named and positional operands
There are currently two schemes for mapping instruction operands to
instruction-format variables for generating the instruction encoders and
decoders for the assembler and disassembler respectively: a) to map by name and
b) to map by position.
In the long run, we'd like to remove the position-based scheme and use only
name-based mapping. Unfortunately, the name-based scheme currently cannot deal
with complex operands (those with suboperands), and so we currently must use
the position-based scheme for those. On the other hand, the position-based
scheme cannot deal with (register) variables that are split into multiple
ranges. An upcoming commit to the PowerPC backend (adding VSX support) will
require this capability. While we could teach the position-based scheme to
handle that, since we'd like to move away from the position-based mapping
generally, it seems silly to teach it new tricks now. What makes more sense is
to allow for partial transitioning: use the name-based mapping when possible,
and only use the position-based scheme when necessary.
Now the problem is that mixing the two sensibly was not possible: the
position-based mapping would map based on position, but would not skip those
variables that were mapped by name. Instead, the two sets of assignments would
overlap. However, I cannot currently change the current behavior, because there
are some backends that rely on it [I think mistakenly, but I'll send a message
to llvmdev about that]. So I've added a new TableGen bit variable:
noNamedPositionallyEncodedOperands, that can be used to cause the
position-based mapping to skip variables mapped by name.
llvm-svn: 203767
2014-03-13 08:57:54 +01:00
|
|
|
AddCodeToMergeInOperand(R, BI, Vals[i].getName(), NumberedOp,
|
|
|
|
NamedOpIndices, Case, Target);
|
2010-11-15 07:59:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string PostEmitter = R->getValueAsString("PostEncoderMethod");
|
2014-01-29 00:13:18 +01:00
|
|
|
if (!PostEmitter.empty()) {
|
|
|
|
Case += " Value = " + PostEmitter + "(MI, Value";
|
2014-09-03 00:28:02 +02:00
|
|
|
Case += ", STI";
|
2014-01-29 00:13:18 +01:00
|
|
|
Case += ");\n";
|
|
|
|
}
|
2010-11-15 07:59:17 +01:00
|
|
|
|
|
|
|
return Case;
|
|
|
|
}
|
|
|
|
|
2009-07-03 02:10:29 +02:00
|
|
|
void CodeEmitterGen::run(raw_ostream &o) {
|
2010-12-13 01:23:57 +01:00
|
|
|
CodeGenTarget Target(Records);
|
2003-10-05 21:27:59 +02:00
|
|
|
std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
|
2010-10-07 18:56:28 +02:00
|
|
|
|
2006-07-13 23:02:53 +02:00
|
|
|
// For little-endian instruction bit encodings, reverse the bit order
|
2013-12-17 23:37:50 +01:00
|
|
|
Target.reverseBitsForLittleEndianEncoding();
|
2010-10-07 18:56:28 +02:00
|
|
|
|
2016-02-01 02:33:42 +01:00
|
|
|
ArrayRef<const CodeGenInstruction*> NumberedInstructions =
|
2010-03-19 01:34:35 +01:00
|
|
|
Target.getInstructionsByEnumValue();
|
2003-10-05 21:27:59 +02:00
|
|
|
|
2004-08-10 22:54:58 +02:00
|
|
|
// Emit function declaration
|
2012-01-24 19:37:29 +01:00
|
|
|
o << "uint64_t " << Target.getName();
|
2014-09-03 00:28:02 +02:00
|
|
|
o << "MCCodeEmitter::getBinaryCodeForInstr(const MCInst &MI,\n"
|
|
|
|
<< " SmallVectorImpl<MCFixup> &Fixups,\n"
|
|
|
|
<< " const MCSubtargetInfo &STI) const {\n";
|
2004-08-10 22:54:58 +02:00
|
|
|
|
2006-07-12 21:15:43 +02:00
|
|
|
// Emit instruction base values
|
2012-03-06 22:48:32 +01:00
|
|
|
o << " static const uint64_t InstBits[] = {\n";
|
2016-02-01 02:33:42 +01:00
|
|
|
for (const CodeGenInstruction *CGI : NumberedInstructions) {
|
2006-07-12 21:15:43 +02:00
|
|
|
Record *R = CGI->TheDef;
|
2010-10-07 18:56:28 +02:00
|
|
|
|
2011-07-06 23:33:38 +02:00
|
|
|
if (R->getValueAsString("Namespace") == "TargetOpcode" ||
|
|
|
|
R->getValueAsBit("isPseudo")) {
|
2012-01-24 19:37:29 +01:00
|
|
|
o << " UINT64_C(0),\n";
|
2006-07-12 21:15:43 +02:00
|
|
|
continue;
|
|
|
|
}
|
2010-10-07 18:56:28 +02:00
|
|
|
|
2011-07-30 00:43:06 +02:00
|
|
|
BitsInit *BI = R->getValueAsBitsInit("Inst");
|
2003-10-05 21:27:59 +02:00
|
|
|
|
2010-11-15 07:59:17 +01:00
|
|
|
// Start by filling in fixed values.
|
2012-03-06 22:48:32 +01:00
|
|
|
uint64_t Value = 0;
|
2003-10-05 21:27:59 +02:00
|
|
|
for (unsigned i = 0, e = BI->getNumBits(); i != e; ++i) {
|
2012-10-10 22:24:43 +02:00
|
|
|
if (BitInit *B = dyn_cast<BitInit>(BI->getBit(e-i-1)))
|
2012-03-06 22:48:32 +01:00
|
|
|
Value |= (uint64_t)B->getValue() << (e-i-1);
|
2003-10-05 21:27:59 +02:00
|
|
|
}
|
2012-01-24 19:37:29 +01:00
|
|
|
o << " UINT64_C(" << Value << ")," << '\t' << "// " << R->getName() << "\n";
|
2006-07-12 21:15:43 +02:00
|
|
|
}
|
2012-01-24 19:37:29 +01:00
|
|
|
o << " UINT64_C(0)\n };\n";
|
2010-10-07 18:56:28 +02:00
|
|
|
|
2006-07-13 23:02:53 +02:00
|
|
|
// Map to accumulate all the cases.
|
|
|
|
std::map<std::string, std::vector<std::string> > CaseMap;
|
2010-10-07 18:56:28 +02:00
|
|
|
|
2006-07-13 23:02:53 +02:00
|
|
|
// Construct all cases statement for each opcode
|
|
|
|
for (std::vector<Record*>::iterator IC = Insts.begin(), EC = Insts.end();
|
|
|
|
IC != EC; ++IC) {
|
|
|
|
Record *R = *IC;
|
2011-07-06 23:33:38 +02:00
|
|
|
if (R->getValueAsString("Namespace") == "TargetOpcode" ||
|
|
|
|
R->getValueAsBit("isPseudo"))
|
2010-07-02 23:44:22 +02:00
|
|
|
continue;
|
2011-02-04 00:26:36 +01:00
|
|
|
const std::string &InstName = R->getValueAsString("Namespace") + "::"
|
|
|
|
+ R->getName();
|
2010-11-15 07:59:17 +01:00
|
|
|
std::string Case = getInstructionCase(R, Target);
|
2010-11-11 02:19:24 +01:00
|
|
|
|
2010-11-15 07:59:17 +01:00
|
|
|
CaseMap[Case].push_back(InstName);
|
2006-07-13 23:02:53 +02:00
|
|
|
}
|
2005-04-22 02:00:37 +02:00
|
|
|
|
2006-07-13 23:02:53 +02:00
|
|
|
// Emit initial function code
|
|
|
|
o << " const unsigned opcode = MI.getOpcode();\n"
|
2012-03-06 22:48:32 +01:00
|
|
|
<< " uint64_t Value = InstBits[opcode];\n"
|
|
|
|
<< " uint64_t op = 0;\n"
|
2010-12-23 01:58:24 +01:00
|
|
|
<< " (void)op; // suppress warning\n"
|
2006-07-13 23:02:53 +02:00
|
|
|
<< " switch (opcode) {\n";
|
2005-04-22 02:00:37 +02:00
|
|
|
|
2006-07-13 23:02:53 +02:00
|
|
|
// Emit each case statement
|
|
|
|
std::map<std::string, std::vector<std::string> >::iterator IE, EE;
|
|
|
|
for (IE = CaseMap.begin(), EE = CaseMap.end(); IE != EE; ++IE) {
|
|
|
|
const std::string &Case = IE->first;
|
|
|
|
std::vector<std::string> &InstList = IE->second;
|
2005-04-22 02:00:37 +02:00
|
|
|
|
2006-07-13 23:02:53 +02:00
|
|
|
for (int i = 0, N = InstList.size(); i < N; i++) {
|
|
|
|
if (i) o << "\n";
|
2011-02-04 00:26:36 +01:00
|
|
|
o << " case " << InstList[i] << ":";
|
2003-10-05 21:27:59 +02:00
|
|
|
}
|
2006-07-13 23:02:53 +02:00
|
|
|
o << " {\n";
|
|
|
|
o << Case;
|
2003-10-05 21:27:59 +02:00
|
|
|
o << " break;\n"
|
|
|
|
<< " }\n";
|
|
|
|
}
|
|
|
|
|
2004-10-14 07:53:01 +02:00
|
|
|
// Default case: unhandled opcode
|
2003-10-05 21:27:59 +02:00
|
|
|
o << " default:\n"
|
2014-06-27 00:52:05 +02:00
|
|
|
<< " std::string msg;\n"
|
|
|
|
<< " raw_string_ostream Msg(msg);\n"
|
2009-07-08 21:04:27 +02:00
|
|
|
<< " Msg << \"Not supported instr: \" << MI;\n"
|
2010-04-08 00:58:41 +02:00
|
|
|
<< " report_fatal_error(Msg.str());\n"
|
2003-10-05 21:27:59 +02:00
|
|
|
<< " }\n"
|
|
|
|
<< " return Value;\n"
|
2004-10-14 07:53:01 +02:00
|
|
|
<< "}\n\n";
|
Check that emitted instructions meet their predicates on all targets except ARM, Mips, and X86.
Summary:
* ARM is omitted from this patch because this check appears to expose bugs in this target.
* Mips is omitted from this patch because this check either detects bugs or deliberate
emission of instructions that don't satisfy their predicates. One deliberate
use is the SYNC instruction where the version with an operand is correctly
defined as requiring MIPS32 while the version without an operand is defined
as an alias of 'SYNC 0' and requires MIPS2.
* X86 is omitted from this patch because it doesn't use the tablegen-erated
MCCodeEmitter infrastructure.
Patches for ARM and Mips will follow.
Depends on D25617
Reviewers: tstellarAMD, jmolloy
Subscribers: wdng, jmolloy, aemerson, rengolin, arsenm, jyknight, nemanjai, nhaehnle, tstellarAMD, llvm-commits
Differential Revision: https://reviews.llvm.org/D25618
llvm-svn: 287439
2016-11-19 14:05:44 +01:00
|
|
|
|
|
|
|
const auto &All = SubtargetFeatureInfo::getAll(Records);
|
|
|
|
std::map<Record *, SubtargetFeatureInfo, LessRecordByID> SubtargetFeatures;
|
|
|
|
SubtargetFeatures.insert(All.begin(), All.end());
|
|
|
|
|
|
|
|
o << "#ifdef ENABLE_INSTR_PREDICATE_VERIFIER\n"
|
|
|
|
<< "#undef ENABLE_INSTR_PREDICATE_VERIFIER\n"
|
|
|
|
<< "#include <sstream>\n\n";
|
|
|
|
|
|
|
|
// Emit the subtarget feature enumeration.
|
|
|
|
SubtargetFeatureInfo::emitSubtargetFeatureFlagEnumeration(SubtargetFeatures,
|
|
|
|
o);
|
|
|
|
|
|
|
|
// Emit the name table for error messages.
|
|
|
|
o << "#ifndef NDEBUG\n";
|
|
|
|
SubtargetFeatureInfo::emitNameTable(SubtargetFeatures, o);
|
|
|
|
o << "#endif // NDEBUG\n";
|
|
|
|
|
|
|
|
// Emit the available features compute function.
|
|
|
|
SubtargetFeatureInfo::emitComputeAvailableFeatures(
|
|
|
|
Target.getName(), "MCCodeEmitter", "computeAvailableFeatures",
|
|
|
|
SubtargetFeatures, o);
|
|
|
|
|
|
|
|
// Emit the predicate verifier.
|
|
|
|
o << "void " << Target.getName()
|
|
|
|
<< "MCCodeEmitter::verifyInstructionPredicates(\n"
|
|
|
|
<< " const MCInst &Inst, uint64_t AvailableFeatures) const {\n"
|
|
|
|
<< "#ifndef NDEBUG\n"
|
|
|
|
<< " static uint64_t RequiredFeatures[] = {\n";
|
|
|
|
unsigned InstIdx = 0;
|
|
|
|
for (const CodeGenInstruction *Inst : Target.getInstructionsByEnumValue()) {
|
|
|
|
o << " ";
|
|
|
|
for (Record *Predicate : Inst->TheDef->getValueAsListOfDefs("Predicates")) {
|
|
|
|
const auto &I = SubtargetFeatures.find(Predicate);
|
|
|
|
if (I != SubtargetFeatures.end())
|
|
|
|
o << I->second.getEnumName() << " | ";
|
|
|
|
}
|
|
|
|
o << "0, // " << Inst->TheDef->getName() << " = " << InstIdx << "\n";
|
|
|
|
InstIdx++;
|
|
|
|
}
|
|
|
|
o << " };\n\n";
|
|
|
|
o << " assert(Inst.getOpcode() < " << InstIdx << ");\n";
|
|
|
|
o << " uint64_t MissingFeatures =\n"
|
|
|
|
<< " (AvailableFeatures & RequiredFeatures[Inst.getOpcode()]) ^\n"
|
|
|
|
<< " RequiredFeatures[Inst.getOpcode()];\n"
|
|
|
|
<< " if (MissingFeatures) {\n"
|
|
|
|
<< " std::ostringstream Msg;\n"
|
|
|
|
<< " Msg << \"Attempting to emit \" << MCII.getName(Inst.getOpcode()).str()\n"
|
|
|
|
<< " << \" instruction but the \";\n"
|
|
|
|
<< " for (unsigned i = 0; i < 8 * sizeof(MissingFeatures); ++i)\n"
|
|
|
|
<< " if (MissingFeatures & (1ULL << i))\n"
|
|
|
|
<< " Msg << SubtargetFeatureNames[i] << \" \";\n"
|
|
|
|
<< " Msg << \"predicate(s) are not met\";\n"
|
|
|
|
<< " report_fatal_error(Msg.str());\n"
|
|
|
|
<< " }\n"
|
|
|
|
<< "#endif // NDEBUG\n";
|
|
|
|
o << "}\n";
|
|
|
|
o << "#endif\n";
|
2003-10-05 21:27:59 +02:00
|
|
|
}
|
2012-06-11 17:37:55 +02:00
|
|
|
|
|
|
|
} // End anonymous namespace
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
void EmitCodeEmitter(RecordKeeper &RK, raw_ostream &OS) {
|
|
|
|
emitSourceFileHeader("Machine Code Emitter", OS);
|
|
|
|
CodeEmitterGen(RK).run(OS);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // End llvm namespace
|