2003-08-03 17:24:10 +00:00
|
|
|
//===- InstrInfoEmitter.h - Generate a Instruction Set Desc. ----*- C++ -*-===//
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 20:20:30 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and 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-03 17:24:10 +00:00
|
|
|
//
|
|
|
|
// This tablegen backend is responsible for emitting a description of the target
|
|
|
|
// instruction set for the code generator.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef INSTRINFO_EMITTER_H
|
|
|
|
#define INSTRINFO_EMITTER_H
|
|
|
|
|
2003-08-06 04:32:07 +00:00
|
|
|
#include "TableGenBackend.h"
|
2005-08-18 21:36:47 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
2003-11-11 22:41:34 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2003-08-03 21:57:51 +00:00
|
|
|
class StringInit;
|
|
|
|
class IntInit;
|
2003-08-06 04:32:07 +00:00
|
|
|
class ListInit;
|
2004-10-27 16:14:51 +00:00
|
|
|
struct CodeGenInstruction;
|
2003-08-03 17:24:10 +00:00
|
|
|
|
2003-08-06 04:32:07 +00:00
|
|
|
class InstrInfoEmitter : public TableGenBackend {
|
2003-08-03 17:24:10 +00:00
|
|
|
RecordKeeper &Records;
|
|
|
|
public:
|
|
|
|
InstrInfoEmitter(RecordKeeper &R) : Records(R) {}
|
2005-04-22 00:00:37 +00:00
|
|
|
|
2003-08-03 17:24:10 +00:00
|
|
|
// run - Output the instruction set description, returning true on failure.
|
2003-08-03 21:57:51 +00:00
|
|
|
void run(std::ostream &OS);
|
2003-08-03 17:24:10 +00:00
|
|
|
|
|
|
|
// runEnums - Print out enum values for all of the instructions.
|
2003-08-03 21:57:51 +00:00
|
|
|
void runEnums(std::ostream &OS);
|
|
|
|
private:
|
2005-08-18 21:36:47 +00:00
|
|
|
void printDefList(const std::vector<Record*> &Uses, unsigned Num,
|
2003-08-06 04:32:07 +00:00
|
|
|
std::ostream &OS) const;
|
2004-08-01 05:04:00 +00:00
|
|
|
void emitRecord(const CodeGenInstruction &Inst, unsigned Num,
|
2005-08-18 21:36:47 +00:00
|
|
|
Record *InstrInfo,
|
|
|
|
std::map<ListInit*, unsigned> &ListNumbers,
|
2005-08-19 18:46:26 +00:00
|
|
|
std::map<std::vector<Record*>, unsigned> &OpInfo,
|
2005-08-18 21:36:47 +00:00
|
|
|
std::ostream &OS);
|
2003-08-03 21:57:51 +00:00
|
|
|
void emitShiftedValue(Record *R, StringInit *Val, IntInit *Shift,
|
|
|
|
std::ostream &OS);
|
2003-08-03 17:24:10 +00:00
|
|
|
};
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2003-08-03 17:24:10 +00:00
|
|
|
#endif
|