2014-09-30 10:42:44 +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.
|
|
|
|
|
|
|
|
#include "src/compiler/js-operator.h"
|
2014-12-23 12:50:43 +00:00
|
|
|
#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-09-30 10:42:44 +00:00
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
namespace compiler {
|
|
|
|
|
2015-04-27 09:12:58 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
2016-02-16 13:54:51 +00:00
|
|
|
// Shared operators.
|
2015-04-27 09:12:58 +00:00
|
|
|
|
|
|
|
namespace {
|
2015-04-24 12:32:56 +00:00
|
|
|
|
2014-09-30 10:42:44 +00:00
|
|
|
struct SharedOperator {
|
2015-04-27 09:12:58 +00:00
|
|
|
const Operator* (JSOperatorBuilder::*constructor)();
|
2014-09-30 10:42:44 +00:00
|
|
|
IrOpcode::Value opcode;
|
|
|
|
Operator::Properties properties;
|
|
|
|
int value_input_count;
|
|
|
|
int frame_state_input_count;
|
|
|
|
int effect_input_count;
|
|
|
|
int control_input_count;
|
|
|
|
int value_output_count;
|
|
|
|
int effect_output_count;
|
2015-02-20 09:54:49 +00:00
|
|
|
int control_output_count;
|
2014-09-30 10:42:44 +00:00
|
|
|
};
|
|
|
|
|
2015-04-27 09:12:58 +00:00
|
|
|
const SharedOperator kSharedOperators[] = {
|
2014-09-30 10:42:44 +00:00
|
|
|
#define SHARED(Name, properties, value_input_count, frame_state_input_count, \
|
|
|
|
effect_input_count, control_input_count, value_output_count, \
|
2015-02-20 09:54:49 +00:00
|
|
|
effect_output_count, control_output_count) \
|
2014-09-30 10:42:44 +00:00
|
|
|
{ \
|
|
|
|
&JSOperatorBuilder::Name, IrOpcode::kJS##Name, properties, \
|
|
|
|
value_input_count, frame_state_input_count, effect_input_count, \
|
2015-02-20 09:54:49 +00:00
|
|
|
control_input_count, value_output_count, effect_output_count, \
|
|
|
|
control_output_count \
|
2014-09-30 10:42:44 +00:00
|
|
|
}
|
2015-02-20 09:54:49 +00:00
|
|
|
SHARED(Equal, Operator::kNoProperties, 2, 1, 1, 1, 1, 1, 2),
|
|
|
|
SHARED(NotEqual, Operator::kNoProperties, 2, 1, 1, 1, 1, 1, 2),
|
2015-09-29 13:51:25 +00:00
|
|
|
SHARED(StrictEqual, Operator::kNoThrow, 2, 0, 1, 1, 1, 1, 0),
|
|
|
|
SHARED(StrictNotEqual, Operator::kNoThrow, 2, 0, 1, 1, 1, 1, 0),
|
2016-02-16 13:54:51 +00:00
|
|
|
SHARED(LessThan, Operator::kNoProperties, 2, 2, 1, 1, 1, 1, 2),
|
|
|
|
SHARED(GreaterThan, Operator::kNoProperties, 2, 2, 1, 1, 1, 1, 2),
|
|
|
|
SHARED(LessThanOrEqual, Operator::kNoProperties, 2, 2, 1, 1, 1, 1, 2),
|
|
|
|
SHARED(GreaterThanOrEqual, Operator::kNoProperties, 2, 2, 1, 1, 1, 1, 2),
|
2015-02-20 09:54:49 +00:00
|
|
|
SHARED(ToNumber, Operator::kNoProperties, 1, 1, 1, 1, 1, 1, 2),
|
2015-11-05 09:50:55 +00:00
|
|
|
SHARED(ToString, Operator::kNoProperties, 1, 1, 1, 1, 1, 1, 2),
|
2015-02-20 09:54:49 +00:00
|
|
|
SHARED(ToName, Operator::kNoProperties, 1, 1, 1, 1, 1, 1, 2),
|
|
|
|
SHARED(ToObject, Operator::kNoProperties, 1, 1, 1, 1, 1, 1, 2),
|
|
|
|
SHARED(Yield, Operator::kNoProperties, 1, 0, 1, 1, 1, 1, 2),
|
2015-11-13 14:05:36 +00:00
|
|
|
SHARED(Create, Operator::kEliminatable, 2, 1, 1, 0, 1, 1, 0),
|
2015-02-20 09:54:49 +00:00
|
|
|
SHARED(HasProperty, Operator::kNoProperties, 2, 1, 1, 1, 1, 1, 2),
|
2015-09-29 13:51:25 +00:00
|
|
|
SHARED(TypeOf, Operator::kEliminatable, 1, 0, 1, 0, 1, 1, 0),
|
2015-02-20 09:54:49 +00:00
|
|
|
SHARED(InstanceOf, Operator::kNoProperties, 2, 1, 1, 1, 1, 1, 2),
|
2015-12-09 12:00:08 +00:00
|
|
|
SHARED(CreateWithContext, Operator::kNoProperties, 2, 0, 1, 1, 1, 1, 2),
|
2015-02-20 09:54:49 +00:00
|
|
|
SHARED(CreateModuleContext, Operator::kNoProperties, 2, 0, 1, 1, 1, 1, 2),
|
2014-09-30 10:42:44 +00:00
|
|
|
#undef SHARED
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-04-27 09:12:58 +00:00
|
|
|
std::ostream& operator<<(std::ostream& os, const SharedOperator& sop) {
|
2015-04-24 12:32:56 +00:00
|
|
|
return os << IrOpcode::Mnemonic(sop.opcode);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
|
|
|
|
class JSSharedOperatorTest
|
|
|
|
: public TestWithZone,
|
2015-04-27 09:12:58 +00:00
|
|
|
public ::testing::WithParamInterface<SharedOperator> {};
|
2015-04-24 12:32:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
TEST_P(JSSharedOperatorTest, InstancesAreGloballyShared) {
|
2015-04-27 09:12:58 +00:00
|
|
|
const SharedOperator& sop = GetParam();
|
2015-04-24 12:32:56 +00:00
|
|
|
JSOperatorBuilder javascript1(zone());
|
|
|
|
JSOperatorBuilder javascript2(zone());
|
|
|
|
EXPECT_EQ((javascript1.*sop.constructor)(), (javascript2.*sop.constructor)());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_P(JSSharedOperatorTest, NumberOfInputsAndOutputs) {
|
|
|
|
JSOperatorBuilder javascript(zone());
|
2015-04-27 09:12:58 +00:00
|
|
|
const SharedOperator& sop = GetParam();
|
2015-04-24 12:32:56 +00:00
|
|
|
const Operator* op = (javascript.*sop.constructor)();
|
2015-04-27 09:12:58 +00:00
|
|
|
|
|
|
|
const int context_input_count = 1;
|
|
|
|
EXPECT_EQ(sop.value_input_count, op->ValueInputCount());
|
|
|
|
EXPECT_EQ(context_input_count, OperatorProperties::GetContextInputCount(op));
|
|
|
|
EXPECT_EQ(sop.frame_state_input_count,
|
|
|
|
OperatorProperties::GetFrameStateInputCount(op));
|
|
|
|
EXPECT_EQ(sop.effect_input_count, op->EffectInputCount());
|
|
|
|
EXPECT_EQ(sop.control_input_count, op->ControlInputCount());
|
|
|
|
EXPECT_EQ(sop.value_input_count + context_input_count +
|
|
|
|
sop.frame_state_input_count + sop.effect_input_count +
|
|
|
|
sop.control_input_count,
|
|
|
|
OperatorProperties::GetTotalInputCount(op));
|
|
|
|
|
|
|
|
EXPECT_EQ(sop.value_output_count, op->ValueOutputCount());
|
|
|
|
EXPECT_EQ(sop.effect_output_count, op->EffectOutputCount());
|
|
|
|
EXPECT_EQ(sop.control_output_count, op->ControlOutputCount());
|
2015-04-24 12:32:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-30 10:42:44 +00:00
|
|
|
TEST_P(JSSharedOperatorTest, OpcodeIsCorrect) {
|
|
|
|
JSOperatorBuilder javascript(zone());
|
2015-04-27 09:12:58 +00:00
|
|
|
const SharedOperator& sop = GetParam();
|
2014-09-30 10:42:44 +00:00
|
|
|
const Operator* op = (javascript.*sop.constructor)();
|
|
|
|
EXPECT_EQ(sop.opcode, op->opcode());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_P(JSSharedOperatorTest, Properties) {
|
|
|
|
JSOperatorBuilder javascript(zone());
|
2015-04-27 09:12:58 +00:00
|
|
|
const SharedOperator& sop = GetParam();
|
2014-09-30 10:42:44 +00:00
|
|
|
const Operator* op = (javascript.*sop.constructor)();
|
|
|
|
EXPECT_EQ(sop.properties, op->properties());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
INSTANTIATE_TEST_CASE_P(JSOperatorTest, JSSharedOperatorTest,
|
|
|
|
::testing::ValuesIn(kSharedOperators));
|
|
|
|
|
|
|
|
} // namespace compiler
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|