Fix file header comments and include guards -- many files have been moved or
[oota-llvm.git] / lib / Target / SparcV9 / MappingInfo.h
1 //===- lib/Target/SparcV9/MappingInfo.h -------------------------*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // Data structures to support the Reoptimizer's Instruction-to-MachineInstr
11 // mapping information gatherer.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef MAPPINGINFO_H
16 #define MAPPINGINFO_H
17
18 #include <iosfwd>
19 #include <vector>
20 #include <string>
21
22 namespace llvm {
23
24 class Pass;
25
26 Pass *getMappingInfoAsmPrinterPass(std::ostream &out);
27
28 class MappingInfo {
29   struct byteVector : public std::vector <unsigned char> {
30     void dumpAssembly (std::ostream &Out);
31   };
32   std::string comment;
33   std::string symbolPrefix;
34   unsigned functionNumber;
35   byteVector bytes;
36 public:
37   void outByte (unsigned char b) { bytes.push_back (b); }
38   MappingInfo (std::string Comment, std::string SymbolPrefix,
39                    unsigned FunctionNumber) : comment(Comment),
40                    symbolPrefix(SymbolPrefix), functionNumber(FunctionNumber) {}
41   void dumpAssembly (std::ostream &Out);
42   unsigned char *getBytes (unsigned &length) {
43         length = bytes.size(); return &bytes[0];
44   }
45 };
46
47 } // End llvm namespace
48
49 #endif