0
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
1 //===-- SystemZ.td - SystemZ processors and features ---------*- tblgen -*-===//
|
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
2 //
|
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
3 // The LLVM Compiler Infrastructure
|
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
4 //
|
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
5 // This file is distributed under the University of Illinois Open Source
|
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
6 // License. See LICENSE.TXT for details.
|
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
7 //
|
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
8 //===----------------------------------------------------------------------===//
|
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
9 //
|
120
|
10 // Processor definitions.
|
|
11 //
|
|
12 // For compatibility with other compilers on the platform, each model can
|
|
13 // be identifed either by the system name (e.g. z10) or the level of the
|
|
14 // architecture the model supports, as identified by the edition level
|
|
15 // of the z/Architecture Principles of Operation document (e.g. arch8).
|
|
16 //
|
|
17 // The minimum architecture level supported by LLVM is as defined in
|
|
18 // the Eighth Edition of the PoP (i.e. as implemented on z10).
|
0
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
19 //
|
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
20 //===----------------------------------------------------------------------===//
|
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
21
|
120
|
22 def : ProcessorModel<"generic", NoSchedModel, []>;
|
0
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
23
|
120
|
24 def : ProcessorModel<"arch8", NoSchedModel, Arch8SupportedFeatures.List>;
|
|
25 def : ProcessorModel<"z10", NoSchedModel, Arch8SupportedFeatures.List>;
|
33
|
26
|
120
|
27 def : ProcessorModel<"arch9", Z196Model, Arch9SupportedFeatures.List>;
|
|
28 def : ProcessorModel<"z196", Z196Model, Arch9SupportedFeatures.List>;
|
95
|
29
|
120
|
30 def : ProcessorModel<"arch10", ZEC12Model, Arch10SupportedFeatures.List>;
|
|
31 def : ProcessorModel<"zEC12", ZEC12Model, Arch10SupportedFeatures.List>;
|
95
|
32
|
120
|
33 def : ProcessorModel<"arch11", Z13Model, Arch11SupportedFeatures.List>;
|
|
34 def : ProcessorModel<"z13", Z13Model, Arch11SupportedFeatures.List>;
|
|
35
|