LLVM API Documentation

SparcTargetObjectFile.h
Go to the documentation of this file.
00001 //===-- SparcTargetObjectFile.h - Sparc Object Info -------------*- C++ -*-===//
00002 //
00003 //                     The LLVM Compiler Infrastructure
00004 //
00005 // This file is distributed under the University of Illinois Open Source
00006 // License. See LICENSE.TXT for details.
00007 //
00008 //===----------------------------------------------------------------------===//
00009 
00010 #ifndef LLVM_LIB_TARGET_SPARC_SPARCTARGETOBJECTFILE_H
00011 #define LLVM_LIB_TARGET_SPARC_SPARCTARGETOBJECTFILE_H
00012 
00013 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
00014 
00015 namespace llvm {
00016 
00017 class MCContext;
00018 class TargetMachine;
00019 
00020 class SparcELFTargetObjectFile : public TargetLoweringObjectFileELF {
00021 public:
00022   SparcELFTargetObjectFile() :
00023     TargetLoweringObjectFileELF()
00024   {}
00025 
00026   const MCExpr *
00027   getTTypeGlobalReference(const GlobalValue *GV, unsigned Encoding,
00028                           Mangler &Mang, const TargetMachine &TM,
00029                           MachineModuleInfo *MMI,
00030                           MCStreamer &Streamer) const override;
00031 };
00032 
00033 } // end namespace llvm
00034 
00035 #endif