~ubuntu-branches/ubuntu/maverick/clamav/maverick-backports

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.h

  • Committer: Bazaar Package Importer
  • Author(s): Stephen Gran, Stephen Gran, Michael Tautschnig
  • Date: 2010-04-26 21:41:18 UTC
  • mfrom: (2.1.6 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100426214118-i6lo606wnh7ywfj6
Tags: 0.96+dfsg-4
[ Stephen Gran ]
* Fixed typo in clamav-milter's postinst

[ Michael Tautschnig ]
* Fixed typo in clamav-freshclam's postinst (closes: #579271)
* Debconf translation updates
  - Portuguese (closes: #579068)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//===-- X86ATTInstPrinter.h - Convert X86 MCInst to assembly syntax -------===//
 
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 class prints an X86 MCInst to AT&T style .s file syntax.
 
11
//
 
12
//===----------------------------------------------------------------------===//
 
13
 
 
14
#ifndef X86_ATT_INST_PRINTER_H
 
15
#define X86_ATT_INST_PRINTER_H
 
16
 
 
17
#include "llvm/MC/MCInstPrinter.h"
 
18
 
 
19
namespace llvm {
 
20
  class MCOperand;
 
21
  
 
22
class X86ATTInstPrinter : public MCInstPrinter {
 
23
public:
 
24
  X86ATTInstPrinter(raw_ostream &O, const MCAsmInfo &MAI)
 
25
    : MCInstPrinter(O, MAI) {}
 
26
 
 
27
  
 
28
  virtual void printInst(const MCInst *MI);
 
29
  virtual StringRef getOpcodeName(unsigned Opcode) const;
 
30
 
 
31
  // Autogenerated by tblgen.
 
32
  void printInstruction(const MCInst *MI);
 
33
  static const char *getRegisterName(unsigned RegNo);
 
34
  static const char *getInstructionName(unsigned Opcode);
 
35
 
 
36
  void printOperand(const MCInst *MI, unsigned OpNo);
 
37
  void printMemReference(const MCInst *MI, unsigned Op);
 
38
  void printLeaMemReference(const MCInst *MI, unsigned Op);
 
39
  void printSSECC(const MCInst *MI, unsigned Op);
 
40
  void print_pcrel_imm(const MCInst *MI, unsigned OpNo);
 
41
  
 
42
  void printopaquemem(const MCInst *MI, unsigned OpNo) {
 
43
    printMemReference(MI, OpNo);
 
44
  }
 
45
  
 
46
  void printi8mem(const MCInst *MI, unsigned OpNo) {
 
47
    printMemReference(MI, OpNo);
 
48
  }
 
49
  void printi16mem(const MCInst *MI, unsigned OpNo) {
 
50
    printMemReference(MI, OpNo);
 
51
  }
 
52
  void printi32mem(const MCInst *MI, unsigned OpNo) {
 
53
    printMemReference(MI, OpNo);
 
54
  }
 
55
  void printi64mem(const MCInst *MI, unsigned OpNo) {
 
56
    printMemReference(MI, OpNo);
 
57
  }
 
58
  void printi128mem(const MCInst *MI, unsigned OpNo) {
 
59
    printMemReference(MI, OpNo);
 
60
  }
 
61
  void printf32mem(const MCInst *MI, unsigned OpNo) {
 
62
    printMemReference(MI, OpNo);
 
63
  }
 
64
  void printf64mem(const MCInst *MI, unsigned OpNo) {
 
65
    printMemReference(MI, OpNo);
 
66
  }
 
67
  void printf80mem(const MCInst *MI, unsigned OpNo) {
 
68
    printMemReference(MI, OpNo);
 
69
  }
 
70
  void printf128mem(const MCInst *MI, unsigned OpNo) {
 
71
    printMemReference(MI, OpNo);
 
72
  }
 
73
  void printlea32mem(const MCInst *MI, unsigned OpNo) {
 
74
    printLeaMemReference(MI, OpNo);
 
75
  }
 
76
  void printlea64mem(const MCInst *MI, unsigned OpNo) {
 
77
    printLeaMemReference(MI, OpNo);
 
78
  }
 
79
  void printlea64_32mem(const MCInst *MI, unsigned OpNo) {
 
80
    printLeaMemReference(MI, OpNo);
 
81
  }
 
82
};
 
83
  
 
84
}
 
85
 
 
86
#endif