2015-02-27 06:56:44 +00:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2015-03-18 11:42:36 +00:00
|
|
|
#include "src/bootstrapper.h"
|
2015-02-27 06:56:44 +00:00
|
|
|
#include "src/code-stubs.h"
|
2015-03-18 11:42:36 +00:00
|
|
|
#include "src/compiler/common-operator.h"
|
2015-02-27 06:56:44 +00:00
|
|
|
#include "src/compiler/graph.h"
|
2015-05-11 11:45:02 +00:00
|
|
|
#include "src/compiler/js-graph.h"
|
|
|
|
#include "src/compiler/js-operator.h"
|
2015-02-27 06:56:44 +00:00
|
|
|
#include "src/compiler/linkage.h"
|
2015-05-11 11:45:02 +00:00
|
|
|
#include "src/compiler/machine-operator.h"
|
2015-02-27 06:56:44 +00:00
|
|
|
#include "src/compiler/pipeline.h"
|
2015-03-18 11:42:36 +00:00
|
|
|
#include "src/parser.h"
|
2015-02-27 06:56:44 +00:00
|
|
|
#include "test/cctest/compiler/function-tester.h"
|
|
|
|
|
|
|
|
#if V8_TURBOFAN_TARGET
|
|
|
|
|
|
|
|
using namespace v8::internal;
|
|
|
|
using namespace v8::internal::compiler;
|
|
|
|
|
|
|
|
|
2015-05-11 11:45:02 +00:00
|
|
|
TEST(RunMathFloorStub) {
|
|
|
|
HandleAndZoneScope scope;
|
|
|
|
Isolate* isolate = scope.main_isolate();
|
2015-02-27 06:56:44 +00:00
|
|
|
|
2015-05-11 11:45:02 +00:00
|
|
|
// Create code and an accompanying descriptor.
|
|
|
|
MathFloorStub stub(isolate);
|
|
|
|
Handle<Code> code = stub.GenerateCode();
|
|
|
|
Zone* zone = scope.main_zone();
|
2015-02-27 06:56:44 +00:00
|
|
|
|
2015-05-11 11:45:02 +00:00
|
|
|
CompilationInfo info(&stub, isolate, zone);
|
|
|
|
CallDescriptor* descriptor = Linkage::ComputeIncoming(zone, &info);
|
2015-02-27 06:56:44 +00:00
|
|
|
|
2015-05-11 11:45:02 +00:00
|
|
|
// Create a function to call the code using the descriptor.
|
|
|
|
Graph graph(zone);
|
|
|
|
CommonOperatorBuilder common(zone);
|
|
|
|
JSOperatorBuilder javascript(zone);
|
|
|
|
MachineOperatorBuilder machine(zone);
|
|
|
|
JSGraph js(isolate, &graph, &common, &javascript, &machine);
|
2015-02-27 06:56:44 +00:00
|
|
|
|
2015-05-11 11:45:02 +00:00
|
|
|
// FunctionTester (ab)uses a 2-argument function
|
|
|
|
Node* start = graph.NewNode(common.Start(2));
|
|
|
|
// Parameter 0 is the number to round
|
|
|
|
Node* numberParam = graph.NewNode(common.Parameter(1), start);
|
|
|
|
Unique<HeapObject> u = Unique<HeapObject>::CreateImmovable(code);
|
|
|
|
Node* theCode = graph.NewNode(common.HeapConstant(u));
|
|
|
|
Node* dummyContext = graph.NewNode(common.NumberConstant(0.0));
|
|
|
|
Node* call = graph.NewNode(common.Call(descriptor), theCode,
|
|
|
|
js.UndefinedConstant(), js.UndefinedConstant(),
|
|
|
|
numberParam, dummyContext, start, start);
|
|
|
|
Node* ret = graph.NewNode(common.Return(), call, call, start);
|
|
|
|
Node* end = graph.NewNode(common.End(), ret);
|
|
|
|
graph.SetStart(start);
|
|
|
|
graph.SetEnd(end);
|
|
|
|
FunctionTester ft(&graph);
|
|
|
|
|
|
|
|
Handle<Object> value = ft.Val(1.5);
|
|
|
|
Handle<Object> result = ft.Call(value, value).ToHandleChecked();
|
|
|
|
CHECK_EQ(1, Smi::cast(*result)->value());
|
|
|
|
}
|
2015-02-27 06:56:44 +00:00
|
|
|
|
|
|
|
|
2015-05-11 11:45:02 +00:00
|
|
|
TEST(RunStringLengthTFStub) {
|
2015-02-27 06:56:44 +00:00
|
|
|
HandleAndZoneScope scope;
|
|
|
|
Isolate* isolate = scope.main_isolate();
|
|
|
|
Zone* zone = scope.main_zone();
|
|
|
|
|
|
|
|
// Create code and an accompanying descriptor.
|
2015-05-11 11:45:02 +00:00
|
|
|
StringLengthTFStub stub(isolate);
|
2015-02-27 06:56:44 +00:00
|
|
|
Handle<Code> code = stub.GenerateCode();
|
|
|
|
CompilationInfo info(&stub, isolate, zone);
|
|
|
|
CallDescriptor* descriptor = Linkage::ComputeIncoming(zone, &info);
|
|
|
|
|
|
|
|
// Create a function to call the code using the descriptor.
|
|
|
|
Graph graph(zone);
|
|
|
|
CommonOperatorBuilder common(zone);
|
2015-05-20 13:19:11 +00:00
|
|
|
// FunctionTester (ab)uses a 4-argument function
|
|
|
|
Node* start = graph.NewNode(common.Start(4));
|
2015-02-27 06:56:44 +00:00
|
|
|
// Parameter 0 is the receiver
|
|
|
|
Node* receiverParam = graph.NewNode(common.Parameter(1), start);
|
|
|
|
Node* nameParam = graph.NewNode(common.Parameter(2), start);
|
2015-05-20 13:19:11 +00:00
|
|
|
Node* slotParam = graph.NewNode(common.Parameter(3), start);
|
|
|
|
Node* vectorParam = graph.NewNode(common.Parameter(4), start);
|
2015-02-27 06:56:44 +00:00
|
|
|
Unique<HeapObject> u = Unique<HeapObject>::CreateImmovable(code);
|
|
|
|
Node* theCode = graph.NewNode(common.HeapConstant(u));
|
|
|
|
Node* dummyContext = graph.NewNode(common.NumberConstant(0.0));
|
2015-05-20 13:19:11 +00:00
|
|
|
Node* call =
|
|
|
|
graph.NewNode(common.Call(descriptor), theCode, receiverParam, nameParam,
|
|
|
|
slotParam, vectorParam, dummyContext, start, start);
|
2015-02-27 06:56:44 +00:00
|
|
|
Node* ret = graph.NewNode(common.Return(), call, call, start);
|
|
|
|
Node* end = graph.NewNode(common.End(), ret);
|
|
|
|
graph.SetStart(start);
|
|
|
|
graph.SetEnd(end);
|
|
|
|
FunctionTester ft(&graph);
|
|
|
|
|
|
|
|
// Actuall call through to the stub, verifying its result.
|
|
|
|
const char* testString = "Und das Lamm schrie HURZ!";
|
|
|
|
Handle<JSReceiver> receiverArg =
|
|
|
|
Object::ToObject(isolate, ft.Val(testString)).ToHandleChecked();
|
|
|
|
Handle<String> nameArg = ft.Val("length");
|
2015-05-20 13:19:11 +00:00
|
|
|
Handle<Object> slot = ft.Val(0.0);
|
|
|
|
Handle<Object> vector = ft.Val(0.0);
|
|
|
|
Handle<Object> result =
|
|
|
|
ft.Call(receiverArg, nameArg, slot, vector).ToHandleChecked();
|
2015-02-27 06:56:44 +00:00
|
|
|
CHECK_EQ(static_cast<int>(strlen(testString)), Smi::cast(*result)->value());
|
|
|
|
}
|
|
|
|
|
2015-05-21 14:31:41 +00:00
|
|
|
|
|
|
|
TEST(RunStringAddTFStub) {
|
|
|
|
HandleAndZoneScope scope;
|
|
|
|
Isolate* isolate = scope.main_isolate();
|
|
|
|
Zone* zone = scope.main_zone();
|
|
|
|
|
|
|
|
// Create code and an accompanying descriptor.
|
|
|
|
StringAddTFStub stub(isolate, STRING_ADD_CHECK_BOTH, NOT_TENURED);
|
|
|
|
Handle<Code> code = stub.GenerateCode();
|
|
|
|
CompilationInfo info(&stub, isolate, zone);
|
|
|
|
CallDescriptor* descriptor = Linkage::ComputeIncoming(zone, &info);
|
|
|
|
|
|
|
|
// Create a function to call the code using the descriptor.
|
|
|
|
Graph graph(zone);
|
|
|
|
CommonOperatorBuilder common(zone);
|
|
|
|
// FunctionTester (ab)uses a 2-argument function
|
|
|
|
Node* start = graph.NewNode(common.Start(2));
|
|
|
|
// Parameter 0 is the receiver
|
|
|
|
Node* leftParam = graph.NewNode(common.Parameter(1), start);
|
|
|
|
Node* rightParam = graph.NewNode(common.Parameter(2), start);
|
|
|
|
Unique<HeapObject> u = Unique<HeapObject>::CreateImmovable(code);
|
|
|
|
Node* theCode = graph.NewNode(common.HeapConstant(u));
|
|
|
|
Node* dummyContext = graph.NewNode(common.NumberConstant(0.0));
|
|
|
|
Node* call = graph.NewNode(common.Call(descriptor), theCode, leftParam,
|
|
|
|
rightParam, dummyContext, start, start);
|
|
|
|
Node* ret = graph.NewNode(common.Return(), call, call, start);
|
|
|
|
Node* end = graph.NewNode(common.End(), ret);
|
|
|
|
graph.SetStart(start);
|
|
|
|
graph.SetEnd(end);
|
|
|
|
FunctionTester ft(&graph);
|
|
|
|
|
|
|
|
// Actuall call through to the stub, verifying its result.
|
|
|
|
Handle<String> leftArg = ft.Val("links");
|
|
|
|
Handle<String> rightArg = ft.Val("rechts");
|
|
|
|
Handle<Object> result = ft.Call(leftArg, rightArg).ToHandleChecked();
|
|
|
|
CHECK(String::Equals(ft.Val("linksrechts"), Handle<String>::cast(result)));
|
|
|
|
}
|
|
|
|
|
2015-02-27 06:56:44 +00:00
|
|
|
#endif // V8_TURBOFAN_TARGET
|