2008-01-06 02:35:39 +01:00
|
|
|
//===- CodeGenTarget.cpp - CodeGen Target Class Wrapper -------------------===//
|
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
|
|
|
//
|
2008-01-06 02:35:39 +01:00
|
|
|
// This class wraps target description classes used by the various code
|
2003-10-05 21:27:59 +02:00
|
|
|
// generation TableGen backends. This makes it easier to access the data and
|
|
|
|
// provides a single place that needs to check it for validity. All of these
|
|
|
|
// classes throw exceptions on error conditions.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-08-01 06:04:35 +02:00
|
|
|
#include "CodeGenTarget.h"
|
2006-03-24 20:49:31 +01:00
|
|
|
#include "CodeGenIntrinsics.h"
|
2011-10-01 18:41:13 +02:00
|
|
|
#include "llvm/TableGen/Record.h"
|
2004-10-03 21:34:31 +02:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2010-03-27 21:32:26 +01:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2004-10-03 21:34:31 +02:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2005-10-14 05:54:49 +02:00
|
|
|
#include <algorithm>
|
2004-08-01 05:55:39 +02:00
|
|
|
using namespace llvm;
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2009-07-29 02:02:19 +02:00
|
|
|
static cl::opt<unsigned>
|
|
|
|
AsmParserNum("asmparsernum", cl::init(0),
|
|
|
|
cl::desc("Make -gen-asm-parser emit assembly parser #N"));
|
|
|
|
|
2004-10-03 21:34:31 +02:00
|
|
|
static cl::opt<unsigned>
|
|
|
|
AsmWriterNum("asmwriternum", cl::init(0),
|
|
|
|
cl::desc("Make -gen-asm-writer emit assembly writer #N"));
|
|
|
|
|
2009-08-11 22:47:22 +02:00
|
|
|
/// getValueType - Return the MVT::SimpleValueType that the specified TableGen
|
2008-06-06 14:08:01 +02:00
|
|
|
/// record corresponds to.
|
2009-08-11 22:47:22 +02:00
|
|
|
MVT::SimpleValueType llvm::getValueType(Record *Rec) {
|
|
|
|
return (MVT::SimpleValueType)Rec->getValueAsInt("Value");
|
2003-10-05 21:27:59 +02:00
|
|
|
}
|
|
|
|
|
2009-08-11 22:47:22 +02:00
|
|
|
std::string llvm::getName(MVT::SimpleValueType T) {
|
2003-10-05 21:27:59 +02:00
|
|
|
switch (T) {
|
2009-08-11 22:47:22 +02:00
|
|
|
case MVT::Other: return "UNKNOWN";
|
|
|
|
case MVT::iPTR: return "TLI.getPointerTy()";
|
|
|
|
case MVT::iPTRAny: return "TLI.getPointerTy()";
|
2009-07-11 00:25:24 +02:00
|
|
|
default: return getEnumName(T);
|
2003-10-05 21:27:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-11 22:47:22 +02:00
|
|
|
std::string llvm::getEnumName(MVT::SimpleValueType T) {
|
2003-10-05 21:27:59 +02:00
|
|
|
switch (T) {
|
2010-09-07 20:49:14 +02:00
|
|
|
case MVT::Other: return "MVT::Other";
|
|
|
|
case MVT::i1: return "MVT::i1";
|
|
|
|
case MVT::i8: return "MVT::i8";
|
|
|
|
case MVT::i16: return "MVT::i16";
|
|
|
|
case MVT::i32: return "MVT::i32";
|
|
|
|
case MVT::i64: return "MVT::i64";
|
|
|
|
case MVT::i128: return "MVT::i128";
|
|
|
|
case MVT::iAny: return "MVT::iAny";
|
|
|
|
case MVT::fAny: return "MVT::fAny";
|
|
|
|
case MVT::vAny: return "MVT::vAny";
|
2011-12-20 01:02:33 +01:00
|
|
|
case MVT::f16: return "MVT::f16";
|
2010-09-07 20:49:14 +02:00
|
|
|
case MVT::f32: return "MVT::f32";
|
|
|
|
case MVT::f64: return "MVT::f64";
|
|
|
|
case MVT::f80: return "MVT::f80";
|
|
|
|
case MVT::f128: return "MVT::f128";
|
2009-08-11 22:47:22 +02:00
|
|
|
case MVT::ppcf128: return "MVT::ppcf128";
|
2010-09-07 22:03:56 +02:00
|
|
|
case MVT::x86mmx: return "MVT::x86mmx";
|
2010-12-21 03:38:05 +01:00
|
|
|
case MVT::Glue: return "MVT::Glue";
|
2010-09-07 20:49:14 +02:00
|
|
|
case MVT::isVoid: return "MVT::isVoid";
|
|
|
|
case MVT::v2i8: return "MVT::v2i8";
|
|
|
|
case MVT::v4i8: return "MVT::v4i8";
|
|
|
|
case MVT::v8i8: return "MVT::v8i8";
|
|
|
|
case MVT::v16i8: return "MVT::v16i8";
|
|
|
|
case MVT::v32i8: return "MVT::v32i8";
|
|
|
|
case MVT::v2i16: return "MVT::v2i16";
|
|
|
|
case MVT::v4i16: return "MVT::v4i16";
|
|
|
|
case MVT::v8i16: return "MVT::v8i16";
|
|
|
|
case MVT::v16i16: return "MVT::v16i16";
|
|
|
|
case MVT::v2i32: return "MVT::v2i32";
|
|
|
|
case MVT::v4i32: return "MVT::v4i32";
|
|
|
|
case MVT::v8i32: return "MVT::v8i32";
|
|
|
|
case MVT::v1i64: return "MVT::v1i64";
|
|
|
|
case MVT::v2i64: return "MVT::v2i64";
|
|
|
|
case MVT::v4i64: return "MVT::v4i64";
|
|
|
|
case MVT::v8i64: return "MVT::v8i64";
|
2012-01-13 00:14:13 +01:00
|
|
|
case MVT::v2f16: return "MVT::v2f16";
|
2010-09-07 20:49:14 +02:00
|
|
|
case MVT::v2f32: return "MVT::v2f32";
|
|
|
|
case MVT::v4f32: return "MVT::v4f32";
|
|
|
|
case MVT::v8f32: return "MVT::v8f32";
|
|
|
|
case MVT::v2f64: return "MVT::v2f64";
|
|
|
|
case MVT::v4f64: return "MVT::v4f64";
|
2009-08-11 22:47:22 +02:00
|
|
|
case MVT::Metadata: return "MVT::Metadata";
|
2010-09-07 20:49:14 +02:00
|
|
|
case MVT::iPTR: return "MVT::iPTR";
|
2009-08-11 22:47:22 +02:00
|
|
|
case MVT::iPTRAny: return "MVT::iPTRAny";
|
2011-11-16 02:02:57 +01:00
|
|
|
case MVT::Untyped: return "MVT::Untyped";
|
2012-02-05 08:21:30 +01:00
|
|
|
default: llvm_unreachable("ILLEGAL VALUE TYPE!");
|
2003-10-05 21:27:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// getQualifiedName - Return the name of the specified record, with a
|
|
|
|
/// namespace qualifier if the record contains one.
|
|
|
|
///
|
|
|
|
std::string llvm::getQualifiedName(const Record *R) {
|
2011-05-07 23:22:39 +02:00
|
|
|
std::string Namespace;
|
|
|
|
if (R->getValue("Namespace"))
|
|
|
|
Namespace = R->getValueAsString("Namespace");
|
2008-01-05 23:25:12 +01:00
|
|
|
if (Namespace.empty()) return R->getName();
|
|
|
|
return Namespace + "::" + R->getName();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-05 21:27:59 +02:00
|
|
|
/// getTarget - Return the current instance of the Target class.
|
|
|
|
///
|
2011-06-10 20:40:00 +02:00
|
|
|
CodeGenTarget::CodeGenTarget(RecordKeeper &records)
|
|
|
|
: Records(records), RegBank(0) {
|
2003-10-05 21:27:59 +02:00
|
|
|
std::vector<Record*> Targets = Records.getAllDerivedDefinitions("Target");
|
2004-06-04 16:59:42 +02:00
|
|
|
if (Targets.size() == 0)
|
2005-04-22 02:00:37 +02:00
|
|
|
throw std::string("ERROR: No 'Target' subclasses defined!");
|
2003-10-05 21:27:59 +02:00
|
|
|
if (Targets.size() != 1)
|
|
|
|
throw std::string("ERROR: Multiple subclasses of Target defined!");
|
|
|
|
TargetRec = Targets[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const std::string &CodeGenTarget::getName() const {
|
|
|
|
return TargetRec->getName();
|
|
|
|
}
|
|
|
|
|
2008-08-20 23:45:57 +02:00
|
|
|
std::string CodeGenTarget::getInstNamespace() const {
|
|
|
|
for (inst_iterator i = inst_begin(), e = inst_end(); i != e; ++i) {
|
2010-03-19 02:00:55 +01:00
|
|
|
// Make sure not to pick up "TargetOpcode" by accidentally getting
|
2008-08-20 23:45:57 +02:00
|
|
|
// the namespace off the PHI instruction or something.
|
2010-03-19 02:00:55 +01:00
|
|
|
if ((*i)->Namespace != "TargetOpcode")
|
|
|
|
return (*i)->Namespace;
|
2008-08-20 23:45:57 +02:00
|
|
|
}
|
|
|
|
|
2010-03-19 02:00:55 +01:00
|
|
|
return "";
|
2008-08-20 23:45:57 +02:00
|
|
|
}
|
|
|
|
|
2003-10-05 21:27:59 +02:00
|
|
|
Record *CodeGenTarget::getInstructionSet() const {
|
|
|
|
return TargetRec->getValueAsDef("InstructionSet");
|
|
|
|
}
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2010-03-19 01:07:20 +01:00
|
|
|
|
2009-07-29 02:02:19 +02:00
|
|
|
/// getAsmParser - Return the AssemblyParser definition for this target.
|
|
|
|
///
|
|
|
|
Record *CodeGenTarget::getAsmParser() const {
|
|
|
|
std::vector<Record*> LI = TargetRec->getValueAsListOfDefs("AssemblyParsers");
|
|
|
|
if (AsmParserNum >= LI.size())
|
|
|
|
throw "Target does not have an AsmParser #" + utostr(AsmParserNum) + "!";
|
|
|
|
return LI[AsmParserNum];
|
|
|
|
}
|
|
|
|
|
2012-01-09 20:13:28 +01:00
|
|
|
/// getAsmParserVariant - Return the AssmblyParserVariant definition for
|
|
|
|
/// this target.
|
|
|
|
///
|
|
|
|
Record *CodeGenTarget::getAsmParserVariant(unsigned i) const {
|
|
|
|
std::vector<Record*> LI =
|
|
|
|
TargetRec->getValueAsListOfDefs("AssemblyParserVariants");
|
|
|
|
if (i >= LI.size())
|
|
|
|
throw "Target does not have an AsmParserVariant #" + utostr(i) + "!";
|
|
|
|
return LI[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getAsmParserVariantCount - Return the AssmblyParserVariant definition
|
|
|
|
/// available for this target.
|
|
|
|
///
|
|
|
|
unsigned CodeGenTarget::getAsmParserVariantCount() const {
|
|
|
|
std::vector<Record*> LI =
|
|
|
|
TargetRec->getValueAsListOfDefs("AssemblyParserVariants");
|
|
|
|
return LI.size();
|
|
|
|
}
|
|
|
|
|
2004-08-15 00:50:53 +02:00
|
|
|
/// getAsmWriter - Return the AssemblyWriter definition for this target.
|
|
|
|
///
|
|
|
|
Record *CodeGenTarget::getAsmWriter() const {
|
2005-10-29 00:49:02 +02:00
|
|
|
std::vector<Record*> LI = TargetRec->getValueAsListOfDefs("AssemblyWriters");
|
|
|
|
if (AsmWriterNum >= LI.size())
|
2004-10-03 21:34:31 +02:00
|
|
|
throw "Target does not have an AsmWriter #" + utostr(AsmWriterNum) + "!";
|
2005-10-29 00:49:02 +02:00
|
|
|
return LI[AsmWriterNum];
|
2004-08-15 00:50:53 +02:00
|
|
|
}
|
|
|
|
|
2011-06-10 20:40:00 +02:00
|
|
|
CodeGenRegBank &CodeGenTarget::getRegBank() const {
|
|
|
|
if (!RegBank)
|
|
|
|
RegBank = new CodeGenRegBank(Records);
|
|
|
|
return *RegBank;
|
|
|
|
}
|
|
|
|
|
2011-06-27 23:06:21 +02:00
|
|
|
void CodeGenTarget::ReadRegAltNameIndices() const {
|
|
|
|
RegAltNameIndices = Records.getAllDerivedDefinitions("RegAltNameIndex");
|
|
|
|
std::sort(RegAltNameIndices.begin(), RegAltNameIndices.end(), LessRecord());
|
|
|
|
}
|
|
|
|
|
2010-11-02 19:10:06 +01:00
|
|
|
/// getRegisterByName - If there is a register with the specific AsmName,
|
|
|
|
/// return it.
|
|
|
|
const CodeGenRegister *CodeGenTarget::getRegisterByName(StringRef Name) const {
|
2011-06-18 06:26:06 +02:00
|
|
|
const std::vector<CodeGenRegister*> &Regs = getRegBank().getRegisters();
|
|
|
|
for (unsigned i = 0, e = Regs.size(); i != e; ++i)
|
|
|
|
if (Regs[i]->TheDef->getValueAsString("AsmName") == Name)
|
|
|
|
return Regs[i];
|
2011-03-11 02:27:24 +01:00
|
|
|
|
2010-11-02 19:10:06 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-03-15 07:00:16 +01:00
|
|
|
std::vector<MVT::SimpleValueType> CodeGenTarget::
|
|
|
|
getRegisterVTs(Record *R) const {
|
2011-06-15 06:50:36 +02:00
|
|
|
const CodeGenRegister *Reg = getRegBank().getReg(R);
|
2010-03-15 07:00:16 +01:00
|
|
|
std::vector<MVT::SimpleValueType> Result;
|
2011-09-30 00:28:37 +02:00
|
|
|
ArrayRef<CodeGenRegisterClass*> RCs = getRegBank().getRegClasses();
|
2006-05-16 09:05:30 +02:00
|
|
|
for (unsigned i = 0, e = RCs.size(); i != e; ++i) {
|
2011-09-30 00:28:37 +02:00
|
|
|
const CodeGenRegisterClass &RC = *RCs[i];
|
2011-06-15 06:50:36 +02:00
|
|
|
if (RC.contains(Reg)) {
|
|
|
|
const std::vector<MVT::SimpleValueType> &InVTs = RC.getValueTypes();
|
|
|
|
Result.insert(Result.end(), InVTs.begin(), InVTs.end());
|
2006-05-16 09:05:30 +02:00
|
|
|
}
|
|
|
|
}
|
2011-03-11 02:27:24 +01:00
|
|
|
|
2010-03-27 21:32:26 +01:00
|
|
|
// Remove duplicates.
|
|
|
|
array_pod_sort(Result.begin(), Result.end());
|
|
|
|
Result.erase(std::unique(Result.begin(), Result.end()), Result.end());
|
2006-05-16 09:05:30 +02:00
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-08 23:43:21 +02:00
|
|
|
void CodeGenTarget::ReadLegalValueTypes() const {
|
2011-09-30 00:28:37 +02:00
|
|
|
ArrayRef<CodeGenRegisterClass*> RCs = getRegBank().getRegClasses();
|
2005-09-08 23:43:21 +02:00
|
|
|
for (unsigned i = 0, e = RCs.size(); i != e; ++i)
|
2011-09-30 00:28:37 +02:00
|
|
|
for (unsigned ri = 0, re = RCs[i]->VTs.size(); ri != re; ++ri)
|
|
|
|
LegalValueTypes.push_back(RCs[i]->VTs[ri]);
|
2011-03-11 02:27:24 +01:00
|
|
|
|
2005-10-14 05:54:49 +02:00
|
|
|
// Remove duplicates.
|
|
|
|
std::sort(LegalValueTypes.begin(), LegalValueTypes.end());
|
|
|
|
LegalValueTypes.erase(std::unique(LegalValueTypes.begin(),
|
|
|
|
LegalValueTypes.end()),
|
|
|
|
LegalValueTypes.end());
|
2005-09-08 23:43:21 +02:00
|
|
|
}
|
2004-08-21 06:05:00 +02:00
|
|
|
|
2004-08-15 00:50:53 +02:00
|
|
|
|
2004-08-01 07:04:00 +02:00
|
|
|
void CodeGenTarget::ReadInstructions() const {
|
|
|
|
std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
|
2006-01-27 02:45:06 +01:00
|
|
|
if (Insts.size() <= 2)
|
2004-08-01 07:04:00 +02:00
|
|
|
throw std::string("No 'Instruction' subclasses defined!");
|
|
|
|
|
2006-01-27 02:45:06 +01:00
|
|
|
// Parse the instructions defined in the .td file.
|
2010-11-01 03:15:23 +01:00
|
|
|
for (unsigned i = 0, e = Insts.size(); i != e; ++i)
|
|
|
|
Instructions[Insts[i]] = new CodeGenInstruction(Insts[i]);
|
2004-08-01 07:04:00 +02:00
|
|
|
}
|
|
|
|
|
2010-03-19 01:23:20 +01:00
|
|
|
static const CodeGenInstruction *
|
|
|
|
GetInstByName(const char *Name,
|
2011-03-11 02:27:24 +01:00
|
|
|
const DenseMap<const Record*, CodeGenInstruction*> &Insts,
|
2010-12-13 01:23:57 +01:00
|
|
|
RecordKeeper &Records) {
|
2010-03-19 02:07:44 +01:00
|
|
|
const Record *Rec = Records.getDef(Name);
|
2011-03-11 02:27:24 +01:00
|
|
|
|
2010-03-19 02:07:44 +01:00
|
|
|
DenseMap<const Record*, CodeGenInstruction*>::const_iterator
|
|
|
|
I = Insts.find(Rec);
|
|
|
|
if (Rec == 0 || I == Insts.end())
|
2010-03-19 01:23:20 +01:00
|
|
|
throw std::string("Could not find '") + Name + "' instruction!";
|
2010-03-19 02:07:44 +01:00
|
|
|
return I->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
/// SortInstByName - Sorting predicate to sort instructions by name.
|
|
|
|
///
|
|
|
|
struct SortInstByName {
|
|
|
|
bool operator()(const CodeGenInstruction *Rec1,
|
|
|
|
const CodeGenInstruction *Rec2) const {
|
|
|
|
return Rec1->TheDef->getName() < Rec2->TheDef->getName();
|
|
|
|
}
|
|
|
|
};
|
2010-03-19 01:23:20 +01:00
|
|
|
}
|
|
|
|
|
2005-01-22 19:58:51 +01:00
|
|
|
/// getInstructionsByEnumValue - Return all of the instructions defined by the
|
|
|
|
/// target, ordered by their enum value.
|
2010-03-19 02:00:55 +01:00
|
|
|
void CodeGenTarget::ComputeInstrsByEnum() const {
|
2010-07-02 23:44:22 +02:00
|
|
|
// The ordering here must match the ordering in TargetOpcodes.h.
|
|
|
|
const char *const FixedInstrs[] = {
|
|
|
|
"PHI",
|
|
|
|
"INLINEASM",
|
2010-07-17 00:20:36 +02:00
|
|
|
"PROLOG_LABEL",
|
2010-07-02 23:44:22 +02:00
|
|
|
"EH_LABEL",
|
|
|
|
"GC_LABEL",
|
|
|
|
"KILL",
|
|
|
|
"EXTRACT_SUBREG",
|
|
|
|
"INSERT_SUBREG",
|
|
|
|
"IMPLICIT_DEF",
|
|
|
|
"SUBREG_TO_REG",
|
|
|
|
"COPY_TO_REGCLASS",
|
|
|
|
"DBG_VALUE",
|
|
|
|
"REG_SEQUENCE",
|
2010-07-03 00:29:50 +02:00
|
|
|
"COPY",
|
2011-12-06 23:12:01 +01:00
|
|
|
"BUNDLE",
|
2010-07-02 23:44:22 +02:00
|
|
|
0
|
|
|
|
};
|
2010-03-19 02:07:44 +01:00
|
|
|
const DenseMap<const Record*, CodeGenInstruction*> &Insts = getInstructions();
|
2010-07-02 23:44:22 +02:00
|
|
|
for (const char *const *p = FixedInstrs; *p; ++p) {
|
2010-12-13 01:23:57 +01:00
|
|
|
const CodeGenInstruction *Instr = GetInstByName(*p, Insts, Records);
|
2010-07-02 23:44:22 +02:00
|
|
|
assert(Instr && "Missing target independent instruction");
|
|
|
|
assert(Instr->Namespace == "TargetOpcode" && "Bad namespace");
|
|
|
|
InstrsByEnum.push_back(Instr);
|
|
|
|
}
|
2010-03-19 02:07:44 +01:00
|
|
|
unsigned EndOfPredefines = InstrsByEnum.size();
|
2010-07-02 23:44:22 +02:00
|
|
|
|
2010-03-19 02:07:44 +01:00
|
|
|
for (DenseMap<const Record*, CodeGenInstruction*>::const_iterator
|
|
|
|
I = Insts.begin(), E = Insts.end(); I != E; ++I) {
|
|
|
|
const CodeGenInstruction *CGI = I->second;
|
2010-07-02 23:44:22 +02:00
|
|
|
if (CGI->Namespace != "TargetOpcode")
|
2010-03-19 02:00:55 +01:00
|
|
|
InstrsByEnum.push_back(CGI);
|
|
|
|
}
|
2010-07-02 23:44:22 +02:00
|
|
|
|
|
|
|
assert(InstrsByEnum.size() == Insts.size() && "Missing predefined instr");
|
|
|
|
|
2010-03-19 02:07:44 +01:00
|
|
|
// All of the instructions are now in random order based on the map iteration.
|
|
|
|
// Sort them by name.
|
|
|
|
std::sort(InstrsByEnum.begin()+EndOfPredefines, InstrsByEnum.end(),
|
|
|
|
SortInstByName());
|
2005-01-22 19:58:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-10-14 07:50:43 +02:00
|
|
|
/// isLittleEndianEncoding - Return whether this target encodes its instruction
|
|
|
|
/// in little-endian format, i.e. bits laid out in the order [0..n]
|
|
|
|
///
|
|
|
|
bool CodeGenTarget::isLittleEndianEncoding() const {
|
|
|
|
return getInstructionSet()->getValueAsBit("isLittleEndianEncoding");
|
|
|
|
}
|
|
|
|
|
2005-12-08 03:00:36 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ComplexPattern implementation
|
|
|
|
//
|
|
|
|
ComplexPattern::ComplexPattern(Record *R) {
|
2005-12-08 03:14:08 +01:00
|
|
|
Ty = ::getValueType(R->getValueAsDef("Ty"));
|
|
|
|
NumOperands = R->getValueAsInt("NumOperands");
|
|
|
|
SelectFunc = R->getValueAsString("SelectFunc");
|
|
|
|
RootNodes = R->getValueAsListOfDefs("RootNodes");
|
2006-10-11 23:02:01 +02:00
|
|
|
|
|
|
|
// Parse the properties.
|
|
|
|
Properties = 0;
|
|
|
|
std::vector<Record*> PropList = R->getValueAsListOfDefs("Properties");
|
|
|
|
for (unsigned i = 0, e = PropList.size(); i != e; ++i)
|
|
|
|
if (PropList[i]->getName() == "SDNPHasChain") {
|
|
|
|
Properties |= 1 << SDNPHasChain;
|
2010-12-23 19:28:41 +01:00
|
|
|
} else if (PropList[i]->getName() == "SDNPOptInGlue") {
|
|
|
|
Properties |= 1 << SDNPOptInGlue;
|
2008-01-10 08:59:24 +01:00
|
|
|
} else if (PropList[i]->getName() == "SDNPMayStore") {
|
|
|
|
Properties |= 1 << SDNPMayStore;
|
|
|
|
} else if (PropList[i]->getName() == "SDNPMayLoad") {
|
|
|
|
Properties |= 1 << SDNPMayLoad;
|
|
|
|
} else if (PropList[i]->getName() == "SDNPSideEffect") {
|
|
|
|
Properties |= 1 << SDNPSideEffect;
|
2008-06-25 10:15:39 +02:00
|
|
|
} else if (PropList[i]->getName() == "SDNPMemOperand") {
|
|
|
|
Properties |= 1 << SDNPMemOperand;
|
2010-03-19 06:07:09 +01:00
|
|
|
} else if (PropList[i]->getName() == "SDNPVariadic") {
|
|
|
|
Properties |= 1 << SDNPVariadic;
|
2010-09-21 22:31:19 +02:00
|
|
|
} else if (PropList[i]->getName() == "SDNPWantRoot") {
|
|
|
|
Properties |= 1 << SDNPWantRoot;
|
|
|
|
} else if (PropList[i]->getName() == "SDNPWantParent") {
|
|
|
|
Properties |= 1 << SDNPWantParent;
|
2006-10-11 23:02:01 +02:00
|
|
|
} else {
|
2009-07-03 02:10:29 +02:00
|
|
|
errs() << "Unsupported SD Node property '" << PropList[i]->getName()
|
|
|
|
<< "' on ComplexPattern '" << R->getName() << "'!\n";
|
2006-10-11 23:02:01 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
2005-12-08 03:00:36 +01:00
|
|
|
}
|
2005-12-08 03:14:08 +01:00
|
|
|
|
2006-03-24 20:49:31 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// CodeGenIntrinsic Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-02-05 02:49:45 +01:00
|
|
|
std::vector<CodeGenIntrinsic> llvm::LoadIntrinsics(const RecordKeeper &RC,
|
|
|
|
bool TargetOnly) {
|
2006-03-24 20:49:31 +01:00
|
|
|
std::vector<Record*> I = RC.getAllDerivedDefinitions("Intrinsic");
|
2011-03-11 02:27:24 +01:00
|
|
|
|
2006-03-28 00:48:18 +02:00
|
|
|
std::vector<CodeGenIntrinsic> Result;
|
2006-03-28 02:15:00 +02:00
|
|
|
|
2009-02-05 02:49:45 +01:00
|
|
|
for (unsigned i = 0, e = I.size(); i != e; ++i) {
|
|
|
|
bool isTarget = I[i]->getValueAsBit("isTarget");
|
|
|
|
if (isTarget == TargetOnly)
|
|
|
|
Result.push_back(CodeGenIntrinsic(I[i]));
|
|
|
|
}
|
2006-03-28 00:48:18 +02:00
|
|
|
return Result;
|
2006-03-24 20:49:31 +01:00
|
|
|
}
|
|
|
|
|
2008-04-03 02:02:49 +02:00
|
|
|
CodeGenIntrinsic::CodeGenIntrinsic(Record *R) {
|
2006-03-24 21:25:01 +01:00
|
|
|
TheDef = R;
|
2006-03-24 20:49:31 +01:00
|
|
|
std::string DefName = R->getName();
|
2010-08-06 01:36:21 +02:00
|
|
|
ModRef = ReadWriteMem;
|
2007-04-01 09:20:02 +02:00
|
|
|
isOverloaded = false;
|
2008-06-16 22:29:38 +02:00
|
|
|
isCommutative = false;
|
2011-05-28 08:31:34 +02:00
|
|
|
canThrow = false;
|
2011-03-11 02:27:24 +01:00
|
|
|
|
|
|
|
if (DefName.size() <= 4 ||
|
2008-11-13 10:08:33 +01:00
|
|
|
std::string(DefName.begin(), DefName.begin() + 4) != "int_")
|
2006-03-24 20:49:31 +01:00
|
|
|
throw "Intrinsic '" + DefName + "' does not start with 'int_'!";
|
2008-11-13 10:08:33 +01:00
|
|
|
|
2006-03-24 20:49:31 +01:00
|
|
|
EnumName = std::string(DefName.begin()+4, DefName.end());
|
2008-11-13 10:08:33 +01:00
|
|
|
|
2006-03-24 20:49:31 +01:00
|
|
|
if (R->getValue("GCCBuiltinName")) // Ignore a missing GCCBuiltinName field.
|
|
|
|
GCCBuiltinName = R->getValueAsString("GCCBuiltinName");
|
2008-11-13 10:08:33 +01:00
|
|
|
|
|
|
|
TargetPrefix = R->getValueAsString("TargetPrefix");
|
2006-03-24 20:49:31 +01:00
|
|
|
Name = R->getValueAsString("LLVMName");
|
2008-11-13 10:08:33 +01:00
|
|
|
|
2006-03-24 20:49:31 +01:00
|
|
|
if (Name == "") {
|
|
|
|
// If an explicit name isn't specified, derive one from the DefName.
|
|
|
|
Name = "llvm.";
|
2008-11-13 10:08:33 +01:00
|
|
|
|
2006-03-24 20:49:31 +01:00
|
|
|
for (unsigned i = 0, e = EnumName.size(); i != e; ++i)
|
2008-11-13 10:08:33 +01:00
|
|
|
Name += (EnumName[i] == '_') ? '.' : EnumName[i];
|
2006-03-24 20:49:31 +01:00
|
|
|
} else {
|
|
|
|
// Verify it starts with "llvm.".
|
2011-03-11 02:27:24 +01:00
|
|
|
if (Name.size() <= 5 ||
|
2008-11-13 10:08:33 +01:00
|
|
|
std::string(Name.begin(), Name.begin() + 5) != "llvm.")
|
2006-03-24 20:49:31 +01:00
|
|
|
throw "Intrinsic '" + DefName + "'s name does not start with 'llvm.'!";
|
|
|
|
}
|
2011-03-11 02:27:24 +01:00
|
|
|
|
2006-03-24 20:49:31 +01:00
|
|
|
// If TargetPrefix is specified, make sure that Name starts with
|
|
|
|
// "llvm.<targetprefix>.".
|
|
|
|
if (!TargetPrefix.empty()) {
|
|
|
|
if (Name.size() < 6+TargetPrefix.size() ||
|
2008-11-13 10:08:33 +01:00
|
|
|
std::string(Name.begin() + 5, Name.begin() + 6 + TargetPrefix.size())
|
|
|
|
!= (TargetPrefix + "."))
|
|
|
|
throw "Intrinsic '" + DefName + "' does not start with 'llvm." +
|
2006-03-24 20:49:31 +01:00
|
|
|
TargetPrefix + ".'!";
|
|
|
|
}
|
2011-03-11 02:27:24 +01:00
|
|
|
|
2008-11-13 10:08:33 +01:00
|
|
|
// Parse the list of return types.
|
2009-08-11 22:47:22 +02:00
|
|
|
std::vector<MVT::SimpleValueType> OverloadedVTs;
|
2011-07-30 00:43:06 +02:00
|
|
|
ListInit *TypeList = R->getValueAsListInit("RetTypes");
|
2006-03-24 20:49:31 +01:00
|
|
|
for (unsigned i = 0, e = TypeList->getSize(); i != e; ++i) {
|
2007-02-27 23:08:27 +01:00
|
|
|
Record *TyEl = TypeList->getElementAsRecord(i);
|
2006-03-24 20:49:31 +01:00
|
|
|
assert(TyEl->isSubClassOf("LLVMType") && "Expected a type!");
|
2009-08-11 22:47:22 +02:00
|
|
|
MVT::SimpleValueType VT;
|
2009-01-07 01:09:01 +01:00
|
|
|
if (TyEl->isSubClassOf("LLVMMatchType")) {
|
2009-04-16 23:51:05 +02:00
|
|
|
unsigned MatchTy = TyEl->getValueAsInt("Number");
|
|
|
|
assert(MatchTy < OverloadedVTs.size() &&
|
|
|
|
"Invalid matching number!");
|
|
|
|
VT = OverloadedVTs[MatchTy];
|
2009-01-07 01:09:01 +01:00
|
|
|
// It only makes sense to use the extended and truncated vector element
|
|
|
|
// variants with iAny types; otherwise, if the intrinsic is not
|
|
|
|
// overloaded, all the types can be specified directly.
|
|
|
|
assert(((!TyEl->isSubClassOf("LLVMExtendedElementVectorType") &&
|
|
|
|
!TyEl->isSubClassOf("LLVMTruncatedElementVectorType")) ||
|
2009-08-11 22:47:22 +02:00
|
|
|
VT == MVT::iAny || VT == MVT::vAny) &&
|
2009-08-11 07:03:38 +02:00
|
|
|
"Expected iAny or vAny type");
|
2009-04-16 23:51:05 +02:00
|
|
|
} else {
|
2009-01-07 01:09:01 +01:00
|
|
|
VT = getValueType(TyEl->getValueAsDef("VT"));
|
2009-04-16 23:51:05 +02:00
|
|
|
}
|
2009-08-11 03:14:02 +02:00
|
|
|
if (EVT(VT).isOverloaded()) {
|
2009-04-16 23:51:05 +02:00
|
|
|
OverloadedVTs.push_back(VT);
|
2010-03-24 00:46:27 +01:00
|
|
|
isOverloaded = true;
|
2009-04-16 23:51:05 +02:00
|
|
|
}
|
2010-03-24 00:46:27 +01:00
|
|
|
|
|
|
|
// Reject invalid types.
|
|
|
|
if (VT == MVT::isVoid)
|
|
|
|
throw "Intrinsic '" + DefName + " has void in result type list!";
|
2011-03-11 02:27:24 +01:00
|
|
|
|
2008-11-13 10:08:33 +01:00
|
|
|
IS.RetVTs.push_back(VT);
|
|
|
|
IS.RetTypeDefs.push_back(TyEl);
|
2006-03-24 20:49:31 +01:00
|
|
|
}
|
2011-03-11 02:27:24 +01:00
|
|
|
|
2008-11-13 10:08:33 +01:00
|
|
|
// Parse the list of parameter types.
|
|
|
|
TypeList = R->getValueAsListInit("ParamTypes");
|
|
|
|
for (unsigned i = 0, e = TypeList->getSize(); i != e; ++i) {
|
|
|
|
Record *TyEl = TypeList->getElementAsRecord(i);
|
|
|
|
assert(TyEl->isSubClassOf("LLVMType") && "Expected a type!");
|
2009-08-11 22:47:22 +02:00
|
|
|
MVT::SimpleValueType VT;
|
2009-01-07 01:09:01 +01:00
|
|
|
if (TyEl->isSubClassOf("LLVMMatchType")) {
|
|
|
|
unsigned MatchTy = TyEl->getValueAsInt("Number");
|
2009-04-16 23:51:05 +02:00
|
|
|
assert(MatchTy < OverloadedVTs.size() &&
|
|
|
|
"Invalid matching number!");
|
|
|
|
VT = OverloadedVTs[MatchTy];
|
2009-01-07 01:09:01 +01:00
|
|
|
// It only makes sense to use the extended and truncated vector element
|
|
|
|
// variants with iAny types; otherwise, if the intrinsic is not
|
|
|
|
// overloaded, all the types can be specified directly.
|
|
|
|
assert(((!TyEl->isSubClassOf("LLVMExtendedElementVectorType") &&
|
|
|
|
!TyEl->isSubClassOf("LLVMTruncatedElementVectorType")) ||
|
2009-08-11 22:47:22 +02:00
|
|
|
VT == MVT::iAny || VT == MVT::vAny) &&
|
2009-08-11 07:03:38 +02:00
|
|
|
"Expected iAny or vAny type");
|
2009-01-07 01:09:01 +01:00
|
|
|
} else
|
|
|
|
VT = getValueType(TyEl->getValueAsDef("VT"));
|
2011-03-11 02:27:24 +01:00
|
|
|
|
2009-08-11 03:14:02 +02:00
|
|
|
if (EVT(VT).isOverloaded()) {
|
2009-04-16 23:51:05 +02:00
|
|
|
OverloadedVTs.push_back(VT);
|
2010-03-24 00:46:27 +01:00
|
|
|
isOverloaded = true;
|
2009-04-16 23:51:05 +02:00
|
|
|
}
|
2011-03-11 02:27:24 +01:00
|
|
|
|
2010-03-24 00:46:27 +01:00
|
|
|
// Reject invalid types.
|
|
|
|
if (VT == MVT::isVoid && i != e-1 /*void at end means varargs*/)
|
|
|
|
throw "Intrinsic '" + DefName + " has void in result type list!";
|
2011-03-11 02:27:24 +01:00
|
|
|
|
2008-11-13 10:08:33 +01:00
|
|
|
IS.ParamVTs.push_back(VT);
|
|
|
|
IS.ParamTypeDefs.push_back(TyEl);
|
|
|
|
}
|
|
|
|
|
2006-03-24 20:49:31 +01:00
|
|
|
// Parse the intrinsic properties.
|
2011-07-30 00:43:06 +02:00
|
|
|
ListInit *PropList = R->getValueAsListInit("Properties");
|
2006-03-24 20:49:31 +01:00
|
|
|
for (unsigned i = 0, e = PropList->getSize(); i != e; ++i) {
|
2007-02-27 23:08:27 +01:00
|
|
|
Record *Property = PropList->getElementAsRecord(i);
|
2006-03-24 20:49:31 +01:00
|
|
|
assert(Property->isSubClassOf("IntrinsicProperty") &&
|
|
|
|
"Expected a property!");
|
2011-03-11 02:27:24 +01:00
|
|
|
|
2006-04-11 00:02:59 +02:00
|
|
|
if (Property->getName() == "IntrNoMem")
|
2006-03-24 20:49:31 +01:00
|
|
|
ModRef = NoMem;
|
2006-04-11 00:02:59 +02:00
|
|
|
else if (Property->getName() == "IntrReadArgMem")
|
2006-03-24 20:49:31 +01:00
|
|
|
ModRef = ReadArgMem;
|
|
|
|
else if (Property->getName() == "IntrReadMem")
|
|
|
|
ModRef = ReadMem;
|
2010-08-06 01:36:21 +02:00
|
|
|
else if (Property->getName() == "IntrReadWriteArgMem")
|
|
|
|
ModRef = ReadWriteArgMem;
|
2008-06-16 22:29:38 +02:00
|
|
|
else if (Property->getName() == "Commutative")
|
|
|
|
isCommutative = true;
|
2011-05-28 08:31:34 +02:00
|
|
|
else if (Property->getName() == "Throws")
|
|
|
|
canThrow = true;
|
2009-01-12 02:12:03 +01:00
|
|
|
else if (Property->isSubClassOf("NoCapture")) {
|
|
|
|
unsigned ArgNo = Property->getValueAsInt("ArgNo");
|
|
|
|
ArgumentAttributes.push_back(std::make_pair(ArgNo, NoCapture));
|
|
|
|
} else
|
2012-02-05 08:21:30 +01:00
|
|
|
llvm_unreachable("Unknown property!");
|
2006-03-24 20:49:31 +01:00
|
|
|
}
|
2011-05-28 08:31:34 +02:00
|
|
|
|
|
|
|
// Sort the argument attributes for later benefit.
|
|
|
|
std::sort(ArgumentAttributes.begin(), ArgumentAttributes.end());
|
2006-03-24 20:49:31 +01:00
|
|
|
}
|