mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
b12914bfc0
from ModulePass. Instead of implementing Pass::run, then should implement ModulePass::runOnModule. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16436 91177308-0d34-0410-b5e6-96231b3b80d8
51 lines
1.4 KiB
C++
51 lines
1.4 KiB
C++
//===- lib/Target/SparcV9/MappingInfo.h -------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Data structures to support the Reoptimizer's Instruction-to-MachineInstr
|
|
// mapping information gatherer.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef MAPPINGINFO_H
|
|
#define MAPPINGINFO_H
|
|
|
|
#include <iosfwd>
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
namespace llvm {
|
|
|
|
class ModulePass;
|
|
|
|
ModulePass *getMappingInfoAsmPrinterPass(std::ostream &out);
|
|
ModulePass *createInternalGlobalMapperPass();
|
|
|
|
class MappingInfo {
|
|
struct byteVector : public std::vector <unsigned char> {
|
|
void dumpAssembly (std::ostream &Out);
|
|
};
|
|
std::string comment;
|
|
std::string symbolPrefix;
|
|
unsigned functionNumber;
|
|
byteVector bytes;
|
|
public:
|
|
void outByte (unsigned char b) { bytes.push_back (b); }
|
|
MappingInfo (std::string Comment, std::string SymbolPrefix,
|
|
unsigned FunctionNumber) : comment(Comment),
|
|
symbolPrefix(SymbolPrefix), functionNumber(FunctionNumber) {}
|
|
void dumpAssembly (std::ostream &Out);
|
|
unsigned char *getBytes (unsigned &length) {
|
|
length = bytes.size(); return &bytes[0];
|
|
}
|
|
};
|
|
|
|
} // End llvm namespace
|
|
|
|
#endif
|