blob: dd019f9e5accb7ec2bc5daf5b5b15bcd7f746665 [file] [log] [blame]
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001// Copyright 2014 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_
6#define V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_
7
8namespace v8 {
9namespace internal {
10namespace compiler {
11
12// MIPS64-specific opcodes that specify which assembly sequence to emit.
13// Most opcodes specify a single instruction.
14#define TARGET_ARCH_OPCODE_LIST(V) \
15 V(Mips64Add) \
16 V(Mips64Dadd) \
17 V(Mips64Sub) \
18 V(Mips64Dsub) \
19 V(Mips64Mul) \
20 V(Mips64MulHigh) \
21 V(Mips64MulHighU) \
22 V(Mips64Dmul) \
23 V(Mips64Div) \
24 V(Mips64Ddiv) \
25 V(Mips64DivU) \
26 V(Mips64DdivU) \
27 V(Mips64Mod) \
28 V(Mips64Dmod) \
29 V(Mips64ModU) \
30 V(Mips64DmodU) \
31 V(Mips64And) \
32 V(Mips64Or) \
33 V(Mips64Xor) \
34 V(Mips64Shl) \
35 V(Mips64Shr) \
36 V(Mips64Sar) \
37 V(Mips64Ext) \
38 V(Mips64Dext) \
39 V(Mips64Dshl) \
40 V(Mips64Dshr) \
41 V(Mips64Dsar) \
42 V(Mips64Ror) \
43 V(Mips64Dror) \
44 V(Mips64Mov) \
45 V(Mips64Tst) \
46 V(Mips64Tst32) \
47 V(Mips64Cmp) \
48 V(Mips64Cmp32) \
49 V(Mips64CmpD) \
50 V(Mips64AddD) \
51 V(Mips64SubD) \
52 V(Mips64MulD) \
53 V(Mips64DivD) \
54 V(Mips64ModD) \
55 V(Mips64SqrtD) \
56 V(Mips64Float64Floor) \
57 V(Mips64Float64Ceil) \
58 V(Mips64Float64RoundTruncate) \
59 V(Mips64CvtSD) \
60 V(Mips64CvtDS) \
61 V(Mips64TruncWD) \
62 V(Mips64TruncUwD) \
63 V(Mips64CvtDW) \
64 V(Mips64CvtDUw) \
65 V(Mips64Lb) \
66 V(Mips64Lbu) \
67 V(Mips64Sb) \
68 V(Mips64Lh) \
69 V(Mips64Lhu) \
70 V(Mips64Sh) \
71 V(Mips64Ld) \
72 V(Mips64Lw) \
73 V(Mips64Sw) \
74 V(Mips64Sd) \
75 V(Mips64Lwc1) \
76 V(Mips64Swc1) \
77 V(Mips64Ldc1) \
78 V(Mips64Sdc1) \
79 V(Mips64Push) \
80 V(Mips64StoreToStackSlot) \
81 V(Mips64StackClaim) \
82 V(Mips64StoreWriteBarrier)
83
84
85// Addressing modes represent the "shape" of inputs to an instruction.
86// Many instructions support multiple addressing modes. Addressing modes
87// are encoded into the InstructionCode of the instruction and tell the
88// code generator after register allocation which assembler method to call.
89//
90// We use the following local notation for addressing modes:
91//
92// R = register
93// O = register or stack slot
94// D = double register
95// I = immediate (handle, external, int32)
96// MRI = [register + immediate]
97// MRR = [register + register]
98// TODO(plind): Add the new r6 address modes.
99#define TARGET_ADDRESSING_MODE_LIST(V) \
100 V(MRI) /* [%r0 + K] */ \
101 V(MRR) /* [%r0 + %r1] */
102
103
104} // namespace compiler
105} // namespace internal
106} // namespace v8
107
108#endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_