| Index: test/unittests/compiler/opcodes-unittest.cc
|
| diff --git a/test/unittests/compiler/opcodes-unittest.cc b/test/unittests/compiler/opcodes-unittest.cc
|
| index 3a97178c69cb4bc3609da2407bc33ec0c6266262..2a278be0c951012ba60c4b388420fd8009ccbfd7 100644
|
| --- a/test/unittests/compiler/opcodes-unittest.cc
|
| +++ b/test/unittests/compiler/opcodes-unittest.cc
|
| @@ -2,8 +2,6 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include <cstring>
|
| -
|
| #include "src/compiler/opcodes.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| @@ -11,9 +9,108 @@ namespace v8 {
|
| namespace internal {
|
| namespace compiler {
|
|
|
| +namespace {
|
| +
|
| +bool IsCommonOpcode(IrOpcode::Value opcode) {
|
| + switch (opcode) {
|
| +#define OPCODE(Opcode) \
|
| + case IrOpcode::k##Opcode: \
|
| + return true;
|
| + COMMON_OP_LIST(OPCODE)
|
| + CONTROL_OP_LIST(OPCODE)
|
| +#undef OPCODE
|
| + default:
|
| + return false;
|
| + }
|
| +}
|
| +
|
| +
|
| +bool IsControlOpcode(IrOpcode::Value opcode) {
|
| + switch (opcode) {
|
| +#define OPCODE(Opcode) \
|
| + case IrOpcode::k##Opcode: \
|
| + return true;
|
| + CONTROL_OP_LIST(OPCODE)
|
| +#undef OPCODE
|
| + default:
|
| + return false;
|
| + }
|
| +}
|
| +
|
| +
|
| +bool IsJsOpcode(IrOpcode::Value opcode) {
|
| + switch (opcode) {
|
| +#define OPCODE(Opcode) \
|
| + case IrOpcode::k##Opcode: \
|
| + return true;
|
| + JS_OP_LIST(OPCODE)
|
| +#undef OPCODE
|
| + default:
|
| + return false;
|
| + }
|
| +}
|
| +
|
| +
|
| +bool IsLeafOpcode(IrOpcode::Value opcode) {
|
| + switch (opcode) {
|
| +#define OPCODE(Opcode) \
|
| + case IrOpcode::k##Opcode: \
|
| + return true;
|
| + LEAF_OP_LIST(OPCODE)
|
| +#undef OPCODE
|
| + default:
|
| + return false;
|
| + }
|
| +}
|
| +
|
| +
|
| +const IrOpcode::Value kInvalidOpcode = static_cast<IrOpcode::Value>(123456789);
|
| +
|
| +} // namespace
|
| +
|
| +
|
| +TEST(IrOpcodeTest, IsCommonOpcode) {
|
| + EXPECT_FALSE(IrOpcode::IsCommonOpcode(kInvalidOpcode));
|
| +#define OPCODE(Opcode) \
|
| + EXPECT_EQ(IsCommonOpcode(IrOpcode::k##Opcode), \
|
| + IrOpcode::IsCommonOpcode(IrOpcode::k##Opcode));
|
| + ALL_OP_LIST(OPCODE)
|
| +#undef OPCODE
|
| +}
|
| +
|
| +
|
| +TEST(IrOpcodeTest, IsControlOpcode) {
|
| + EXPECT_FALSE(IrOpcode::IsControlOpcode(kInvalidOpcode));
|
| +#define OPCODE(Opcode) \
|
| + EXPECT_EQ(IsControlOpcode(IrOpcode::k##Opcode), \
|
| + IrOpcode::IsControlOpcode(IrOpcode::k##Opcode));
|
| + ALL_OP_LIST(OPCODE)
|
| +#undef OPCODE
|
| +}
|
| +
|
| +
|
| +TEST(IrOpcodeTest, IsJsOpcode) {
|
| + EXPECT_FALSE(IrOpcode::IsJsOpcode(kInvalidOpcode));
|
| +#define OPCODE(Opcode) \
|
| + EXPECT_EQ(IsJsOpcode(IrOpcode::k##Opcode), \
|
| + IrOpcode::IsJsOpcode(IrOpcode::k##Opcode));
|
| + ALL_OP_LIST(OPCODE)
|
| +#undef OPCODE
|
| +}
|
| +
|
| +
|
| +TEST(IrOpcodeTest, IsLeafOpcode) {
|
| + EXPECT_FALSE(IrOpcode::IsLeafOpcode(kInvalidOpcode));
|
| +#define OPCODE(Opcode) \
|
| + EXPECT_EQ(IsLeafOpcode(IrOpcode::k##Opcode), \
|
| + IrOpcode::IsLeafOpcode(IrOpcode::k##Opcode));
|
| + ALL_OP_LIST(OPCODE)
|
| +#undef OPCODE
|
| +}
|
| +
|
| +
|
| TEST(IrOpcodeTest, Mnemonic) {
|
| - EXPECT_STREQ("UnknownOpcode",
|
| - IrOpcode::Mnemonic(static_cast<IrOpcode::Value>(123456789)));
|
| + EXPECT_STREQ("UnknownOpcode", IrOpcode::Mnemonic(kInvalidOpcode));
|
| #define OPCODE(Opcode) \
|
| EXPECT_STREQ(#Opcode, IrOpcode::Mnemonic(IrOpcode::k##Opcode));
|
| ALL_OP_LIST(OPCODE)
|
|
|