2003-10-06 03:27:59 +08:00
|
|
|
//===- CodeEmitterGen.h - Code Emitter Generator ----------------*- C++ -*-===//
|
2005-04-22 08:00:37 +08:00
|
|
|
//
|
2003-10-21 04:20:30 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:37:13 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 08:00:37 +08:00
|
|
|
//
|
2003-10-21 04:20:30 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-10-06 03:27:59 +08:00
|
|
|
//
|
|
|
|
// FIXME: document
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef CODEMITTERGEN_H
|
|
|
|
#define CODEMITTERGEN_H
|
|
|
|
|
2011-10-02 00:41:13 +08:00
|
|
|
#include "llvm/TableGen/TableGenBackend.h"
|
2004-10-14 13:53:01 +08:00
|
|
|
#include <vector>
|
2006-07-14 05:02:53 +08:00
|
|
|
#include <string>
|
2003-10-06 03:27:59 +08:00
|
|
|
|
2003-11-12 06:41:34 +08:00
|
|
|
namespace llvm {
|
|
|
|
|
2004-10-14 13:53:01 +08:00
|
|
|
class RecordVal;
|
2006-07-14 05:02:53 +08:00
|
|
|
class BitsInit;
|
2010-11-15 14:59:17 +08:00
|
|
|
class CodeGenTarget;
|
2004-10-14 13:53:01 +08:00
|
|
|
|
2003-10-06 03:27:59 +08:00
|
|
|
class CodeEmitterGen : public TableGenBackend {
|
|
|
|
RecordKeeper &Records;
|
|
|
|
public:
|
|
|
|
CodeEmitterGen(RecordKeeper &R) : Records(R) {}
|
2005-04-22 08:00:37 +08:00
|
|
|
|
2003-10-06 03:27:59 +08:00
|
|
|
// run - Output the code emitter
|
2009-07-03 08:10:29 +08:00
|
|
|
void run(raw_ostream &o);
|
2003-10-06 03:27:59 +08:00
|
|
|
private:
|
2009-07-03 08:10:29 +08:00
|
|
|
void emitMachineOpEmitter(raw_ostream &o, const std::string &Namespace);
|
|
|
|
void emitGetValueBit(raw_ostream &o, const std::string &Namespace);
|
2006-07-14 05:02:53 +08:00
|
|
|
void reverseBits(std::vector<Record*> &Insts);
|
2011-07-30 06:43:06 +08:00
|
|
|
int getVariableBit(const std::string &VarName, BitsInit *BI, int bit);
|
2010-11-15 14:59:17 +08:00
|
|
|
std::string getInstructionCase(Record *R, CodeGenTarget &Target);
|
|
|
|
void
|
2011-07-30 06:43:06 +08:00
|
|
|
AddCodeToMergeInOperand(Record *R, BitsInit *BI, const std::string &VarName,
|
2011-07-12 07:06:52 +08:00
|
|
|
unsigned &NumberedOp,
|
2010-11-15 14:59:17 +08:00
|
|
|
std::string &Case, CodeGenTarget &Target);
|
|
|
|
|
2003-10-06 03:27:59 +08:00
|
|
|
};
|
|
|
|
|
2003-11-12 06:41:34 +08:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2003-10-06 03:27:59 +08:00
|
|
|
#endif
|