2005-09-03 03:14:03 +02:00
|
|
|
//===- DAGISelEmitter.h - Generate an instruction selector ------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// 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-09-03 03:14:03 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This tablegen backend emits a DAG instruction selector.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef DAGISEL_EMITTER_H
|
|
|
|
#define DAGISEL_EMITTER_H
|
|
|
|
|
2008-04-03 02:02:49 +02:00
|
|
|
#include "TableGenBackend.h"
|
2008-01-05 23:25:12 +01:00
|
|
|
#include "CodeGenDAGPatterns.h"
|
2005-09-03 03:14:03 +02:00
|
|
|
|
|
|
|
namespace llvm {
|
2005-12-14 23:02:59 +01:00
|
|
|
|
2006-01-17 22:31:18 +01:00
|
|
|
/// DAGISelEmitter - The top-level class which coordinates construction
|
2005-09-03 03:14:03 +02:00
|
|
|
/// and emission of the instruction selector.
|
|
|
|
///
|
|
|
|
class DAGISelEmitter : public TableGenBackend {
|
|
|
|
RecordKeeper &Records;
|
2008-01-06 02:10:31 +01:00
|
|
|
CodeGenDAGPatterns CGP;
|
2005-09-03 03:14:03 +02:00
|
|
|
public:
|
2009-02-18 17:37:45 +01:00
|
|
|
explicit DAGISelEmitter(RecordKeeper &R) : Records(R), CGP(R) {}
|
2005-09-03 03:14:03 +02:00
|
|
|
|
|
|
|
// run - Output the isel, returning true on failure.
|
2009-07-03 02:10:29 +02:00
|
|
|
void run(raw_ostream &OS);
|
2005-09-03 03:14:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|