-
Notifications
You must be signed in to change notification settings - Fork 0
/
I8080.td
33 lines (25 loc) · 1.1 KB
/
I8080.td
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
//===-- I8080.td - Describe the I8080 Target Machine -------*- tablegen -*-===//
//
// The LLVM Compiler Infrastructure
//===----------------------------------------------------------------------===//
//
// This is the top level entry point for the I8080 target.
//
//===----------------------------------------------------------------------===//
include "llvm/Target/Target.td"
include "I8080RegisterInfo.td"
include "I8080InstrInfo.td"
include "I8080CallingConv.td"
def I8080InstrInfo : InstrInfo;
//===----------------------------------------------------------------------===//
// I8080 processors supported.
//===----------------------------------------------------------------------===//
class Proc<string Name, list<SubtargetFeature> Features>
: Processor<Name, NoItineraries, Features>;
def : Proc<"generic", []>;
//===----------------------------------------------------------------------===//
// Declare the target which we are implementing
//===----------------------------------------------------------------------===//
def I8080 : Target {
let InstructionSet = I8080InstrInfo;
}