mirror of
https://github.com/jeremysrand/llvm-65816.git
synced 2024-11-15 03:05:23 +00:00
50 lines
1007 B
C++
50 lines
1007 B
C++
//===---- MipsOs16.h for Mips Option -Os16 --------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines an optimization phase for the MIPS target.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "MCTargetDesc/MipsMCTargetDesc.h"
|
|
#include "MipsTargetMachine.h"
|
|
#include "llvm/Pass.h"
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
|
|
|
|
#ifndef MIPSOS16_H
|
|
#define MIPSOS16_H
|
|
|
|
using namespace llvm;
|
|
|
|
namespace llvm {
|
|
|
|
class MipsOs16 : public ModulePass {
|
|
|
|
public:
|
|
static char ID;
|
|
|
|
MipsOs16() : ModulePass(ID) {
|
|
|
|
}
|
|
|
|
virtual const char *getPassName() const {
|
|
return "MIPS Os16 Optimization";
|
|
}
|
|
|
|
virtual bool runOnModule(Module &M);
|
|
|
|
};
|
|
|
|
ModulePass *createMipsOs16(MipsTargetMachine &TM);
|
|
|
|
}
|
|
|
|
#endif
|