summaryrefslogtreecommitdiff
path: root/include/llvm/Target/TargetAsmLexer.h
blob: 998f5babcb3dac1649c968b75e479a62fd7ffb76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//===-- llvm/Target/TargetAsmLexer.h - Target Assembly Lexer ----*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_TARGET_TARGETASMLEXER_H
#define LLVM_TARGET_TARGETASMLEXER_H

namespace llvm {
class Target;
  
/// TargetAsmLexer - Generic interface to target specific assembly lexers.
class TargetAsmLexer {
  TargetAsmLexer(const TargetAsmLexer &);   // DO NOT IMPLEMENT
  void operator=(const TargetAsmLexer &);  // DO NOT IMPLEMENT
protected: // Can only create subclasses.
  TargetAsmLexer(const Target &);
  
  /// TheTarget - The Target that this machine was created for.
  const Target &TheTarget;
  
public:
  virtual ~TargetAsmLexer();
  
  const Target &getTarget() const { return TheTarget; }
  
  
};

} // End llvm namespace

#endif