2008-09-09 20:08:45 +00:00
|
|
|
// Copyright 2008 the V8 project authors. All rights reserved.
|
2008-08-22 13:33:59 +00:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
#ifndef CCTEST_H_
|
|
|
|
#define CCTEST_H_
|
|
|
|
|
2016-09-01 12:01:33 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2015-07-15 12:26:06 +00:00
|
|
|
#include "include/libplatform/libplatform.h"
|
2016-09-01 12:01:33 +00:00
|
|
|
#include "include/v8-debug.h"
|
|
|
|
#include "src/utils.h"
|
2014-06-03 08:12:43 +00:00
|
|
|
#include "src/v8.h"
|
2016-09-20 16:07:25 +00:00
|
|
|
#include "src/zone/accounting-allocator.h"
|
2009-11-04 08:51:48 +00:00
|
|
|
|
2016-09-01 12:01:33 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace base {
|
|
|
|
|
|
|
|
class RandomNumberGenerator;
|
|
|
|
|
|
|
|
} // namespace base
|
|
|
|
|
|
|
|
namespace internal {
|
|
|
|
|
|
|
|
class HandleScope;
|
|
|
|
class Zone;
|
|
|
|
|
|
|
|
} // namespace internal
|
|
|
|
|
|
|
|
} // namespace v8
|
|
|
|
|
2008-08-22 13:33:59 +00:00
|
|
|
#ifndef TEST
|
2016-03-02 13:12:59 +00:00
|
|
|
#define TEST(Name) \
|
|
|
|
static void Test##Name(); \
|
|
|
|
CcTest register_test_##Name(Test##Name, __FILE__, #Name, true, true); \
|
2013-09-19 07:33:45 +00:00
|
|
|
static void Test##Name()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef UNINITIALIZED_TEST
|
2016-03-02 13:12:59 +00:00
|
|
|
#define UNINITIALIZED_TEST(Name) \
|
|
|
|
static void Test##Name(); \
|
|
|
|
CcTest register_test_##Name(Test##Name, __FILE__, #Name, true, false); \
|
2014-09-19 08:01:35 +00:00
|
|
|
static void Test##Name()
|
|
|
|
#endif
|
|
|
|
|
2008-09-05 00:04:37 +00:00
|
|
|
#ifndef DISABLED_TEST
|
2016-03-02 13:12:59 +00:00
|
|
|
#define DISABLED_TEST(Name) \
|
|
|
|
static void Test##Name(); \
|
|
|
|
CcTest register_test_##Name(Test##Name, __FILE__, #Name, false, true); \
|
2008-08-22 13:33:59 +00:00
|
|
|
static void Test##Name()
|
|
|
|
#endif
|
|
|
|
|
2014-01-17 10:52:00 +00:00
|
|
|
#define EXTENSION_LIST(V) \
|
|
|
|
V(GC_EXTENSION, "v8/gc") \
|
|
|
|
V(PRINT_EXTENSION, "v8/print") \
|
|
|
|
V(PROFILER_EXTENSION, "v8/profiler") \
|
|
|
|
V(TRACE_EXTENSION, "v8/trace")
|
2013-04-10 08:29:39 +00:00
|
|
|
|
|
|
|
#define DEFINE_EXTENSION_ID(Name, Ident) Name##_ID,
|
|
|
|
enum CcTestExtensionIds {
|
|
|
|
EXTENSION_LIST(DEFINE_EXTENSION_ID)
|
|
|
|
kMaxExtensions
|
|
|
|
};
|
|
|
|
#undef DEFINE_EXTENSION_ID
|
|
|
|
|
|
|
|
typedef v8::internal::EnumSet<CcTestExtensionIds> CcTestExtensionFlags;
|
|
|
|
#define DEFINE_EXTENSION_FLAG(Name, Ident) \
|
|
|
|
static const CcTestExtensionFlags Name(1 << Name##_ID);
|
|
|
|
static const CcTestExtensionFlags NO_EXTENSIONS(0);
|
|
|
|
static const CcTestExtensionFlags ALL_EXTENSIONS((1 << kMaxExtensions) - 1);
|
|
|
|
EXTENSION_LIST(DEFINE_EXTENSION_FLAG)
|
|
|
|
#undef DEFINE_EXTENSION_FLAG
|
|
|
|
|
2013-09-11 07:14:41 +00:00
|
|
|
|
2008-08-22 13:33:59 +00:00
|
|
|
class CcTest {
|
|
|
|
public:
|
|
|
|
typedef void (TestFunction)();
|
2008-09-05 00:04:37 +00:00
|
|
|
CcTest(TestFunction* callback, const char* file, const char* name,
|
2016-03-02 13:12:59 +00:00
|
|
|
bool enabled, bool initialize);
|
2015-08-17 11:30:30 +00:00
|
|
|
~CcTest() { i::DeleteArray(file_); }
|
2013-09-19 07:33:45 +00:00
|
|
|
void Run();
|
2008-08-27 10:11:39 +00:00
|
|
|
static CcTest* last() { return last_; }
|
2008-08-22 13:33:59 +00:00
|
|
|
CcTest* prev() { return prev_; }
|
|
|
|
const char* file() { return file_; }
|
|
|
|
const char* name() { return name_; }
|
2008-09-05 00:04:37 +00:00
|
|
|
bool enabled() { return enabled_; }
|
2013-05-06 13:01:03 +00:00
|
|
|
|
2013-09-19 07:33:45 +00:00
|
|
|
static v8::Isolate* isolate() {
|
2013-09-20 10:52:20 +00:00
|
|
|
CHECK(isolate_ != NULL);
|
2014-10-08 09:34:40 +00:00
|
|
|
v8::base::NoBarrier_Store(&isolate_used_, 1);
|
2013-09-19 13:30:47 +00:00
|
|
|
return isolate_;
|
2013-09-19 07:33:45 +00:00
|
|
|
}
|
2013-04-10 08:29:39 +00:00
|
|
|
|
2014-07-30 13:54:45 +00:00
|
|
|
static i::Isolate* InitIsolateOnce() {
|
|
|
|
if (!initialize_called_) InitializeVM();
|
|
|
|
return i_isolate();
|
|
|
|
}
|
|
|
|
|
2013-09-05 08:48:34 +00:00
|
|
|
static i::Isolate* i_isolate() {
|
2013-09-19 07:33:45 +00:00
|
|
|
return reinterpret_cast<i::Isolate*>(isolate());
|
2013-09-05 08:48:34 +00:00
|
|
|
}
|
|
|
|
|
2016-09-01 12:01:33 +00:00
|
|
|
static i::Heap* heap();
|
2013-09-19 09:46:15 +00:00
|
|
|
|
2016-09-07 10:02:58 +00:00
|
|
|
static void CollectGarbage(i::AllocationSpace space);
|
|
|
|
static void CollectAllGarbage(int flags);
|
|
|
|
static void CollectAllAvailableGarbage();
|
|
|
|
|
2016-09-01 12:01:33 +00:00
|
|
|
static v8::base::RandomNumberGenerator* random_number_generator();
|
2014-07-30 13:54:45 +00:00
|
|
|
|
2016-09-01 12:01:33 +00:00
|
|
|
static v8::Local<v8::Object> global();
|
2013-09-23 11:25:52 +00:00
|
|
|
|
2015-04-29 09:54:34 +00:00
|
|
|
static v8::ArrayBuffer::Allocator* array_buffer_allocator() {
|
|
|
|
return allocator_;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void set_array_buffer_allocator(
|
|
|
|
v8::ArrayBuffer::Allocator* allocator) {
|
|
|
|
allocator_ = allocator;
|
|
|
|
}
|
|
|
|
|
2013-09-19 13:30:47 +00:00
|
|
|
// TODO(dcarney): Remove.
|
|
|
|
// This must be called first in a test.
|
2016-09-01 12:01:33 +00:00
|
|
|
static void InitializeVM();
|
2013-09-19 13:30:47 +00:00
|
|
|
|
2013-09-20 10:52:20 +00:00
|
|
|
// Only for UNINITIALIZED_TESTs
|
|
|
|
static void DisableAutomaticDispose();
|
|
|
|
|
2013-09-19 13:30:47 +00:00
|
|
|
// Helper function to configure a context.
|
|
|
|
// Must be in a HandleScope.
|
|
|
|
static v8::Local<v8::Context> NewContext(
|
|
|
|
CcTestExtensionFlags extensions,
|
|
|
|
v8::Isolate* isolate = CcTest::isolate());
|
2013-01-18 07:20:17 +00:00
|
|
|
|
2016-09-01 12:01:33 +00:00
|
|
|
static void TearDown();
|
2014-01-31 07:29:25 +00:00
|
|
|
|
2008-08-22 13:33:59 +00:00
|
|
|
private:
|
2013-05-06 13:01:03 +00:00
|
|
|
friend int main(int argc, char** argv);
|
2008-08-22 13:33:59 +00:00
|
|
|
TestFunction* callback_;
|
|
|
|
const char* file_;
|
|
|
|
const char* name_;
|
2008-09-05 00:04:37 +00:00
|
|
|
bool enabled_;
|
2013-09-19 07:33:45 +00:00
|
|
|
bool initialize_;
|
2008-08-22 13:33:59 +00:00
|
|
|
CcTest* prev_;
|
2013-04-10 08:29:39 +00:00
|
|
|
static CcTest* last_;
|
2015-04-29 09:54:34 +00:00
|
|
|
static v8::ArrayBuffer::Allocator* allocator_;
|
2013-09-19 13:30:47 +00:00
|
|
|
static v8::Isolate* isolate_;
|
|
|
|
static bool initialize_called_;
|
2014-10-08 09:34:40 +00:00
|
|
|
static v8::base::Atomic32 isolate_used_;
|
2008-08-22 13:33:59 +00:00
|
|
|
};
|
|
|
|
|
2009-11-04 08:51:48 +00:00
|
|
|
// Switches between all the Api tests using the threading support.
|
|
|
|
// In order to get a surprising but repeatable pattern of thread
|
|
|
|
// switching it has extra semaphores to control the order in which
|
|
|
|
// the tests alternate, not relying solely on the big V8 lock.
|
|
|
|
//
|
|
|
|
// A test is augmented with calls to ApiTestFuzzer::Fuzz() in its
|
|
|
|
// callbacks. This will have no effect when we are not running the
|
|
|
|
// thread fuzzing test. In the thread fuzzing test it will
|
|
|
|
// pseudorandomly select a successor thread and switch execution
|
|
|
|
// to that thread, suspending the current test.
|
2014-06-30 13:25:46 +00:00
|
|
|
class ApiTestFuzzer: public v8::base::Thread {
|
2009-11-04 08:51:48 +00:00
|
|
|
public:
|
|
|
|
void CallTest();
|
|
|
|
|
|
|
|
// The ApiTestFuzzer is also a Thread, so it has a Run method.
|
|
|
|
virtual void Run();
|
|
|
|
|
2011-05-06 09:22:54 +00:00
|
|
|
enum PartOfTest { FIRST_PART,
|
|
|
|
SECOND_PART,
|
|
|
|
THIRD_PART,
|
|
|
|
FOURTH_PART,
|
|
|
|
LAST_PART = FOURTH_PART };
|
2009-11-04 08:51:48 +00:00
|
|
|
|
2012-01-13 13:09:52 +00:00
|
|
|
static void SetUp(PartOfTest part);
|
2009-11-04 08:51:48 +00:00
|
|
|
static void RunAllTests();
|
|
|
|
static void TearDown();
|
|
|
|
// This method switches threads if we are running the Threading test.
|
|
|
|
// Otherwise it does nothing.
|
|
|
|
static void Fuzz();
|
2011-09-08 19:57:14 +00:00
|
|
|
|
2009-11-04 08:51:48 +00:00
|
|
|
private:
|
2013-01-18 07:20:17 +00:00
|
|
|
explicit ApiTestFuzzer(int num)
|
2014-08-12 13:33:35 +00:00
|
|
|
: Thread(Options("ApiTestFuzzer")),
|
2013-01-18 07:20:17 +00:00
|
|
|
test_number_(num),
|
2013-09-02 12:26:06 +00:00
|
|
|
gate_(0),
|
2014-08-12 13:33:35 +00:00
|
|
|
active_(true) {}
|
2013-09-02 12:26:06 +00:00
|
|
|
~ApiTestFuzzer() {}
|
2013-01-18 07:20:17 +00:00
|
|
|
|
2009-11-04 08:51:48 +00:00
|
|
|
static bool fuzzing_;
|
|
|
|
static int tests_being_run_;
|
|
|
|
static int current_;
|
|
|
|
static int active_tests_;
|
|
|
|
static bool NextThread();
|
|
|
|
int test_number_;
|
2014-06-30 13:25:46 +00:00
|
|
|
v8::base::Semaphore gate_;
|
2009-11-04 08:51:48 +00:00
|
|
|
bool active_;
|
|
|
|
void ContextSwitch();
|
|
|
|
static int GetNextTestNumber();
|
2014-06-30 13:25:46 +00:00
|
|
|
static v8::base::Semaphore all_tests_done_;
|
2009-11-04 08:51:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#define THREADED_TEST(Name) \
|
|
|
|
static void Test##Name(); \
|
|
|
|
RegisterThreadedTest register_##Name(Test##Name, #Name); \
|
|
|
|
/* */ TEST(Name)
|
|
|
|
|
|
|
|
|
|
|
|
class RegisterThreadedTest {
|
|
|
|
public:
|
|
|
|
explicit RegisterThreadedTest(CcTest::TestFunction* callback,
|
|
|
|
const char* name)
|
|
|
|
: fuzzer_(NULL), callback_(callback), name_(name) {
|
|
|
|
prev_ = first_;
|
|
|
|
first_ = this;
|
|
|
|
count_++;
|
|
|
|
}
|
|
|
|
static int count() { return count_; }
|
|
|
|
static RegisterThreadedTest* nth(int i) {
|
|
|
|
CHECK(i < count());
|
|
|
|
RegisterThreadedTest* current = first_;
|
|
|
|
while (i > 0) {
|
|
|
|
i--;
|
|
|
|
current = current->prev_;
|
|
|
|
}
|
|
|
|
return current;
|
|
|
|
}
|
|
|
|
CcTest::TestFunction* callback() { return callback_; }
|
|
|
|
ApiTestFuzzer* fuzzer_;
|
|
|
|
const char* name() { return name_; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
static RegisterThreadedTest* first_;
|
|
|
|
static int count_;
|
|
|
|
CcTest::TestFunction* callback_;
|
|
|
|
RegisterThreadedTest* prev_;
|
|
|
|
const char* name_;
|
|
|
|
};
|
|
|
|
|
|
|
|
// A LocalContext holds a reference to a v8::Context.
|
|
|
|
class LocalContext {
|
|
|
|
public:
|
2015-09-07 14:44:46 +00:00
|
|
|
LocalContext(v8::Isolate* isolate, v8::ExtensionConfiguration* extensions = 0,
|
|
|
|
v8::Local<v8::ObjectTemplate> global_template =
|
|
|
|
v8::Local<v8::ObjectTemplate>(),
|
|
|
|
v8::Local<v8::Value> global_object = v8::Local<v8::Value>()) {
|
2013-09-19 10:31:04 +00:00
|
|
|
Initialize(isolate, extensions, global_template, global_object);
|
|
|
|
}
|
|
|
|
|
2009-11-04 08:51:48 +00:00
|
|
|
LocalContext(v8::ExtensionConfiguration* extensions = 0,
|
2015-09-07 14:44:46 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> global_template =
|
|
|
|
v8::Local<v8::ObjectTemplate>(),
|
|
|
|
v8::Local<v8::Value> global_object = v8::Local<v8::Value>()) {
|
2013-09-19 10:31:04 +00:00
|
|
|
Initialize(CcTest::isolate(), extensions, global_template, global_object);
|
2009-11-04 08:51:48 +00:00
|
|
|
}
|
|
|
|
|
2016-09-01 12:01:33 +00:00
|
|
|
virtual ~LocalContext();
|
2009-11-04 08:51:48 +00:00
|
|
|
|
2013-06-13 09:27:09 +00:00
|
|
|
v8::Context* operator->() {
|
|
|
|
return *reinterpret_cast<v8::Context**>(&context_);
|
|
|
|
}
|
|
|
|
v8::Context* operator*() { return operator->(); }
|
2009-11-04 08:51:48 +00:00
|
|
|
bool IsReady() { return !context_.IsEmpty(); }
|
|
|
|
|
|
|
|
v8::Local<v8::Context> local() {
|
2013-05-02 20:18:42 +00:00
|
|
|
return v8::Local<v8::Context>::New(isolate_, context_);
|
2009-11-04 08:51:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2015-09-07 14:44:46 +00:00
|
|
|
void Initialize(v8::Isolate* isolate, v8::ExtensionConfiguration* extensions,
|
|
|
|
v8::Local<v8::ObjectTemplate> global_template,
|
2016-09-01 12:01:33 +00:00
|
|
|
v8::Local<v8::Value> global_object);
|
2013-09-19 10:31:04 +00:00
|
|
|
|
2009-11-04 08:51:48 +00:00
|
|
|
v8::Persistent<v8::Context> context_;
|
2013-01-25 08:31:46 +00:00
|
|
|
v8::Isolate* isolate_;
|
2009-11-04 08:51:48 +00:00
|
|
|
};
|
|
|
|
|
2014-06-03 15:02:16 +00:00
|
|
|
|
|
|
|
static inline uint16_t* AsciiToTwoByteString(const char* source) {
|
|
|
|
int array_length = i::StrLength(source) + 1;
|
|
|
|
uint16_t* converted = i::NewArray<uint16_t>(array_length);
|
|
|
|
for (int i = 0; i < array_length; i++) converted[i] = source[i];
|
|
|
|
return converted;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-04 08:51:48 +00:00
|
|
|
static inline v8::Local<v8::Value> v8_num(double x) {
|
2014-01-03 14:31:17 +00:00
|
|
|
return v8::Number::New(v8::Isolate::GetCurrent(), x);
|
2009-11-04 08:51:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline v8::Local<v8::String> v8_str(const char* x) {
|
2015-09-07 14:44:46 +00:00
|
|
|
return v8::String::NewFromUtf8(v8::Isolate::GetCurrent(), x,
|
|
|
|
v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked();
|
2009-11-04 08:51:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-19 13:45:42 +00:00
|
|
|
static inline v8::Local<v8::String> v8_str(v8::Isolate* isolate,
|
|
|
|
const char* x) {
|
|
|
|
return v8::String::NewFromUtf8(isolate, x, v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-02-03 21:05:04 +00:00
|
|
|
static inline v8::Local<v8::Symbol> v8_symbol(const char* name) {
|
|
|
|
return v8::Symbol::New(v8::Isolate::GetCurrent(), v8_str(name));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-07 14:44:46 +00:00
|
|
|
static inline v8::Local<v8::Script> v8_compile(v8::Local<v8::String> x) {
|
|
|
|
v8::Local<v8::Script> result;
|
|
|
|
if (v8::Script::Compile(v8::Isolate::GetCurrent()->GetCurrentContext(), x)
|
|
|
|
.ToLocal(&result)) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
return v8::Local<v8::Script>();
|
2009-11-04 08:51:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-07 14:44:46 +00:00
|
|
|
static inline v8::Local<v8::Script> v8_compile(const char* x) {
|
|
|
|
return v8_compile(v8_str(x));
|
2014-03-10 11:58:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-26 12:44:11 +00:00
|
|
|
static inline int32_t v8_run_int32value(v8::Local<v8::Script> script) {
|
|
|
|
v8::Local<v8::Context> context = CcTest::isolate()->GetCurrentContext();
|
|
|
|
return script->Run(context).ToLocalChecked()->Int32Value(context).FromJust();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-14 10:20:33 +00:00
|
|
|
static inline v8::Local<v8::Script> CompileWithOrigin(
|
|
|
|
v8::Local<v8::String> source, v8::Local<v8::String> origin_url) {
|
|
|
|
v8::ScriptOrigin origin(origin_url);
|
2014-03-19 13:24:13 +00:00
|
|
|
v8::ScriptCompiler::Source script_source(source, origin);
|
2014-03-14 10:20:33 +00:00
|
|
|
return v8::ScriptCompiler::Compile(
|
2015-09-07 14:44:46 +00:00
|
|
|
v8::Isolate::GetCurrent()->GetCurrentContext(), &script_source)
|
|
|
|
.ToLocalChecked();
|
2014-03-10 11:58:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline v8::Local<v8::Script> CompileWithOrigin(
|
|
|
|
v8::Local<v8::String> source, const char* origin_url) {
|
2014-03-14 10:20:33 +00:00
|
|
|
return CompileWithOrigin(source, v8_str(origin_url));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline v8::Local<v8::Script> CompileWithOrigin(const char* source,
|
|
|
|
const char* origin_url) {
|
|
|
|
return CompileWithOrigin(v8_str(source), v8_str(origin_url));
|
2014-03-10 11:58:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Helper functions that compile and run the source.
|
2015-09-07 14:44:46 +00:00
|
|
|
static inline v8::MaybeLocal<v8::Value> CompileRun(
|
|
|
|
v8::Local<v8::Context> context, const char* source) {
|
|
|
|
return v8::Script::Compile(context, v8_str(source))
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Run(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-19 13:45:42 +00:00
|
|
|
static inline v8::Local<v8::Value> CompileRunChecked(v8::Isolate* isolate,
|
|
|
|
const char* source) {
|
|
|
|
v8::Local<v8::String> source_string =
|
|
|
|
v8::String::NewFromUtf8(isolate, source, v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked();
|
|
|
|
v8::Local<v8::Context> context = isolate->GetCurrentContext();
|
|
|
|
v8::Local<v8::Script> script =
|
|
|
|
v8::Script::Compile(context, source_string).ToLocalChecked();
|
|
|
|
return script->Run(context).ToLocalChecked();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-07 14:44:46 +00:00
|
|
|
static inline v8::Local<v8::Value> CompileRun(v8::Local<v8::String> source) {
|
|
|
|
v8::Local<v8::Value> result;
|
|
|
|
if (v8_compile(source)
|
|
|
|
->Run(v8::Isolate::GetCurrent()->GetCurrentContext())
|
|
|
|
.ToLocal(&result)) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
return v8::Local<v8::Value>();
|
2014-03-10 11:58:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-26 14:58:51 +00:00
|
|
|
// Helper functions that compile and run the source.
|
2015-09-07 14:44:46 +00:00
|
|
|
static inline v8::Local<v8::Value> CompileRun(const char* source) {
|
|
|
|
return CompileRun(v8_str(source));
|
2015-06-26 14:58:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-07 14:44:46 +00:00
|
|
|
static inline v8::Local<v8::Value> CompileRun(
|
|
|
|
v8::Local<v8::Context> context, v8::ScriptCompiler::Source* script_source,
|
|
|
|
v8::ScriptCompiler::CompileOptions options) {
|
|
|
|
v8::Local<v8::Value> result;
|
|
|
|
if (v8::ScriptCompiler::Compile(context, script_source, options)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Run(context)
|
|
|
|
.ToLocal(&result)) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
return v8::Local<v8::Value>();
|
2009-11-04 08:51:48 +00:00
|
|
|
}
|
|
|
|
|
2012-10-01 09:41:18 +00:00
|
|
|
|
Change ScriptCompiler::CompileOptions to allow for two 'cache' modes
(parser or code) and to be explicit about cache consumption or production
(rather than making presence of cached_data imply one or the other.)
Also add a --cache flag to d8, to allow testing the functionality.
-----------------------------
API change
Reason: Currently, V8 supports a 'parser cache' for repeatedly executing the same script. We'd like to add a 2nd mode that would cache code, and would like to let the embedder decide which mode they chose (if any).
Note: Previously, the 'use cached data' property was implied by the presence of the cached data itself. (That is, kNoCompileOptions and source->cached_data != NULL.) That is no longer sufficient, since the presence of data is no longer sufficient to determine /which kind/ of data is present.
Changes from old behaviour:
- If you previously didn't use caching, nothing changes.
Example:
v8::CompileUnbound(isolate, source, kNoCompileOptions);
- If you previously used caching, it worked like this:
- 1st run:
v8::CompileUnbound(isolate, source, kProduceToCache);
Then, source->cached_data would contain the
data-to-be cached. This remains the same, except you
need to tell V8 which type of data you want.
v8::CompileUnbound(isolate, source, kProduceParserCache);
- 2nd run:
v8::CompileUnbound(isolate, source, kNoCompileOptions);
with source->cached_data set to the data you received in
the first run. This will now ignore the cached data, and
you need to explicitly tell V8 to use it:
v8::CompileUnbound(isolate, source, kConsumeParserCache);
-----------------------------
BUG=
R=marja@chromium.org, yangguo@chromium.org
Review URL: https://codereview.chromium.org/389573006
git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22431 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2014-07-16 12:18:33 +00:00
|
|
|
static inline v8::Local<v8::Value> ParserCacheCompileRun(const char* source) {
|
2014-04-04 12:36:23 +00:00
|
|
|
// Compile once just to get the preparse data, then compile the second time
|
|
|
|
// using the data.
|
2014-03-14 10:20:33 +00:00
|
|
|
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
2015-09-07 14:44:46 +00:00
|
|
|
v8::Local<v8::Context> context = isolate->GetCurrentContext();
|
2014-04-04 12:36:23 +00:00
|
|
|
v8::ScriptCompiler::Source script_source(v8_str(source));
|
2015-09-07 14:44:46 +00:00
|
|
|
v8::ScriptCompiler::Compile(context, &script_source,
|
|
|
|
v8::ScriptCompiler::kProduceParserCache)
|
|
|
|
.ToLocalChecked();
|
Change ScriptCompiler::CompileOptions to allow for two 'cache' modes
(parser or code) and to be explicit about cache consumption or production
(rather than making presence of cached_data imply one or the other.)
Also add a --cache flag to d8, to allow testing the functionality.
-----------------------------
API change
Reason: Currently, V8 supports a 'parser cache' for repeatedly executing the same script. We'd like to add a 2nd mode that would cache code, and would like to let the embedder decide which mode they chose (if any).
Note: Previously, the 'use cached data' property was implied by the presence of the cached data itself. (That is, kNoCompileOptions and source->cached_data != NULL.) That is no longer sufficient, since the presence of data is no longer sufficient to determine /which kind/ of data is present.
Changes from old behaviour:
- If you previously didn't use caching, nothing changes.
Example:
v8::CompileUnbound(isolate, source, kNoCompileOptions);
- If you previously used caching, it worked like this:
- 1st run:
v8::CompileUnbound(isolate, source, kProduceToCache);
Then, source->cached_data would contain the
data-to-be cached. This remains the same, except you
need to tell V8 which type of data you want.
v8::CompileUnbound(isolate, source, kProduceParserCache);
- 2nd run:
v8::CompileUnbound(isolate, source, kNoCompileOptions);
with source->cached_data set to the data you received in
the first run. This will now ignore the cached data, and
you need to explicitly tell V8 to use it:
v8::CompileUnbound(isolate, source, kConsumeParserCache);
-----------------------------
BUG=
R=marja@chromium.org, yangguo@chromium.org
Review URL: https://codereview.chromium.org/389573006
git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22431 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2014-07-16 12:18:33 +00:00
|
|
|
|
|
|
|
// Check whether we received cached data, and if so use it.
|
|
|
|
v8::ScriptCompiler::CompileOptions options =
|
|
|
|
script_source.GetCachedData() ? v8::ScriptCompiler::kConsumeParserCache
|
|
|
|
: v8::ScriptCompiler::kNoCompileOptions;
|
|
|
|
|
2015-09-07 14:44:46 +00:00
|
|
|
return CompileRun(context, &script_source, options);
|
2014-02-20 11:35:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-10 11:58:56 +00:00
|
|
|
// Helper functions that compile and run the source with given origin.
|
2012-09-21 08:09:34 +00:00
|
|
|
static inline v8::Local<v8::Value> CompileRunWithOrigin(const char* source,
|
|
|
|
const char* origin_url,
|
|
|
|
int line_number,
|
|
|
|
int column_number) {
|
2013-11-22 12:43:17 +00:00
|
|
|
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
2015-09-07 14:44:46 +00:00
|
|
|
v8::Local<v8::Context> context = isolate->GetCurrentContext();
|
2014-03-10 11:58:56 +00:00
|
|
|
v8::ScriptOrigin origin(v8_str(origin_url),
|
2014-01-03 14:31:17 +00:00
|
|
|
v8::Integer::New(isolate, line_number),
|
|
|
|
v8::Integer::New(isolate, column_number));
|
2014-03-19 13:24:13 +00:00
|
|
|
v8::ScriptCompiler::Source script_source(v8_str(source), origin);
|
2015-09-07 14:44:46 +00:00
|
|
|
return CompileRun(context, &script_source,
|
|
|
|
v8::ScriptCompiler::CompileOptions());
|
2014-03-13 08:54:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline v8::Local<v8::Value> CompileRunWithOrigin(
|
2014-03-14 10:20:33 +00:00
|
|
|
v8::Local<v8::String> source, const char* origin_url) {
|
2015-09-07 14:44:46 +00:00
|
|
|
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
|
|
|
v8::Local<v8::Context> context = isolate->GetCurrentContext();
|
2014-03-19 13:24:13 +00:00
|
|
|
v8::ScriptCompiler::Source script_source(
|
|
|
|
source, v8::ScriptOrigin(v8_str(origin_url)));
|
2015-09-07 14:44:46 +00:00
|
|
|
return CompileRun(context, &script_source,
|
|
|
|
v8::ScriptCompiler::CompileOptions());
|
2014-03-14 10:20:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline v8::Local<v8::Value> CompileRunWithOrigin(
|
|
|
|
const char* source, const char* origin_url) {
|
|
|
|
return CompileRunWithOrigin(v8_str(source), origin_url);
|
2012-09-21 08:09:34 +00:00
|
|
|
}
|
|
|
|
|
2009-11-04 08:51:48 +00:00
|
|
|
|
2014-06-03 15:02:16 +00:00
|
|
|
|
|
|
|
static inline void ExpectString(const char* code, const char* expected) {
|
|
|
|
v8::Local<v8::Value> result = CompileRun(code);
|
|
|
|
CHECK(result->IsString());
|
|
|
|
v8::String::Utf8Value utf8(result);
|
2015-01-30 09:29:25 +00:00
|
|
|
CHECK_EQ(0, strcmp(expected, *utf8));
|
2014-06-03 15:02:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline void ExpectInt32(const char* code, int expected) {
|
|
|
|
v8::Local<v8::Value> result = CompileRun(code);
|
|
|
|
CHECK(result->IsInt32());
|
2015-09-07 14:44:46 +00:00
|
|
|
CHECK_EQ(expected,
|
|
|
|
result->Int32Value(v8::Isolate::GetCurrent()->GetCurrentContext())
|
|
|
|
.FromJust());
|
2014-06-03 15:02:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline void ExpectBoolean(const char* code, bool expected) {
|
|
|
|
v8::Local<v8::Value> result = CompileRun(code);
|
|
|
|
CHECK(result->IsBoolean());
|
2015-09-07 14:44:46 +00:00
|
|
|
CHECK_EQ(expected,
|
|
|
|
result->BooleanValue(v8::Isolate::GetCurrent()->GetCurrentContext())
|
|
|
|
.FromJust());
|
2014-06-03 15:02:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline void ExpectTrue(const char* code) {
|
|
|
|
ExpectBoolean(code, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline void ExpectFalse(const char* code) {
|
|
|
|
ExpectBoolean(code, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline void ExpectObject(const char* code,
|
|
|
|
v8::Local<v8::Value> expected) {
|
|
|
|
v8::Local<v8::Value> result = CompileRun(code);
|
|
|
|
CHECK(result->SameValue(expected));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline void ExpectUndefined(const char* code) {
|
|
|
|
v8::Local<v8::Value> result = CompileRun(code);
|
|
|
|
CHECK(result->IsUndefined());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-11 09:53:50 +00:00
|
|
|
static inline void ExpectNull(const char* code) {
|
|
|
|
v8::Local<v8::Value> result = CompileRun(code);
|
|
|
|
CHECK(result->IsNull());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-29 13:59:34 +00:00
|
|
|
static inline void CheckDoubleEquals(double expected, double actual) {
|
|
|
|
const double kEpsilon = 1e-10;
|
|
|
|
CHECK_LE(expected, actual + kEpsilon);
|
|
|
|
CHECK_GE(expected, actual - kEpsilon);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-16 07:11:11 +00:00
|
|
|
static void DummyDebugEventListener(
|
|
|
|
const v8::Debug::EventDetails& event_details) {}
|
|
|
|
|
|
|
|
|
2015-12-02 12:47:16 +00:00
|
|
|
static inline void EnableDebugger(v8::Isolate* isolate) {
|
|
|
|
v8::Debug::SetDebugEventListener(isolate, &DummyDebugEventListener);
|
2015-06-16 07:11:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-02 12:47:16 +00:00
|
|
|
static inline void DisableDebugger(v8::Isolate* isolate) {
|
|
|
|
v8::Debug::SetDebugEventListener(isolate, nullptr);
|
|
|
|
}
|
2015-06-16 07:11:11 +00:00
|
|
|
|
|
|
|
|
2015-07-15 12:26:06 +00:00
|
|
|
static inline void EmptyMessageQueues(v8::Isolate* isolate) {
|
|
|
|
while (v8::platform::PumpMessageLoop(v8::internal::V8::GetCurrentPlatform(),
|
2015-09-28 08:18:29 +00:00
|
|
|
isolate)) {
|
|
|
|
}
|
2015-07-15 12:26:06 +00:00
|
|
|
}
|
|
|
|
|
2016-09-01 12:01:33 +00:00
|
|
|
class InitializedHandleScopeImpl;
|
2015-07-15 12:26:06 +00:00
|
|
|
|
2014-07-30 13:54:45 +00:00
|
|
|
class InitializedHandleScope {
|
|
|
|
public:
|
2016-09-01 12:01:33 +00:00
|
|
|
InitializedHandleScope();
|
|
|
|
~InitializedHandleScope();
|
2014-07-30 13:54:45 +00:00
|
|
|
|
|
|
|
// Prefixing the below with main_ reduces a lot of naming clashes.
|
|
|
|
i::Isolate* main_isolate() { return main_isolate_; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
i::Isolate* main_isolate_;
|
2016-09-01 12:01:33 +00:00
|
|
|
std::unique_ptr<InitializedHandleScopeImpl> initialized_handle_scope_impl_;
|
2014-07-30 13:54:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class HandleAndZoneScope : public InitializedHandleScope {
|
|
|
|
public:
|
2016-09-01 12:01:33 +00:00
|
|
|
HandleAndZoneScope();
|
|
|
|
~HandleAndZoneScope();
|
2014-07-30 13:54:45 +00:00
|
|
|
|
|
|
|
// Prefixing the below with main_ reduces a lot of naming clashes.
|
2016-09-01 12:01:33 +00:00
|
|
|
i::Zone* main_zone() { return main_zone_.get(); }
|
2014-07-30 13:54:45 +00:00
|
|
|
|
|
|
|
private:
|
2016-09-20 16:07:25 +00:00
|
|
|
v8::internal::AccountingAllocator allocator_;
|
2016-09-01 12:01:33 +00:00
|
|
|
std::unique_ptr<i::Zone> main_zone_;
|
2014-07-30 13:54:45 +00:00
|
|
|
};
|
|
|
|
|
2008-08-22 13:33:59 +00:00
|
|
|
#endif // ifndef CCTEST_H_
|