35 lines
1008 B
C++
35 lines
1008 B
C++
//===-- Nios2MCTargetDesc.h - Nios2 Target Descriptions ---------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file provides Nios2 specific target descriptions.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIB_TARGET_NIOS2_MCTARGETDESC_NIOS2MCTARGETDESC_H
|
|
#define LLVM_LIB_TARGET_NIOS2_MCTARGETDESC_NIOS2MCTARGETDESC_H
|
|
|
|
namespace llvm {
|
|
class Target;
|
|
class Triple;
|
|
|
|
Target &getTheNios2Target();
|
|
|
|
} // namespace llvm
|
|
|
|
// Defines symbolic names for Nios2 registers. This defines a mapping from
|
|
// register name to register number.
|
|
#define GET_REGINFO_ENUM
|
|
#include "Nios2GenRegisterInfo.inc"
|
|
|
|
// Defines symbolic names for the Nios2 instructions.
|
|
#define GET_INSTRINFO_ENUM
|
|
#include "Nios2GenInstrInfo.inc"
|
|
|
|
#endif
|