1617f24279
Bug: v8:12781 Change-Id: I649318b653d62ba484d6b2d96ee66e8fb30ad6b5 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3829324 Reviewed-by: Camillo Bruni <cbruni@chromium.org> Commit-Queue: Camillo Bruni <cbruni@chromium.org> Cr-Commit-Position: refs/heads/main@{#82645}
206 lines
6.9 KiB
C++
206 lines
6.9 KiB
C++
// 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 "test/unittests/compiler/function-tester.h"
|
|
|
|
#include "include/v8-function.h"
|
|
#include "src/codegen/assembler.h"
|
|
#include "src/codegen/compiler.h"
|
|
#include "src/codegen/optimized-compilation-info.h"
|
|
#include "src/compiler/graph.h"
|
|
#include "src/compiler/js-heap-broker.h"
|
|
#include "src/compiler/linkage.h"
|
|
#include "src/compiler/pipeline.h"
|
|
#include "src/execution/execution.h"
|
|
#include "src/handles/handles.h"
|
|
#include "src/objects/objects-inl.h"
|
|
#include "src/parsing/parse-info.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
namespace compiler {
|
|
|
|
namespace {
|
|
v8::Local<v8::Value> CompileRun(Isolate* isolate, const char* source) {
|
|
v8::Isolate* v8_isolate = reinterpret_cast<v8::Isolate*>(isolate);
|
|
v8::Local<v8::Context> context = v8_isolate->GetCurrentContext();
|
|
v8::Local<v8::Script> script =
|
|
v8::Script::Compile(
|
|
context, v8::String::NewFromUtf8(v8_isolate, source).ToLocalChecked())
|
|
.ToLocalChecked();
|
|
return script->Run(context).ToLocalChecked();
|
|
}
|
|
} // namespace
|
|
|
|
FunctionTester::FunctionTester(Isolate* isolate, const char* source,
|
|
uint32_t flags)
|
|
: isolate(isolate),
|
|
canonical(isolate),
|
|
function((FLAG_allow_natives_syntax = true, NewFunction(source))),
|
|
flags_(flags) {
|
|
Compile(function);
|
|
const uint32_t supported_flags = OptimizedCompilationInfo::kInlining;
|
|
CHECK_EQ(0u, flags_ & ~supported_flags);
|
|
}
|
|
|
|
FunctionTester::FunctionTester(Isolate* isolate, Graph* graph, int param_count)
|
|
: isolate(isolate),
|
|
canonical(isolate),
|
|
function(NewFunction(BuildFunction(param_count).c_str())),
|
|
flags_(0) {
|
|
CompileGraph(graph);
|
|
}
|
|
|
|
FunctionTester::FunctionTester(Isolate* isolate, Handle<Code> code,
|
|
int param_count)
|
|
: isolate(isolate),
|
|
canonical(isolate),
|
|
function((FLAG_allow_natives_syntax = true,
|
|
NewFunction(BuildFunction(param_count).c_str()))),
|
|
flags_(0) {
|
|
CHECK(!code.is_null());
|
|
Compile(function);
|
|
function->set_code(ToCodeT(*code), kReleaseStore);
|
|
}
|
|
|
|
FunctionTester::FunctionTester(Isolate* isolate, Handle<Code> code)
|
|
: FunctionTester(isolate, code, 0) {}
|
|
|
|
void FunctionTester::CheckThrows(Handle<Object> a) {
|
|
TryCatch try_catch(reinterpret_cast<v8::Isolate*>(isolate));
|
|
MaybeHandle<Object> no_result = Call(a);
|
|
CHECK(isolate->has_pending_exception());
|
|
CHECK(try_catch.HasCaught());
|
|
CHECK(no_result.is_null());
|
|
isolate->OptionalRescheduleException(true);
|
|
}
|
|
|
|
void FunctionTester::CheckThrows(Handle<Object> a, Handle<Object> b) {
|
|
TryCatch try_catch(reinterpret_cast<v8::Isolate*>(isolate));
|
|
MaybeHandle<Object> no_result = Call(a, b);
|
|
CHECK(isolate->has_pending_exception());
|
|
CHECK(try_catch.HasCaught());
|
|
CHECK(no_result.is_null());
|
|
isolate->OptionalRescheduleException(true);
|
|
}
|
|
|
|
v8::Local<v8::Message> FunctionTester::CheckThrowsReturnMessage(
|
|
Handle<Object> a, Handle<Object> b) {
|
|
TryCatch try_catch(reinterpret_cast<v8::Isolate*>(isolate));
|
|
MaybeHandle<Object> no_result = Call(a, b);
|
|
CHECK(isolate->has_pending_exception());
|
|
CHECK(try_catch.HasCaught());
|
|
CHECK(no_result.is_null());
|
|
isolate->OptionalRescheduleException(true);
|
|
CHECK(!try_catch.Message().IsEmpty());
|
|
return try_catch.Message();
|
|
}
|
|
|
|
void FunctionTester::CheckCall(Handle<Object> expected, Handle<Object> a,
|
|
Handle<Object> b, Handle<Object> c,
|
|
Handle<Object> d) {
|
|
Handle<Object> result = Call(a, b, c, d).ToHandleChecked();
|
|
CHECK(expected->SameValue(*result));
|
|
}
|
|
|
|
Handle<JSFunction> FunctionTester::NewFunction(const char* source) {
|
|
return Handle<JSFunction>::cast(v8::Utils::OpenHandle(
|
|
*v8::Local<v8::Function>::Cast(CompileRun(isolate, source))));
|
|
}
|
|
|
|
Handle<JSObject> FunctionTester::NewObject(const char* source) {
|
|
return Handle<JSObject>::cast(v8::Utils::OpenHandle(
|
|
*v8::Local<v8::Object>::Cast(CompileRun(isolate, source))));
|
|
}
|
|
|
|
Handle<String> FunctionTester::NewString(const char* string) {
|
|
return isolate->factory()->InternalizeUtf8String(string);
|
|
}
|
|
|
|
Handle<Object> FunctionTester::NewNumber(double value) {
|
|
return isolate->factory()->NewNumber(value);
|
|
}
|
|
|
|
Handle<Object> FunctionTester::infinity() {
|
|
return isolate->factory()->infinity_value();
|
|
}
|
|
|
|
Handle<Object> FunctionTester::minus_infinity() {
|
|
return NewNumber(-V8_INFINITY);
|
|
}
|
|
|
|
Handle<Object> FunctionTester::nan() { return isolate->factory()->nan_value(); }
|
|
|
|
Handle<Object> FunctionTester::undefined() {
|
|
return isolate->factory()->undefined_value();
|
|
}
|
|
|
|
Handle<Object> FunctionTester::null() {
|
|
return isolate->factory()->null_value();
|
|
}
|
|
|
|
Handle<Object> FunctionTester::true_value() {
|
|
return isolate->factory()->true_value();
|
|
}
|
|
|
|
Handle<Object> FunctionTester::false_value() {
|
|
return isolate->factory()->false_value();
|
|
}
|
|
|
|
Handle<JSFunction> FunctionTester::Compile(Handle<JSFunction> f) {
|
|
Zone zone(isolate->allocator(), ZONE_NAME);
|
|
return Optimize(f, &zone, flags_);
|
|
}
|
|
|
|
// Compile the given machine graph instead of the source of the function
|
|
// and replace the JSFunction's code with the result.
|
|
Handle<JSFunction> FunctionTester::CompileGraph(Graph* graph) {
|
|
Handle<SharedFunctionInfo> shared(function->shared(), isolate);
|
|
Zone zone(isolate->allocator(), ZONE_NAME);
|
|
OptimizedCompilationInfo info(&zone, isolate, shared, function,
|
|
CodeKind::TURBOFAN);
|
|
|
|
auto call_descriptor = Linkage::ComputeIncoming(&zone, &info);
|
|
Handle<Code> code =
|
|
Pipeline::GenerateCodeForTesting(&info, isolate, call_descriptor, graph,
|
|
AssemblerOptions::Default(isolate))
|
|
.ToHandleChecked();
|
|
function->set_code(*code, kReleaseStore);
|
|
return function;
|
|
}
|
|
|
|
Handle<JSFunction> FunctionTester::Optimize(
|
|
Handle<JSFunction> function, Zone* zone, uint32_t flags,
|
|
std::unique_ptr<compiler::JSHeapBroker>* out_broker) {
|
|
Handle<SharedFunctionInfo> shared(function->shared(), isolate);
|
|
IsCompiledScope is_compiled_scope(shared->is_compiled_scope(isolate));
|
|
CHECK(is_compiled_scope.is_compiled() ||
|
|
Compiler::Compile(isolate, function, Compiler::CLEAR_EXCEPTION,
|
|
&is_compiled_scope));
|
|
|
|
CHECK_NOT_NULL(zone);
|
|
|
|
OptimizedCompilationInfo info(zone, isolate, shared, function,
|
|
CodeKind::TURBOFAN);
|
|
|
|
if (flags & ~OptimizedCompilationInfo::kInlining) UNIMPLEMENTED();
|
|
if (flags & OptimizedCompilationInfo::kInlining) {
|
|
info.set_inlining();
|
|
}
|
|
|
|
CHECK(info.shared_info()->HasBytecodeArray());
|
|
JSFunction::EnsureFeedbackVector(isolate, function, &is_compiled_scope);
|
|
|
|
Handle<CodeT> code = ToCodeT(
|
|
compiler::Pipeline::GenerateCodeForTesting(&info, isolate, out_broker)
|
|
.ToHandleChecked(),
|
|
isolate);
|
|
info.native_context().AddOptimizedCode(*code);
|
|
function->set_code(*code, v8::kReleaseStore);
|
|
return function;
|
|
}
|
|
} // namespace compiler
|
|
} // namespace internal
|
|
} // namespace v8
|