// Copyright 2012 the V8 project authors. All rights reserved. // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following // disclaimer in the documentation and/or other materials provided // with the distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived // from this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include #include #include #include #include #include "test/cctest/test-api.h" #if V8_OS_POSIX #include // NOLINT #endif #include "include/v8-util.h" #include "src/api/api-inl.h" #include "src/base/overflowing-math.h" #include "src/base/platform/platform.h" #include "src/codegen/compilation-cache.h" #include "src/debug/debug.h" #include "src/execution/arguments.h" #include "src/execution/execution.h" #include "src/execution/futex-emulation.h" #include "src/execution/protectors-inl.h" #include "src/execution/vm-state.h" #include "src/handles/global-handles.h" #include "src/heap/heap-inl.h" #include "src/heap/incremental-marking.h" #include "src/heap/local-allocator.h" #include "src/objects/feedback-vector-inl.h" #include "src/objects/feedback-vector.h" #include "src/objects/hash-table-inl.h" #include "src/objects/js-array-buffer-inl.h" #include "src/objects/js-array-inl.h" #include "src/objects/js-promise-inl.h" #include "src/objects/lookup.h" #include "src/objects/module-inl.h" #include "src/objects/objects-inl.h" #include "src/objects/string-inl.h" #include "src/profiler/cpu-profiler.h" #include "src/strings/unicode-inl.h" #include "src/utils/utils.h" #include "src/wasm/wasm-js.h" #include "test/cctest/heap/heap-tester.h" #include "test/cctest/heap/heap-utils.h" #include "test/cctest/wasm/wasm-run-utils.h" #include "test/common/wasm/wasm-macro-gen.h" static const bool kLogThreading = false; using ::v8::Array; using ::v8::Boolean; using ::v8::BooleanObject; using ::v8::Context; using ::v8::Extension; using ::v8::Function; using ::v8::FunctionTemplate; using ::v8::HandleScope; using ::v8::Local; using ::v8::Maybe; using ::v8::Message; using ::v8::MessageCallback; using ::v8::Module; using ::v8::Name; using ::v8::None; using ::v8::Object; using ::v8::ObjectTemplate; using ::v8::Persistent; using ::v8::PropertyAttribute; using ::v8::Script; using ::v8::String; using ::v8::Symbol; using ::v8::TryCatch; using ::v8::Undefined; using ::v8::V8; using ::v8::Value; #define THREADED_PROFILED_TEST(Name) \ static void Test##Name(); \ TEST(Name##WithProfiler) { \ RunWithProfiler(&Test##Name); \ } \ THREADED_TEST(Name) void RunWithProfiler(void (*test)()) { LocalContext env; v8::HandleScope scope(env->GetIsolate()); v8::Local profile_name = v8_str("my_profile1"); v8::CpuProfiler* cpu_profiler = v8::CpuProfiler::New(env->GetIsolate()); cpu_profiler->StartProfiling(profile_name); (*test)(); reinterpret_cast(cpu_profiler)->DeleteAllProfiles(); cpu_profiler->Dispose(); } static int signature_callback_count; static Local signature_expected_receiver; static void IncrementingSignatureCallback( const v8::FunctionCallbackInfo& args) { ApiTestFuzzer::Fuzz(); signature_callback_count++; CHECK(signature_expected_receiver->Equals( args.GetIsolate()->GetCurrentContext(), args.Holder()) .FromJust()); CHECK(signature_expected_receiver->Equals( args.GetIsolate()->GetCurrentContext(), args.This()) .FromJust()); v8::Local result = v8::Array::New(args.GetIsolate(), args.Length()); for (int i = 0; i < args.Length(); i++) { CHECK(result->Set(args.GetIsolate()->GetCurrentContext(), v8::Integer::New(args.GetIsolate(), i), args[i]) .FromJust()); } args.GetReturnValue().Set(result); } static void Returns42(const v8::FunctionCallbackInfo& info) { info.GetReturnValue().Set(42); } // Tests that call v8::V8::Dispose() cannot be threaded. UNINITIALIZED_TEST(InitializeAndDisposeOnce) { CHECK(v8::V8::Initialize()); CHECK(v8::V8::Dispose()); } // Tests that call v8::V8::Dispose() cannot be threaded. UNINITIALIZED_TEST(InitializeAndDisposeMultiple) { for (int i = 0; i < 3; ++i) CHECK(v8::V8::Dispose()); for (int i = 0; i < 3; ++i) CHECK(v8::V8::Initialize()); for (int i = 0; i < 3; ++i) CHECK(v8::V8::Dispose()); for (int i = 0; i < 3; ++i) CHECK(v8::V8::Initialize()); for (int i = 0; i < 3; ++i) CHECK(v8::V8::Dispose()); } // Tests that Smi::kZero is set up properly. UNINITIALIZED_TEST(SmiZero) { CHECK_EQ(i::Smi::kZero, i::Smi::kZero); } THREADED_TEST(Handles) { v8::HandleScope scope(CcTest::isolate()); Local local_env; { LocalContext env; local_env = env.local(); } // Local context should still be live. CHECK(!local_env.IsEmpty()); local_env->Enter(); v8::Local undef = v8::Undefined(CcTest::isolate()); CHECK(!undef.IsEmpty()); CHECK(undef->IsUndefined()); const char* source = "1 + 2 + 3"; Local