2004-08-01 04:04:35 +00:00
|
|
|
//===- CodeGenTarget.h - Target Class Wrapper -------------------*- C++ -*-===//
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 20:20:30 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:37:13 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 20:20:30 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-08-07 05:38:11 +00:00
|
|
|
//
|
2004-08-01 04:04:35 +00:00
|
|
|
// This file defines wrappers for the Target class and related global
|
|
|
|
// functionality. 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.
|
2003-08-07 05:38:11 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-08-01 04:04:35 +00:00
|
|
|
#ifndef CODEGEN_TARGET_H
|
|
|
|
#define CODEGEN_TARGET_H
|
2003-08-07 05:38:11 +00:00
|
|
|
|
2004-08-16 01:10:21 +00:00
|
|
|
#include "CodeGenRegisters.h"
|
2004-08-01 05:04:00 +00:00
|
|
|
#include "CodeGenInstruction.h"
|
2011-10-01 16:41:13 +00:00
|
|
|
#include "llvm/TableGen/Record.h"
|
2010-03-19 01:07:44 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2009-04-13 15:24:11 +00:00
|
|
|
#include <algorithm>
|
2003-11-11 22:41:34 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2004-10-27 16:14:51 +00:00
|
|
|
struct CodeGenRegister;
|
2012-07-07 04:00:00 +00:00
|
|
|
class CodeGenSchedModels;
|
2006-03-27 22:48:18 +00:00
|
|
|
class CodeGenTarget;
|
2003-08-07 05:38:11 +00:00
|
|
|
|
2006-10-11 21:02:01 +00:00
|
|
|
// SelectionDAG node properties.
|
2008-06-25 08:15:39 +00:00
|
|
|
// SDNPMemOperand: indicates that a node touches memory and therefore must
|
|
|
|
// have an associated memory operand that describes the access.
|
2008-01-06 06:44:58 +00:00
|
|
|
enum SDNP {
|
2011-03-11 01:27:24 +00:00
|
|
|
SDNPCommutative,
|
|
|
|
SDNPAssociative,
|
2008-01-06 06:44:58 +00:00
|
|
|
SDNPHasChain,
|
2010-12-23 18:28:41 +00:00
|
|
|
SDNPOutGlue,
|
|
|
|
SDNPInGlue,
|
|
|
|
SDNPOptInGlue,
|
2008-01-10 04:38:57 +00:00
|
|
|
SDNPMayLoad,
|
2008-01-10 05:39:30 +00:00
|
|
|
SDNPMayStore,
|
2008-06-25 08:15:39 +00:00
|
|
|
SDNPSideEffect,
|
2010-03-19 05:07:09 +00:00
|
|
|
SDNPMemOperand,
|
2010-09-21 20:31:19 +00:00
|
|
|
SDNPVariadic,
|
|
|
|
SDNPWantRoot,
|
|
|
|
SDNPWantParent
|
2008-01-06 06:44:58 +00:00
|
|
|
};
|
2006-10-11 21:02:01 +00:00
|
|
|
|
2009-08-11 20:47:22 +00:00
|
|
|
/// getValueType - Return the MVT::SimpleValueType that the specified TableGen
|
2008-06-06 12:08:01 +00:00
|
|
|
/// record corresponds to.
|
2009-08-11 20:47:22 +00:00
|
|
|
MVT::SimpleValueType getValueType(Record *Rec);
|
2003-08-07 05:38:11 +00:00
|
|
|
|
2009-08-11 20:47:22 +00:00
|
|
|
std::string getName(MVT::SimpleValueType T);
|
|
|
|
std::string getEnumName(MVT::SimpleValueType T);
|
2003-08-07 05:38:11 +00:00
|
|
|
|
2008-01-05 22:25:12 +00:00
|
|
|
/// getQualifiedName - Return the name of the specified record, with a
|
|
|
|
/// namespace qualifier if the record contains one.
|
|
|
|
std::string getQualifiedName(const Record *R);
|
2011-03-11 01:27:24 +00:00
|
|
|
|
2003-08-07 05:38:11 +00:00
|
|
|
/// CodeGenTarget - This class corresponds to the Target class in the .td files.
|
|
|
|
///
|
|
|
|
class CodeGenTarget {
|
2010-12-13 00:23:57 +00:00
|
|
|
RecordKeeper &Records;
|
2003-08-07 05:38:11 +00:00
|
|
|
Record *TargetRec;
|
|
|
|
|
2010-03-19 01:07:44 +00:00
|
|
|
mutable DenseMap<const Record*, CodeGenInstruction*> Instructions;
|
2011-06-10 18:40:00 +00:00
|
|
|
mutable CodeGenRegBank *RegBank;
|
2011-06-27 21:06:21 +00:00
|
|
|
mutable std::vector<Record*> RegAltNameIndices;
|
2009-08-11 20:47:22 +00:00
|
|
|
mutable std::vector<MVT::SimpleValueType> LegalValueTypes;
|
2011-06-27 21:06:21 +00:00
|
|
|
void ReadRegAltNameIndices() const;
|
2004-08-21 04:05:00 +00:00
|
|
|
void ReadInstructions() const;
|
2005-09-08 21:43:21 +00:00
|
|
|
void ReadLegalValueTypes() const;
|
2011-03-11 01:27:24 +00:00
|
|
|
|
2012-07-07 04:00:00 +00:00
|
|
|
mutable CodeGenSchedModels *SchedModels;
|
|
|
|
|
2010-03-19 01:00:55 +00:00
|
|
|
mutable std::vector<const CodeGenInstruction*> InstrsByEnum;
|
2003-08-07 05:38:11 +00:00
|
|
|
public:
|
2010-12-13 00:23:57 +00:00
|
|
|
CodeGenTarget(RecordKeeper &Records);
|
2012-07-07 04:00:00 +00:00
|
|
|
~CodeGenTarget();
|
2003-08-07 05:38:11 +00:00
|
|
|
|
|
|
|
Record *getTargetRecord() const { return TargetRec; }
|
|
|
|
const std::string &getName() const;
|
|
|
|
|
2008-08-20 21:45:57 +00:00
|
|
|
/// getInstNamespace - Return the target-specific instruction namespace.
|
|
|
|
///
|
|
|
|
std::string getInstNamespace() const;
|
|
|
|
|
2004-08-14 22:50:53 +00:00
|
|
|
/// getInstructionSet - Return the InstructionSet object.
|
2004-08-01 05:04:00 +00:00
|
|
|
///
|
2003-08-07 05:38:11 +00:00
|
|
|
Record *getInstructionSet() const;
|
|
|
|
|
2009-07-29 00:02:19 +00:00
|
|
|
/// getAsmParser - Return the AssemblyParser definition for this target.
|
|
|
|
///
|
|
|
|
Record *getAsmParser() const;
|
|
|
|
|
2012-01-09 19:13:28 +00:00
|
|
|
/// getAsmParserVariant - Return the AssmblyParserVariant definition for
|
|
|
|
/// this target.
|
|
|
|
///
|
|
|
|
Record *getAsmParserVariant(unsigned i) const;
|
|
|
|
|
2012-07-07 04:00:00 +00:00
|
|
|
/// getAsmParserVariantCount - Return the AssmblyParserVariant definition
|
2012-01-09 19:13:28 +00:00
|
|
|
/// available for this target.
|
|
|
|
///
|
|
|
|
unsigned getAsmParserVariantCount() const;
|
|
|
|
|
2004-08-14 22:50:53 +00:00
|
|
|
/// getAsmWriter - Return the AssemblyWriter definition for this target.
|
|
|
|
///
|
|
|
|
Record *getAsmWriter() const;
|
|
|
|
|
2011-06-10 18:40:00 +00:00
|
|
|
/// getRegBank - Return the register bank description.
|
|
|
|
CodeGenRegBank &getRegBank() const;
|
|
|
|
|
2010-11-02 18:10:06 +00:00
|
|
|
/// getRegisterByName - If there is a register with the specific AsmName,
|
|
|
|
/// return it.
|
|
|
|
const CodeGenRegister *getRegisterByName(StringRef Name) const;
|
2004-08-01 05:04:00 +00:00
|
|
|
|
2011-06-27 21:06:21 +00:00
|
|
|
const std::vector<Record*> &getRegAltNameIndices() const {
|
|
|
|
if (RegAltNameIndices.empty()) ReadRegAltNameIndices();
|
|
|
|
return RegAltNameIndices;
|
|
|
|
}
|
|
|
|
|
2005-12-01 00:06:14 +00:00
|
|
|
const CodeGenRegisterClass &getRegisterClass(Record *R) const {
|
2011-06-15 00:20:40 +00:00
|
|
|
return *getRegBank().getRegClass(R);
|
2005-12-05 02:35:08 +00:00
|
|
|
}
|
2006-05-16 07:05:30 +00:00
|
|
|
|
2008-06-06 12:08:01 +00:00
|
|
|
/// getRegisterVTs - Find the union of all possible SimpleValueTypes for the
|
2006-05-16 07:05:30 +00:00
|
|
|
/// specified physical register.
|
2010-03-15 06:00:16 +00:00
|
|
|
std::vector<MVT::SimpleValueType> getRegisterVTs(Record *R) const;
|
2011-03-11 01:27:24 +00:00
|
|
|
|
2009-08-11 20:47:22 +00:00
|
|
|
const std::vector<MVT::SimpleValueType> &getLegalValueTypes() const {
|
2005-09-08 21:43:21 +00:00
|
|
|
if (LegalValueTypes.empty()) ReadLegalValueTypes();
|
|
|
|
return LegalValueTypes;
|
|
|
|
}
|
2011-03-11 01:27:24 +00:00
|
|
|
|
2005-09-08 21:43:21 +00:00
|
|
|
/// isLegalValueType - Return true if the specified value type is natively
|
|
|
|
/// supported by the target (i.e. there are registers that directly hold it).
|
2009-08-11 20:47:22 +00:00
|
|
|
bool isLegalValueType(MVT::SimpleValueType VT) const {
|
|
|
|
const std::vector<MVT::SimpleValueType> &LegalVTs = getLegalValueTypes();
|
2005-09-08 21:43:21 +00:00
|
|
|
for (unsigned i = 0, e = LegalVTs.size(); i != e; ++i)
|
|
|
|
if (LegalVTs[i] == VT) return true;
|
2011-03-11 01:27:24 +00:00
|
|
|
return false;
|
2005-09-08 21:43:21 +00:00
|
|
|
}
|
2004-08-21 04:05:00 +00:00
|
|
|
|
2012-07-07 04:00:00 +00:00
|
|
|
CodeGenSchedModels &getSchedModels() const;
|
|
|
|
|
2010-03-19 00:18:23 +00:00
|
|
|
private:
|
2010-03-19 01:07:44 +00:00
|
|
|
DenseMap<const Record*, CodeGenInstruction*> &getInstructions() const {
|
2004-08-01 05:04:00 +00:00
|
|
|
if (Instructions.empty()) ReadInstructions();
|
|
|
|
return Instructions;
|
|
|
|
}
|
2010-03-19 00:07:20 +00:00
|
|
|
public:
|
2011-03-11 01:27:24 +00:00
|
|
|
|
2010-03-19 01:07:44 +00:00
|
|
|
CodeGenInstruction &getInstruction(const Record *InstRec) const {
|
|
|
|
if (Instructions.empty()) ReadInstructions();
|
|
|
|
DenseMap<const Record*, CodeGenInstruction*>::iterator I =
|
|
|
|
Instructions.find(InstRec);
|
|
|
|
assert(I != Instructions.end() && "Not an instruction");
|
|
|
|
return *I->second;
|
|
|
|
}
|
2005-09-14 18:02:53 +00:00
|
|
|
|
2005-01-22 18:58:51 +00:00
|
|
|
/// getInstructionsByEnumValue - Return all of the instructions defined by the
|
|
|
|
/// target, ordered by their enum value.
|
2010-03-19 01:00:55 +00:00
|
|
|
const std::vector<const CodeGenInstruction*> &
|
|
|
|
getInstructionsByEnumValue() const {
|
2010-03-19 00:34:35 +00:00
|
|
|
if (InstrsByEnum.empty()) ComputeInstrsByEnum();
|
|
|
|
return InstrsByEnum;
|
|
|
|
}
|
2005-01-22 18:58:51 +00:00
|
|
|
|
2010-03-19 01:00:55 +00:00
|
|
|
typedef std::vector<const CodeGenInstruction*>::const_iterator inst_iterator;
|
|
|
|
inst_iterator inst_begin() const{return getInstructionsByEnumValue().begin();}
|
|
|
|
inst_iterator inst_end() const { return getInstructionsByEnumValue().end(); }
|
2011-03-11 01:27:24 +00:00
|
|
|
|
|
|
|
|
2004-10-14 05:50:43 +00:00
|
|
|
/// isLittleEndianEncoding - are instruction bit patterns defined as [0..n]?
|
|
|
|
///
|
|
|
|
bool isLittleEndianEncoding() const;
|
2011-03-11 01:27:24 +00:00
|
|
|
|
2012-08-23 19:34:41 +00:00
|
|
|
/// guessInstructionProperties - should we just guess unset instruction
|
|
|
|
/// properties?
|
|
|
|
bool guessInstructionProperties() const;
|
|
|
|
|
2010-03-19 00:34:35 +00:00
|
|
|
private:
|
2010-03-19 01:00:55 +00:00
|
|
|
void ComputeInstrsByEnum() const;
|
2003-08-07 05:38:11 +00:00
|
|
|
};
|
|
|
|
|
2005-12-08 02:00:36 +00:00
|
|
|
/// ComplexPattern - ComplexPattern info, corresponding to the ComplexPattern
|
|
|
|
/// tablegen class in TargetSelectionDAG.td
|
|
|
|
class ComplexPattern {
|
2009-08-11 20:47:22 +00:00
|
|
|
MVT::SimpleValueType Ty;
|
2005-12-08 02:00:36 +00:00
|
|
|
unsigned NumOperands;
|
|
|
|
std::string SelectFunc;
|
2005-12-08 02:14:08 +00:00
|
|
|
std::vector<Record*> RootNodes;
|
2008-01-31 07:27:46 +00:00
|
|
|
unsigned Properties; // Node properties
|
2005-12-08 02:00:36 +00:00
|
|
|
public:
|
2009-11-06 06:33:01 +00:00
|
|
|
ComplexPattern() : NumOperands(0) {}
|
2005-12-08 02:00:36 +00:00
|
|
|
ComplexPattern(Record *R);
|
|
|
|
|
2009-08-11 20:47:22 +00:00
|
|
|
MVT::SimpleValueType getValueType() const { return Ty; }
|
2005-12-08 02:00:36 +00:00
|
|
|
unsigned getNumOperands() const { return NumOperands; }
|
|
|
|
const std::string &getSelectFunc() const { return SelectFunc; }
|
2005-12-08 02:14:08 +00:00
|
|
|
const std::vector<Record*> &getRootNodes() const {
|
|
|
|
return RootNodes;
|
2005-12-08 02:00:36 +00:00
|
|
|
}
|
2006-10-11 21:02:01 +00:00
|
|
|
bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
|
2005-12-08 02:00:36 +00:00
|
|
|
};
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2003-08-07 05:38:11 +00:00
|
|
|
#endif
|