Support using DebugLoc's in a DenseMap.
[llvm/stm8.git] / utils / TableGen / DAGISelEmitter.h
blob2117e65455ac442f58dfb7c75c63c29515927d2b
1 //===- DAGISelEmitter.h - Generate an instruction selector ------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This tablegen backend emits a DAG instruction selector.
12 //===----------------------------------------------------------------------===//
14 #ifndef DAGISEL_EMITTER_H
15 #define DAGISEL_EMITTER_H
17 #include "TableGenBackend.h"
18 #include "CodeGenDAGPatterns.h"
19 #include <set>
21 namespace llvm {
23 /// DAGISelEmitter - The top-level class which coordinates construction
24 /// and emission of the instruction selector.
25 ///
26 class DAGISelEmitter : public TableGenBackend {
27 RecordKeeper &Records;
28 CodeGenDAGPatterns CGP;
29 public:
30 explicit DAGISelEmitter(RecordKeeper &R) : Records(R), CGP(R) {}
32 // run - Output the isel, returning true on failure.
33 void run(raw_ostream &OS);
36 } // End llvm namespace
38 #endif