2014-08-18 06:54:07 +00:00
|
|
|
// 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.
|
|
|
|
|
2014-09-22 11:42:10 +00:00
|
|
|
#include <limits>
|
|
|
|
|
2014-12-23 12:50:43 +00:00
|
|
|
#include "src/compiler/common-operator.h"
|
|
|
|
#include "src/compiler/opcodes.h"
|
|
|
|
#include "src/compiler/operator.h"
|
|
|
|
#include "src/compiler/operator-properties.h"
|
2014-10-01 08:34:25 +00:00
|
|
|
#include "test/unittests/test-utils.h"
|
2014-08-18 06:54:07 +00:00
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
namespace compiler {
|
|
|
|
|
2014-09-12 11:59:26 +00:00
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// Shared operators.
|
|
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
struct SharedOperator {
|
|
|
|
const Operator* (CommonOperatorBuilder::*constructor)();
|
|
|
|
IrOpcode::Value opcode;
|
|
|
|
Operator::Properties properties;
|
|
|
|
int value_input_count;
|
|
|
|
int effect_input_count;
|
|
|
|
int control_input_count;
|
|
|
|
int effect_output_count;
|
|
|
|
int control_output_count;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
std::ostream& operator<<(std::ostream& os, const SharedOperator& fop) {
|
|
|
|
return os << IrOpcode::Mnemonic(fop.opcode);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const SharedOperator kSharedOperators[] = {
|
|
|
|
#define SHARED(Name, properties, value_input_count, effect_input_count, \
|
|
|
|
control_input_count, effect_output_count, control_output_count) \
|
|
|
|
{ \
|
|
|
|
&CommonOperatorBuilder::Name, IrOpcode::k##Name, properties, \
|
|
|
|
value_input_count, effect_input_count, control_input_count, \
|
|
|
|
effect_output_count, control_output_count \
|
|
|
|
}
|
|
|
|
SHARED(Dead, Operator::kFoldable, 0, 0, 0, 0, 1),
|
|
|
|
SHARED(End, Operator::kFoldable, 0, 0, 1, 0, 0),
|
|
|
|
SHARED(IfTrue, Operator::kFoldable, 0, 0, 1, 0, 1),
|
|
|
|
SHARED(IfFalse, Operator::kFoldable, 0, 0, 1, 0, 1),
|
2014-10-29 14:40:47 +00:00
|
|
|
SHARED(Throw, Operator::kFoldable, 1, 1, 1, 0, 1),
|
|
|
|
SHARED(Return, Operator::kNoProperties, 1, 1, 1, 0, 1)
|
2014-09-12 11:59:26 +00:00
|
|
|
#undef SHARED
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class CommonSharedOperatorTest
|
|
|
|
: public TestWithZone,
|
|
|
|
public ::testing::WithParamInterface<SharedOperator> {};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
|
|
|
|
TEST_P(CommonSharedOperatorTest, InstancesAreGloballyShared) {
|
|
|
|
const SharedOperator& sop = GetParam();
|
|
|
|
CommonOperatorBuilder common1(zone());
|
|
|
|
CommonOperatorBuilder common2(zone());
|
|
|
|
EXPECT_EQ((common1.*sop.constructor)(), (common2.*sop.constructor)());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_P(CommonSharedOperatorTest, NumberOfInputsAndOutputs) {
|
|
|
|
CommonOperatorBuilder common(zone());
|
|
|
|
const SharedOperator& sop = GetParam();
|
|
|
|
const Operator* op = (common.*sop.constructor)();
|
|
|
|
|
2014-10-29 18:46:44 +00:00
|
|
|
EXPECT_EQ(sop.value_input_count, op->ValueInputCount());
|
|
|
|
EXPECT_EQ(sop.effect_input_count, op->EffectInputCount());
|
|
|
|
EXPECT_EQ(sop.control_input_count, op->ControlInputCount());
|
2014-09-12 11:59:26 +00:00
|
|
|
EXPECT_EQ(
|
|
|
|
sop.value_input_count + sop.effect_input_count + sop.control_input_count,
|
|
|
|
OperatorProperties::GetTotalInputCount(op));
|
|
|
|
|
2014-10-29 18:46:44 +00:00
|
|
|
EXPECT_EQ(0, op->ValueOutputCount());
|
|
|
|
EXPECT_EQ(sop.effect_output_count, op->EffectOutputCount());
|
|
|
|
EXPECT_EQ(sop.control_output_count, op->ControlOutputCount());
|
2014-09-12 11:59:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_P(CommonSharedOperatorTest, OpcodeIsCorrect) {
|
|
|
|
CommonOperatorBuilder common(zone());
|
|
|
|
const SharedOperator& sop = GetParam();
|
|
|
|
const Operator* op = (common.*sop.constructor)();
|
|
|
|
EXPECT_EQ(sop.opcode, op->opcode());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_P(CommonSharedOperatorTest, Properties) {
|
|
|
|
CommonOperatorBuilder common(zone());
|
|
|
|
const SharedOperator& sop = GetParam();
|
|
|
|
const Operator* op = (common.*sop.constructor)();
|
|
|
|
EXPECT_EQ(sop.properties, op->properties());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
INSTANTIATE_TEST_CASE_P(CommonOperatorTest, CommonSharedOperatorTest,
|
|
|
|
::testing::ValuesIn(kSharedOperators));
|
|
|
|
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// Other operators.
|
|
|
|
|
|
|
|
|
2014-09-01 10:26:12 +00:00
|
|
|
namespace {
|
|
|
|
|
2014-09-04 08:44:03 +00:00
|
|
|
class CommonOperatorTest : public TestWithZone {
|
2014-09-01 10:26:12 +00:00
|
|
|
public:
|
|
|
|
CommonOperatorTest() : common_(zone()) {}
|
2014-12-22 13:47:54 +00:00
|
|
|
~CommonOperatorTest() OVERRIDE {}
|
2014-09-01 10:26:12 +00:00
|
|
|
|
|
|
|
CommonOperatorBuilder* common() { return &common_; }
|
2014-08-19 04:54:06 +00:00
|
|
|
|
2014-09-01 10:26:12 +00:00
|
|
|
private:
|
|
|
|
CommonOperatorBuilder common_;
|
|
|
|
};
|
2014-08-19 04:54:06 +00:00
|
|
|
|
2014-08-18 06:54:07 +00:00
|
|
|
|
2014-10-29 14:40:47 +00:00
|
|
|
const int kArguments[] = {1, 5, 6, 42, 100, 10000, 65000};
|
2014-08-18 06:54:07 +00:00
|
|
|
|
2014-10-08 07:32:07 +00:00
|
|
|
|
|
|
|
const float kFloatValues[] = {-std::numeric_limits<float>::infinity(),
|
|
|
|
std::numeric_limits<float>::min(),
|
|
|
|
-1.0f,
|
|
|
|
-0.0f,
|
|
|
|
0.0f,
|
|
|
|
1.0f,
|
|
|
|
std::numeric_limits<float>::max(),
|
|
|
|
std::numeric_limits<float>::infinity(),
|
|
|
|
std::numeric_limits<float>::quiet_NaN(),
|
|
|
|
std::numeric_limits<float>::signaling_NaN()};
|
|
|
|
|
|
|
|
|
|
|
|
const double kDoubleValues[] = {-std::numeric_limits<double>::infinity(),
|
|
|
|
std::numeric_limits<double>::min(),
|
|
|
|
-1.0,
|
|
|
|
-0.0,
|
|
|
|
0.0,
|
|
|
|
1.0,
|
|
|
|
std::numeric_limits<double>::max(),
|
|
|
|
std::numeric_limits<double>::infinity(),
|
|
|
|
std::numeric_limits<double>::quiet_NaN(),
|
|
|
|
std::numeric_limits<double>::signaling_NaN()};
|
2014-09-22 11:42:10 +00:00
|
|
|
|
2014-10-29 14:16:32 +00:00
|
|
|
|
|
|
|
const BranchHint kHints[] = {BranchHint::kNone, BranchHint::kTrue,
|
|
|
|
BranchHint::kFalse};
|
|
|
|
|
2014-09-01 10:26:12 +00:00
|
|
|
} // namespace
|
2014-08-18 06:54:07 +00:00
|
|
|
|
2014-08-18 11:36:06 +00:00
|
|
|
|
2014-10-22 11:24:55 +00:00
|
|
|
TEST_F(CommonOperatorTest, Branch) {
|
|
|
|
TRACED_FOREACH(BranchHint, hint, kHints) {
|
|
|
|
const Operator* const op = common()->Branch(hint);
|
|
|
|
EXPECT_EQ(IrOpcode::kBranch, op->opcode());
|
|
|
|
EXPECT_EQ(Operator::kFoldable, op->properties());
|
2014-10-29 14:16:32 +00:00
|
|
|
EXPECT_EQ(hint, BranchHintOf(op));
|
2014-10-29 18:46:44 +00:00
|
|
|
EXPECT_EQ(1, op->ValueInputCount());
|
|
|
|
EXPECT_EQ(0, op->EffectInputCount());
|
|
|
|
EXPECT_EQ(1, op->ControlInputCount());
|
2014-10-22 11:24:55 +00:00
|
|
|
EXPECT_EQ(2, OperatorProperties::GetTotalInputCount(op));
|
2014-10-29 18:46:44 +00:00
|
|
|
EXPECT_EQ(0, op->ValueOutputCount());
|
|
|
|
EXPECT_EQ(0, op->EffectOutputCount());
|
|
|
|
EXPECT_EQ(2, op->ControlOutputCount());
|
2014-10-22 11:24:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-29 14:16:32 +00:00
|
|
|
TEST_F(CommonOperatorTest, Select) {
|
|
|
|
static const MachineType kTypes[] = {
|
|
|
|
kMachInt8, kMachUint8, kMachInt16, kMachUint16,
|
|
|
|
kMachInt32, kMachUint32, kMachInt64, kMachUint64,
|
|
|
|
kMachFloat32, kMachFloat64, kMachAnyTagged};
|
|
|
|
TRACED_FOREACH(MachineType, type, kTypes) {
|
|
|
|
TRACED_FOREACH(BranchHint, hint, kHints) {
|
|
|
|
const Operator* const op = common()->Select(type, hint);
|
|
|
|
EXPECT_EQ(IrOpcode::kSelect, op->opcode());
|
|
|
|
EXPECT_EQ(Operator::kPure, op->properties());
|
|
|
|
EXPECT_EQ(type, SelectParametersOf(op).type());
|
|
|
|
EXPECT_EQ(hint, SelectParametersOf(op).hint());
|
2014-10-29 18:46:44 +00:00
|
|
|
EXPECT_EQ(3, op->ValueInputCount());
|
|
|
|
EXPECT_EQ(0, op->EffectInputCount());
|
|
|
|
EXPECT_EQ(0, op->ControlInputCount());
|
2014-10-29 14:16:32 +00:00
|
|
|
EXPECT_EQ(3, OperatorProperties::GetTotalInputCount(op));
|
2014-10-29 18:46:44 +00:00
|
|
|
EXPECT_EQ(1, op->ValueOutputCount());
|
|
|
|
EXPECT_EQ(0, op->EffectOutputCount());
|
|
|
|
EXPECT_EQ(0, op->ControlOutputCount());
|
2014-10-29 14:16:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-22 11:42:10 +00:00
|
|
|
TEST_F(CommonOperatorTest, Float32Constant) {
|
2014-10-08 07:32:07 +00:00
|
|
|
TRACED_FOREACH(float, value, kFloatValues) {
|
2014-09-22 11:42:10 +00:00
|
|
|
const Operator* op = common()->Float32Constant(value);
|
2014-10-08 07:32:07 +00:00
|
|
|
EXPECT_PRED2(base::bit_equal_to<float>(), value, OpParameter<float>(op));
|
2014-10-29 18:46:44 +00:00
|
|
|
EXPECT_EQ(0, op->ValueInputCount());
|
2014-10-08 07:32:07 +00:00
|
|
|
EXPECT_EQ(0, OperatorProperties::GetTotalInputCount(op));
|
2014-10-29 18:46:44 +00:00
|
|
|
EXPECT_EQ(0, op->ControlOutputCount());
|
|
|
|
EXPECT_EQ(0, op->EffectOutputCount());
|
|
|
|
EXPECT_EQ(1, op->ValueOutputCount());
|
2014-10-08 07:32:07 +00:00
|
|
|
}
|
|
|
|
TRACED_FOREACH(float, v1, kFloatValues) {
|
|
|
|
TRACED_FOREACH(float, v2, kFloatValues) {
|
|
|
|
const Operator* op1 = common()->Float32Constant(v1);
|
|
|
|
const Operator* op2 = common()->Float32Constant(v2);
|
|
|
|
EXPECT_EQ(bit_cast<uint32_t>(v1) == bit_cast<uint32_t>(v2),
|
|
|
|
op1->Equals(op2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(CommonOperatorTest, Float64Constant) {
|
|
|
|
TRACED_FOREACH(double, value, kFloatValues) {
|
|
|
|
const Operator* op = common()->Float64Constant(value);
|
|
|
|
EXPECT_PRED2(base::bit_equal_to<double>(), value, OpParameter<double>(op));
|
2014-10-29 18:46:44 +00:00
|
|
|
EXPECT_EQ(0, op->ValueInputCount());
|
2014-09-22 11:42:10 +00:00
|
|
|
EXPECT_EQ(0, OperatorProperties::GetTotalInputCount(op));
|
2014-10-29 18:46:44 +00:00
|
|
|
EXPECT_EQ(0, op->ControlOutputCount());
|
|
|
|
EXPECT_EQ(0, op->EffectOutputCount());
|
|
|
|
EXPECT_EQ(1, op->ValueOutputCount());
|
2014-09-22 11:42:10 +00:00
|
|
|
}
|
2014-10-08 07:32:07 +00:00
|
|
|
TRACED_FOREACH(double, v1, kFloatValues) {
|
|
|
|
TRACED_FOREACH(double, v2, kFloatValues) {
|
|
|
|
const Operator* op1 = common()->Float64Constant(v1);
|
|
|
|
const Operator* op2 = common()->Float64Constant(v2);
|
|
|
|
EXPECT_EQ(bit_cast<uint64_t>(v1) == bit_cast<uint64_t>(v2),
|
|
|
|
op1->Equals(op2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(CommonOperatorTest, NumberConstant) {
|
|
|
|
TRACED_FOREACH(double, value, kFloatValues) {
|
|
|
|
const Operator* op = common()->NumberConstant(value);
|
|
|
|
EXPECT_PRED2(base::bit_equal_to<double>(), value, OpParameter<double>(op));
|
2014-10-29 18:46:44 +00:00
|
|
|
EXPECT_EQ(0, op->ValueInputCount());
|
2014-10-08 07:32:07 +00:00
|
|
|
EXPECT_EQ(0, OperatorProperties::GetTotalInputCount(op));
|
2014-10-29 18:46:44 +00:00
|
|
|
EXPECT_EQ(0, op->ControlOutputCount());
|
|
|
|
EXPECT_EQ(0, op->EffectOutputCount());
|
|
|
|
EXPECT_EQ(1, op->ValueOutputCount());
|
2014-10-08 07:32:07 +00:00
|
|
|
}
|
|
|
|
TRACED_FOREACH(double, v1, kFloatValues) {
|
|
|
|
TRACED_FOREACH(double, v2, kFloatValues) {
|
|
|
|
const Operator* op1 = common()->NumberConstant(v1);
|
|
|
|
const Operator* op2 = common()->NumberConstant(v2);
|
|
|
|
EXPECT_EQ(bit_cast<uint64_t>(v1) == bit_cast<uint64_t>(v2),
|
|
|
|
op1->Equals(op2));
|
|
|
|
}
|
|
|
|
}
|
2014-09-22 11:42:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-19 04:54:06 +00:00
|
|
|
TEST_F(CommonOperatorTest, ValueEffect) {
|
|
|
|
TRACED_FOREACH(int, arguments, kArguments) {
|
2014-09-10 12:23:45 +00:00
|
|
|
const Operator* op = common()->ValueEffect(arguments);
|
2014-10-29 18:46:44 +00:00
|
|
|
EXPECT_EQ(arguments, op->ValueInputCount());
|
2014-08-19 04:54:06 +00:00
|
|
|
EXPECT_EQ(arguments, OperatorProperties::GetTotalInputCount(op));
|
2014-10-29 18:46:44 +00:00
|
|
|
EXPECT_EQ(0, op->ControlOutputCount());
|
|
|
|
EXPECT_EQ(1, op->EffectOutputCount());
|
|
|
|
EXPECT_EQ(0, op->ValueOutputCount());
|
2014-08-19 04:54:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-18 11:36:06 +00:00
|
|
|
TEST_F(CommonOperatorTest, Finish) {
|
|
|
|
TRACED_FOREACH(int, arguments, kArguments) {
|
2014-09-10 12:23:45 +00:00
|
|
|
const Operator* op = common()->Finish(arguments);
|
2014-10-29 18:46:44 +00:00
|
|
|
EXPECT_EQ(1, op->ValueInputCount());
|
|
|
|
EXPECT_EQ(arguments, op->EffectInputCount());
|
2014-08-18 11:36:06 +00:00
|
|
|
EXPECT_EQ(arguments + 1, OperatorProperties::GetTotalInputCount(op));
|
2014-10-29 18:46:44 +00:00
|
|
|
EXPECT_EQ(0, op->ControlOutputCount());
|
|
|
|
EXPECT_EQ(0, op->EffectOutputCount());
|
|
|
|
EXPECT_EQ(1, op->ValueOutputCount());
|
2014-08-18 11:36:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-18 06:54:07 +00:00
|
|
|
} // namespace compiler
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|