annotate lib/Target/Hexagon/HexagonIICScalar.td @ 121:803732b1fca8

LLVM 5.0
author kono
date Fri, 27 Oct 2017 17:07:41 +0900
parents
children c2174574ed3a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
121
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
1 //===--- HexagonIICScalar.td ----------------------------------------------===//
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
2 //
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
3 // The LLVM Compiler Infrastructure
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
4 //
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
5 // This file is distributed under the University of Illinois Open Source
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
6 // License. See LICENSE.TXT for details.
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
7 //
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
8 //===----------------------------------------------------------------------===//
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
9
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
10 // These itinerary class descriptions are based on the instruction timing
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
11 // classes as per V62. Curretnly, they are just extracted from
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
12 // HexagonScheduleV62.td but will soon be auto-generated by HexagonGen.py.
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
13
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
14 class PseudoItin {
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
15 list<InstrItinData> PseudoItin_list = [
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
16 InstrItinData<PSEUDO, [InstrStage<1, [SLOT0, SLOT1, SLOT2, SLOT3]>],
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
17 [1, 1, 1]>,
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
18 InstrItinData<PSEUDOM, [InstrStage<1, [SLOT2, SLOT3], 0>,
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
19 InstrStage<1, [SLOT2, SLOT3]>], [1, 1, 1]>,
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
20 InstrItinData<DUPLEX, [InstrStage<1, [SLOT0]>], [1, 1, 1]>,
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
21 InstrItinData<tc_ENDLOOP, [InstrStage<1, [SLOT_ENDLOOP]>], [2]>
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
22 ];
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
23 }
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
24
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
25 class ScalarItin {
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
26 list<InstrItinData> ScalarItin_list = [
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
27 InstrItinData<LD_tc_ld_SLOT01, [InstrStage<1, [SLOT0, SLOT1]>],
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
28 [3, 1], [Hex_FWD, Hex_FWD]>,
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
29 InstrItinData<ST_tc_st_SLOT01, [InstrStage<1, [SLOT0, SLOT1]>],
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
30 [1, 1, 1], [Hex_FWD, Hex_FWD, Hex_FWD]>
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
31 ];
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
32 }