mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-06 05:06:45 +00:00
91b10fb0e9
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207506 91177308-0d34-0410-b5e6-96231b3b80d8
50 lines
1009 B
C++
50 lines
1009 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) {
|
|
|
|
}
|
|
|
|
const char *getPassName() const override {
|
|
return "MIPS Os16 Optimization";
|
|
}
|
|
|
|
bool runOnModule(Module &M) override;
|
|
|
|
};
|
|
|
|
ModulePass *createMipsOs16(MipsTargetMachine &TM);
|
|
|
|
}
|
|
|
|
#endif
|