2008-08-13 22:19:35 +02:00
|
|
|
//===- FastISelEmitter.h - Generate an instruction selector -----*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This tablegen backend emits a "fast" instruction selector.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef FASTISEL_EMITTER_H
|
|
|
|
#define FASTISEL_EMITTER_H
|
|
|
|
|
|
|
|
#include "CodeGenDAGPatterns.h"
|
2011-10-01 18:41:13 +02:00
|
|
|
#include "llvm/TableGen/TableGenBackend.h"
|
2008-08-13 22:19:35 +02:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2008-08-21 02:19:05 +02:00
|
|
|
class CodeGenTarget;
|
|
|
|
|
2008-08-13 22:19:35 +02:00
|
|
|
/// FastISelEmitter - The top-level class which coordinates construction
|
|
|
|
/// and emission of the instruction selector.
|
|
|
|
///
|
|
|
|
class FastISelEmitter : public TableGenBackend {
|
|
|
|
RecordKeeper &Records;
|
|
|
|
CodeGenDAGPatterns CGP;
|
|
|
|
public:
|
2008-08-21 02:19:05 +02:00
|
|
|
explicit FastISelEmitter(RecordKeeper &R);
|
2008-08-13 22:19:35 +02:00
|
|
|
|
|
|
|
// run - Output the isel, returning true on failure.
|
2009-07-03 02:10:29 +02:00
|
|
|
void run(raw_ostream &OS);
|
2008-08-13 22:19:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|