aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/Skeleton/Skeleton.h
blob: 8177d9c064c5c09517ea5d045b692561a216e95c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//===-- Skeleton.h - Target private header file -----------------*- 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.
// 
//===----------------------------------------------------------------------===//
//
// This file contains the definitions shared among the various components of the
// Skeleton backend.
//
//===----------------------------------------------------------------------===//

#ifndef TARGET_SKELETON_H
#define TARGET_SKELETON_H

#include <iosfwd>

/// Put prototypes here for functions used to create various passes.


// Defines symbolic enum names for target registers.  This defines a mapping
// from register name to register number.  These are generated by tblgen from
// your target file.
//
#include "SkeletonGenRegisterNames.inc"

// Defines symbolic enum names for the target instructions.
//
#include "SkeletonGenInstrNames.inc"

#endif