2005-09-03 09:14:03 +08:00
|
|
|
//===- DAGISelEmitter.h - Generate an instruction selector ------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// 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-09-03 09:14:03 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This tablegen backend emits a DAG instruction selector.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef DAGISEL_EMITTER_H
|
|
|
|
#define DAGISEL_EMITTER_H
|
|
|
|
|
2008-04-03 08:02:49 +08:00
|
|
|
#include "TableGenBackend.h"
|
2008-01-06 06:25:12 +08:00
|
|
|
#include "CodeGenDAGPatterns.h"
|
2006-02-07 08:37:41 +08:00
|
|
|
#include <set>
|
2005-09-03 09:14:03 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
2005-12-15 06:02:59 +08:00
|
|
|
|
2006-01-18 05:31:18 +08:00
|
|
|
/// DAGISelEmitter - The top-level class which coordinates construction
|
2005-09-03 09:14:03 +08:00
|
|
|
/// and emission of the instruction selector.
|
|
|
|
///
|
|
|
|
class DAGISelEmitter : public TableGenBackend {
|
|
|
|
RecordKeeper &Records;
|
2008-01-06 09:10:31 +08:00
|
|
|
CodeGenDAGPatterns CGP;
|
2005-09-03 09:14:03 +08:00
|
|
|
public:
|
2008-01-06 06:58:54 +08:00
|
|
|
DAGISelEmitter(RecordKeeper &R) : Records(R), CGP(R) {}
|
2005-09-03 09:14:03 +08:00
|
|
|
|
|
|
|
// run - Output the isel, returning true on failure.
|
2005-09-08 07:44:43 +08:00
|
|
|
void run(std::ostream &OS);
|
2005-09-09 05:03:01 +08:00
|
|
|
|
2006-03-25 07:10:39 +08:00
|
|
|
|
2005-09-08 07:44:43 +08:00
|
|
|
private:
|
2008-01-06 06:54:53 +08:00
|
|
|
void EmitNodeTransforms(std::ostream &OS);
|
2008-01-06 06:43:57 +08:00
|
|
|
void EmitPredicateFunctions(std::ostream &OS);
|
|
|
|
|
2008-01-06 06:30:17 +08:00
|
|
|
void GenerateCodeForPattern(const PatternToMatch &Pattern,
|
2006-08-26 08:59:04 +08:00
|
|
|
std::vector<std::pair<unsigned, std::string> > &GeneratedCode,
|
2006-08-26 09:02:19 +08:00
|
|
|
std::set<std::string> &GeneratedDecl,
|
2006-07-15 16:45:20 +08:00
|
|
|
std::vector<std::string> &TargetOpcodes,
|
2006-08-08 06:17:58 +08:00
|
|
|
std::vector<std::string> &TargetVTs);
|
2008-01-06 06:30:17 +08:00
|
|
|
void EmitPatterns(std::vector<std::pair<const PatternToMatch*,
|
2006-08-26 08:59:04 +08:00
|
|
|
std::vector<std::pair<unsigned, std::string> > > > &Patterns,
|
2006-01-29 12:25:26 +08:00
|
|
|
unsigned Indent, std::ostream &OS);
|
2008-01-06 06:43:57 +08:00
|
|
|
|
2005-09-08 07:44:43 +08:00
|
|
|
void EmitInstructionSelector(std::ostream &OS);
|
2005-09-03 09:14:03 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|