| Index: src/compiler/mips/instruction-codes-mips.h
|
| diff --git a/src/compiler/mips/instruction-codes-mips.h b/src/compiler/mips/instruction-codes-mips.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..cd05afccbc935818ebc3d6386fe5da7bacecae80
|
| --- /dev/null
|
| +++ b/src/compiler/mips/instruction-codes-mips.h
|
| @@ -0,0 +1,86 @@
|
| +// Copyright 2014 the V8 project authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_
|
| +#define V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_
|
| +
|
| +namespace v8 {
|
| +namespace internal {
|
| +namespace compiler {
|
| +
|
| +// MIPS-specific opcodes that specify which assembly sequence to emit.
|
| +// Most opcodes specify a single instruction.
|
| +#define TARGET_ARCH_OPCODE_LIST(V) \
|
| + V(MipsAdd) \
|
| + V(MipsAddOvf) \
|
| + V(MipsSub) \
|
| + V(MipsSubOvf) \
|
| + V(MipsMul) \
|
| + V(MipsDiv) \
|
| + V(MipsDivU) \
|
| + V(MipsMod) \
|
| + V(MipsModU) \
|
| + V(MipsAnd) \
|
| + V(MipsOr) \
|
| + V(MipsXor) \
|
| + V(MipsShl) \
|
| + V(MipsShr) \
|
| + V(MipsSar) \
|
| + V(MipsRor) \
|
| + V(MipsMov) \
|
| + V(MipsTst) \
|
| + V(MipsCmp) \
|
| + V(MipsCmpD) \
|
| + V(MipsAddD) \
|
| + V(MipsSubD) \
|
| + V(MipsMulD) \
|
| + V(MipsDivD) \
|
| + V(MipsModD) \
|
| + V(MipsSqrtD) \
|
| + V(MipsCvtSD) \
|
| + V(MipsCvtDS) \
|
| + V(MipsTruncWD) \
|
| + V(MipsTruncUwD) \
|
| + V(MipsCvtDW) \
|
| + V(MipsCvtDUw) \
|
| + V(MipsLb) \
|
| + V(MipsLbu) \
|
| + V(MipsSb) \
|
| + V(MipsLh) \
|
| + V(MipsLhu) \
|
| + V(MipsSh) \
|
| + V(MipsLw) \
|
| + V(MipsSw) \
|
| + V(MipsLwc1) \
|
| + V(MipsSwc1) \
|
| + V(MipsLdc1) \
|
| + V(MipsSdc1) \
|
| + V(MipsPush) \
|
| + V(MipsStoreWriteBarrier)
|
| +
|
| +
|
| +// Addressing modes represent the "shape" of inputs to an instruction.
|
| +// Many instructions support multiple addressing modes. Addressing modes
|
| +// are encoded into the InstructionCode of the instruction and tell the
|
| +// code generator after register allocation which assembler method to call.
|
| +//
|
| +// We use the following local notation for addressing modes:
|
| +//
|
| +// R = register
|
| +// O = register or stack slot
|
| +// D = double register
|
| +// I = immediate (handle, external, int32)
|
| +// MRI = [register + immediate]
|
| +// MRR = [register + register]
|
| +// TODO(plind): Add the new r6 address modes.
|
| +#define TARGET_ADDRESSING_MODE_LIST(V) \
|
| + V(MRI) /* [%r0 + K] */ \
|
| + V(MRR) /* [%r0 + %r1] */
|
| +
|
| +
|
| +} // namespace compiler
|
| +} // namespace internal
|
| +} // namespace v8
|
| +
|
| +#endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_
|
|
|