[runtime] Initial step towards switching Execution::Call to callable.
[platform/upstream/v8.git] / src / api.cc
1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "src/api.h"
6
7 #include <string.h>  // For memcpy, strlen.
8 #ifdef V8_USE_ADDRESS_SANITIZER
9 #include <sanitizer/asan_interface.h>
10 #endif  // V8_USE_ADDRESS_SANITIZER
11 #include <cmath>  // For isnan.
12 #include "include/v8-debug.h"
13 #include "include/v8-profiler.h"
14 #include "include/v8-testing.h"
15 #include "src/api-natives.h"
16 #include "src/assert-scope.h"
17 #include "src/background-parsing-task.h"
18 #include "src/base/functional.h"
19 #include "src/base/platform/platform.h"
20 #include "src/base/platform/time.h"
21 #include "src/base/utils/random-number-generator.h"
22 #include "src/bootstrapper.h"
23 #include "src/char-predicates-inl.h"
24 #include "src/code-stubs.h"
25 #include "src/compiler.h"
26 #include "src/context-measure.h"
27 #include "src/contexts.h"
28 #include "src/conversions-inl.h"
29 #include "src/counters.h"
30 #include "src/cpu-profiler.h"
31 #include "src/debug/debug.h"
32 #include "src/deoptimizer.h"
33 #include "src/execution.h"
34 #include "src/global-handles.h"
35 #include "src/heap-profiler.h"
36 #include "src/heap-snapshot-generator-inl.h"
37 #include "src/icu_util.h"
38 #include "src/isolate-inl.h"
39 #include "src/json-parser.h"
40 #include "src/messages.h"
41 #include "src/parser.h"
42 #include "src/pending-compilation-error-handler.h"
43 #include "src/profile-generator-inl.h"
44 #include "src/property.h"
45 #include "src/property-details.h"
46 #include "src/prototype.h"
47 #include "src/runtime/runtime.h"
48 #include "src/runtime-profiler.h"
49 #include "src/sampler.h"
50 #include "src/scanner-character-streams.h"
51 #include "src/simulator.h"
52 #include "src/snapshot/natives.h"
53 #include "src/snapshot/snapshot.h"
54 #include "src/startup-data-util.h"
55 #include "src/unicode-inl.h"
56 #include "src/v8.h"
57 #include "src/v8threads.h"
58 #include "src/version.h"
59 #include "src/vm-state-inl.h"
60
61
62 namespace v8 {
63
64 #define LOG_API(isolate, expr) LOG(isolate, ApiEntryCall(expr))
65
66
67 #define ENTER_V8(isolate) i::VMState<v8::OTHER> __state__((isolate))
68
69
70 #define PREPARE_FOR_EXECUTION_GENERIC(isolate, context, function_name, \
71                                       bailout_value, HandleScopeClass, \
72                                       do_callback)                     \
73   if (IsExecutionTerminatingCheck(isolate)) {                          \
74     return bailout_value;                                              \
75   }                                                                    \
76   HandleScopeClass handle_scope(isolate);                              \
77   CallDepthScope call_depth_scope(isolate, context, do_callback);      \
78   LOG_API(isolate, function_name);                                     \
79   ENTER_V8(isolate);                                                   \
80   bool has_pending_exception = false
81
82
83 #define PREPARE_FOR_EXECUTION_WITH_CONTEXT(                                  \
84     context, function_name, bailout_value, HandleScopeClass, do_callback)    \
85   auto isolate = context.IsEmpty()                                           \
86                      ? i::Isolate::Current()                                 \
87                      : reinterpret_cast<i::Isolate*>(context->GetIsolate()); \
88   PREPARE_FOR_EXECUTION_GENERIC(isolate, context, function_name,             \
89                                 bailout_value, HandleScopeClass, do_callback);
90
91
92 #define PREPARE_FOR_EXECUTION_WITH_ISOLATE(isolate, function_name, T)     \
93   PREPARE_FOR_EXECUTION_GENERIC(isolate, Local<Context>(), function_name, \
94                                 MaybeLocal<T>(), InternalEscapableScope,  \
95                                 false);
96
97
98 #define PREPARE_FOR_EXECUTION(context, function_name, T)                      \
99   PREPARE_FOR_EXECUTION_WITH_CONTEXT(context, function_name, MaybeLocal<T>(), \
100                                      InternalEscapableScope, false)
101
102
103 #define PREPARE_FOR_EXECUTION_WITH_CALLBACK(context, function_name, T)        \
104   PREPARE_FOR_EXECUTION_WITH_CONTEXT(context, function_name, MaybeLocal<T>(), \
105                                      InternalEscapableScope, true)
106
107
108 #define PREPARE_FOR_EXECUTION_PRIMITIVE(context, function_name, T)         \
109   PREPARE_FOR_EXECUTION_WITH_CONTEXT(context, function_name, Nothing<T>(), \
110                                      i::HandleScope, false)
111
112
113 #define EXCEPTION_BAILOUT_CHECK_SCOPED(isolate, value) \
114   do {                                                 \
115     if (has_pending_exception) {                       \
116       call_depth_scope.Escape();                       \
117       return value;                                    \
118     }                                                  \
119   } while (false)
120
121
122 #define RETURN_ON_FAILED_EXECUTION(T) \
123   EXCEPTION_BAILOUT_CHECK_SCOPED(isolate, MaybeLocal<T>())
124
125
126 #define RETURN_ON_FAILED_EXECUTION_PRIMITIVE(T) \
127   EXCEPTION_BAILOUT_CHECK_SCOPED(isolate, Nothing<T>())
128
129
130 #define RETURN_TO_LOCAL_UNCHECKED(maybe_local, T) \
131   return maybe_local.FromMaybe(Local<T>());
132
133
134 #define RETURN_ESCAPED(value) return handle_scope.Escape(value);
135
136
137 namespace {
138
139 Local<Context> ContextFromHeapObject(i::Handle<i::Object> obj) {
140   return reinterpret_cast<v8::Isolate*>(i::HeapObject::cast(*obj)->GetIsolate())
141       ->GetCurrentContext();
142 }
143
144 class InternalEscapableScope : public v8::EscapableHandleScope {
145  public:
146   explicit inline InternalEscapableScope(i::Isolate* isolate)
147       : v8::EscapableHandleScope(reinterpret_cast<v8::Isolate*>(isolate)) {}
148 };
149
150
151 class CallDepthScope {
152  public:
153   explicit CallDepthScope(i::Isolate* isolate, Local<Context> context,
154                           bool do_callback)
155       : isolate_(isolate),
156         context_(context),
157         escaped_(false),
158         do_callback_(do_callback) {
159     // TODO(dcarney): remove this when blink stops crashing.
160     DCHECK(!isolate_->external_caught_exception());
161     isolate_->handle_scope_implementer()->IncrementCallDepth();
162     if (!context_.IsEmpty()) context_->Enter();
163   }
164   ~CallDepthScope() {
165     if (!context_.IsEmpty()) context_->Exit();
166     if (!escaped_) isolate_->handle_scope_implementer()->DecrementCallDepth();
167     if (do_callback_) isolate_->FireCallCompletedCallback();
168   }
169
170   void Escape() {
171     DCHECK(!escaped_);
172     escaped_ = true;
173     auto handle_scope_implementer = isolate_->handle_scope_implementer();
174     handle_scope_implementer->DecrementCallDepth();
175     bool call_depth_is_zero = handle_scope_implementer->CallDepthIsZero();
176     isolate_->OptionalRescheduleException(call_depth_is_zero);
177   }
178
179  private:
180   i::Isolate* const isolate_;
181   Local<Context> context_;
182   bool escaped_;
183   bool do_callback_;
184 };
185
186 }  // namespace
187
188
189 static ScriptOrigin GetScriptOriginForScript(i::Isolate* isolate,
190                                              i::Handle<i::Script> script) {
191   i::Handle<i::Object> scriptName(i::Script::GetNameOrSourceURL(script));
192   i::Handle<i::Object> source_map_url(script->source_mapping_url(), isolate);
193   v8::Isolate* v8_isolate =
194       reinterpret_cast<v8::Isolate*>(script->GetIsolate());
195   ScriptOriginOptions options(script->origin_options());
196   v8::ScriptOrigin origin(
197       Utils::ToLocal(scriptName),
198       v8::Integer::New(v8_isolate, script->line_offset()->value()),
199       v8::Integer::New(v8_isolate, script->column_offset()->value()),
200       v8::Boolean::New(v8_isolate, options.IsSharedCrossOrigin()),
201       v8::Integer::New(v8_isolate, script->id()->value()),
202       v8::Boolean::New(v8_isolate, options.IsEmbedderDebugScript()),
203       Utils::ToLocal(source_map_url),
204       v8::Boolean::New(v8_isolate, options.IsOpaque()));
205   return origin;
206 }
207
208
209 // --- E x c e p t i o n   B e h a v i o r ---
210
211
212 void i::FatalProcessOutOfMemory(const char* location) {
213   i::V8::FatalProcessOutOfMemory(location, false);
214 }
215
216
217 // When V8 cannot allocated memory FatalProcessOutOfMemory is called.
218 // The default fatal error handler is called and execution is stopped.
219 void i::V8::FatalProcessOutOfMemory(const char* location, bool take_snapshot) {
220   i::Isolate* isolate = i::Isolate::Current();
221   char last_few_messages[Heap::kTraceRingBufferSize + 1];
222   char js_stacktrace[Heap::kStacktraceBufferSize + 1];
223   memset(last_few_messages, 0, Heap::kTraceRingBufferSize + 1);
224   memset(js_stacktrace, 0, Heap::kStacktraceBufferSize + 1);
225
226   i::HeapStats heap_stats;
227   int start_marker;
228   heap_stats.start_marker = &start_marker;
229   int new_space_size;
230   heap_stats.new_space_size = &new_space_size;
231   int new_space_capacity;
232   heap_stats.new_space_capacity = &new_space_capacity;
233   intptr_t old_space_size;
234   heap_stats.old_space_size = &old_space_size;
235   intptr_t old_space_capacity;
236   heap_stats.old_space_capacity = &old_space_capacity;
237   intptr_t code_space_size;
238   heap_stats.code_space_size = &code_space_size;
239   intptr_t code_space_capacity;
240   heap_stats.code_space_capacity = &code_space_capacity;
241   intptr_t map_space_size;
242   heap_stats.map_space_size = &map_space_size;
243   intptr_t map_space_capacity;
244   heap_stats.map_space_capacity = &map_space_capacity;
245   intptr_t lo_space_size;
246   heap_stats.lo_space_size = &lo_space_size;
247   int global_handle_count;
248   heap_stats.global_handle_count = &global_handle_count;
249   int weak_global_handle_count;
250   heap_stats.weak_global_handle_count = &weak_global_handle_count;
251   int pending_global_handle_count;
252   heap_stats.pending_global_handle_count = &pending_global_handle_count;
253   int near_death_global_handle_count;
254   heap_stats.near_death_global_handle_count = &near_death_global_handle_count;
255   int free_global_handle_count;
256   heap_stats.free_global_handle_count = &free_global_handle_count;
257   intptr_t memory_allocator_size;
258   heap_stats.memory_allocator_size = &memory_allocator_size;
259   intptr_t memory_allocator_capacity;
260   heap_stats.memory_allocator_capacity = &memory_allocator_capacity;
261   int objects_per_type[LAST_TYPE + 1] = {0};
262   heap_stats.objects_per_type = objects_per_type;
263   int size_per_type[LAST_TYPE + 1] = {0};
264   heap_stats.size_per_type = size_per_type;
265   int os_error;
266   heap_stats.os_error = &os_error;
267   heap_stats.last_few_messages = last_few_messages;
268   heap_stats.js_stacktrace = js_stacktrace;
269   int end_marker;
270   heap_stats.end_marker = &end_marker;
271   if (isolate->heap()->HasBeenSetUp()) {
272     // BUG(1718): Don't use the take_snapshot since we don't support
273     // HeapIterator here without doing a special GC.
274     isolate->heap()->RecordStats(&heap_stats, false);
275     char* first_newline = strchr(last_few_messages, '\n');
276     if (first_newline == NULL || first_newline[1] == '\0')
277       first_newline = last_few_messages;
278     PrintF("\n<--- Last few GCs --->\n%s\n", first_newline);
279     PrintF("\n<--- JS stacktrace --->\n%s\n", js_stacktrace);
280   }
281   Utils::ApiCheck(false, location, "Allocation failed - process out of memory");
282   // If the fatal error handler returns, we stop execution.
283   FATAL("API fatal error handler returned after process out of memory");
284 }
285
286
287 void Utils::ReportApiFailure(const char* location, const char* message) {
288   i::Isolate* isolate = i::Isolate::Current();
289   FatalErrorCallback callback = isolate->exception_behavior();
290   if (callback == NULL) {
291     base::OS::PrintError("\n#\n# Fatal error in %s\n# %s\n#\n\n", location,
292                          message);
293     base::OS::Abort();
294   } else {
295     callback(location, message);
296   }
297   isolate->SignalFatalError();
298 }
299
300
301 static inline bool IsExecutionTerminatingCheck(i::Isolate* isolate) {
302   if (isolate->has_scheduled_exception()) {
303     return isolate->scheduled_exception() ==
304         isolate->heap()->termination_exception();
305   }
306   return false;
307 }
308
309
310 void V8::SetNativesDataBlob(StartupData* natives_blob) {
311   i::V8::SetNativesBlob(natives_blob);
312 }
313
314
315 void V8::SetSnapshotDataBlob(StartupData* snapshot_blob) {
316   i::V8::SetSnapshotBlob(snapshot_blob);
317 }
318
319
320 bool RunExtraCode(Isolate* isolate, Local<Context> context,
321                   const char* utf8_source) {
322   // Run custom script if provided.
323   base::ElapsedTimer timer;
324   timer.Start();
325   TryCatch try_catch(isolate);
326   Local<String> source_string;
327   if (!String::NewFromUtf8(isolate, utf8_source, NewStringType::kNormal)
328            .ToLocal(&source_string)) {
329     return false;
330   }
331   Local<String> resource_name =
332       String::NewFromUtf8(isolate, "<embedded script>", NewStringType::kNormal)
333           .ToLocalChecked();
334   ScriptOrigin origin(resource_name);
335   ScriptCompiler::Source source(source_string, origin);
336   Local<Script> script;
337   if (!ScriptCompiler::Compile(context, &source).ToLocal(&script)) return false;
338   if (script->Run(context).IsEmpty()) return false;
339   if (i::FLAG_profile_deserialization) {
340     i::PrintF("Executing custom snapshot script took %0.3f ms\n",
341               timer.Elapsed().InMillisecondsF());
342   }
343   timer.Stop();
344   CHECK(!try_catch.HasCaught());
345   return true;
346 }
347
348
349 namespace {
350
351 class ArrayBufferAllocator : public v8::ArrayBuffer::Allocator {
352  public:
353   virtual void* Allocate(size_t length) {
354     void* data = AllocateUninitialized(length);
355     return data == NULL ? data : memset(data, 0, length);
356   }
357   virtual void* AllocateUninitialized(size_t length) { return malloc(length); }
358   virtual void Free(void* data, size_t) { free(data); }
359 };
360
361 }  // namespace
362
363
364 StartupData V8::CreateSnapshotDataBlob(const char* custom_source) {
365   i::Isolate* internal_isolate = new i::Isolate(true);
366   ArrayBufferAllocator allocator;
367   internal_isolate->set_array_buffer_allocator(&allocator);
368   Isolate* isolate = reinterpret_cast<Isolate*>(internal_isolate);
369   StartupData result = {NULL, 0};
370   {
371     base::ElapsedTimer timer;
372     timer.Start();
373     Isolate::Scope isolate_scope(isolate);
374     internal_isolate->Init(NULL);
375     Persistent<Context> context;
376     i::Snapshot::Metadata metadata;
377     {
378       HandleScope handle_scope(isolate);
379       Local<Context> new_context = Context::New(isolate);
380       context.Reset(isolate, new_context);
381       if (custom_source != NULL) {
382         metadata.set_embeds_script(true);
383         Context::Scope context_scope(new_context);
384         if (!RunExtraCode(isolate, new_context, custom_source)) context.Reset();
385       }
386     }
387     if (!context.IsEmpty()) {
388       // If we don't do this then we end up with a stray root pointing at the
389       // context even after we have disposed of the context.
390       internal_isolate->heap()->CollectAllAvailableGarbage("mksnapshot");
391
392       // GC may have cleared weak cells, so compact any WeakFixedArrays
393       // found on the heap.
394       i::HeapIterator iterator(internal_isolate->heap(),
395                                i::HeapIterator::kFilterUnreachable);
396       for (i::HeapObject* o = iterator.next(); o != NULL; o = iterator.next()) {
397         if (o->IsPrototypeInfo()) {
398           i::Object* prototype_users =
399               i::PrototypeInfo::cast(o)->prototype_users();
400           if (prototype_users->IsWeakFixedArray()) {
401             i::WeakFixedArray* array = i::WeakFixedArray::cast(prototype_users);
402             array->Compact<i::JSObject::PrototypeRegistryCompactionCallback>();
403           }
404         } else if (o->IsScript()) {
405           i::Object* shared_list = i::Script::cast(o)->shared_function_infos();
406           if (shared_list->IsWeakFixedArray()) {
407             i::WeakFixedArray* array = i::WeakFixedArray::cast(shared_list);
408             array->Compact<i::WeakFixedArray::NullCallback>();
409           }
410         }
411       }
412
413       i::Object* raw_context = *v8::Utils::OpenPersistent(context);
414       context.Reset();
415
416       i::SnapshotByteSink snapshot_sink;
417       i::StartupSerializer ser(internal_isolate, &snapshot_sink);
418       ser.SerializeStrongReferences();
419
420       i::SnapshotByteSink context_sink;
421       i::PartialSerializer context_ser(internal_isolate, &ser, &context_sink);
422       context_ser.Serialize(&raw_context);
423       ser.SerializeWeakReferencesAndDeferred();
424
425       result = i::Snapshot::CreateSnapshotBlob(ser, context_ser, metadata);
426     }
427     if (i::FLAG_profile_deserialization) {
428       i::PrintF("Creating snapshot took %0.3f ms\n",
429                 timer.Elapsed().InMillisecondsF());
430     }
431     timer.Stop();
432   }
433   isolate->Dispose();
434   return result;
435 }
436
437
438 void V8::SetFlagsFromString(const char* str, int length) {
439   i::FlagList::SetFlagsFromString(str, length);
440 }
441
442
443 void V8::SetFlagsFromCommandLine(int* argc, char** argv, bool remove_flags) {
444   i::FlagList::SetFlagsFromCommandLine(argc, argv, remove_flags);
445 }
446
447
448 RegisteredExtension* RegisteredExtension::first_extension_ = NULL;
449
450
451 RegisteredExtension::RegisteredExtension(Extension* extension)
452     : extension_(extension) { }
453
454
455 void RegisteredExtension::Register(RegisteredExtension* that) {
456   that->next_ = first_extension_;
457   first_extension_ = that;
458 }
459
460
461 void RegisteredExtension::UnregisterAll() {
462   RegisteredExtension* re = first_extension_;
463   while (re != NULL) {
464     RegisteredExtension* next = re->next();
465     delete re;
466     re = next;
467   }
468   first_extension_ = NULL;
469 }
470
471
472 void RegisterExtension(Extension* that) {
473   RegisteredExtension* extension = new RegisteredExtension(that);
474   RegisteredExtension::Register(extension);
475 }
476
477
478 Extension::Extension(const char* name,
479                      const char* source,
480                      int dep_count,
481                      const char** deps,
482                      int source_length)
483     : name_(name),
484       source_length_(source_length >= 0 ?
485                      source_length :
486                      (source ? static_cast<int>(strlen(source)) : 0)),
487       source_(source, source_length_),
488       dep_count_(dep_count),
489       deps_(deps),
490       auto_enable_(false) {
491   CHECK(source != NULL || source_length_ == 0);
492 }
493
494
495 ResourceConstraints::ResourceConstraints()
496     : max_semi_space_size_(0),
497       max_old_space_size_(0),
498       max_executable_size_(0),
499       stack_limit_(NULL),
500       code_range_size_(0) { }
501
502 void ResourceConstraints::ConfigureDefaults(uint64_t physical_memory,
503                                             uint64_t virtual_memory_limit) {
504 #if V8_OS_ANDROID
505   // Android has higher physical memory requirements before raising the maximum
506   // heap size limits since it has no swap space.
507   const uint64_t low_limit = 512ul * i::MB;
508   const uint64_t medium_limit = 1ul * i::GB;
509   const uint64_t high_limit = 2ul * i::GB;
510 #else
511   const uint64_t low_limit = 512ul * i::MB;
512   const uint64_t medium_limit = 768ul * i::MB;
513   const uint64_t high_limit = 1ul  * i::GB;
514 #endif
515
516   if (physical_memory <= low_limit) {
517     set_max_semi_space_size(i::Heap::kMaxSemiSpaceSizeLowMemoryDevice);
518     set_max_old_space_size(i::Heap::kMaxOldSpaceSizeLowMemoryDevice);
519     set_max_executable_size(i::Heap::kMaxExecutableSizeLowMemoryDevice);
520   } else if (physical_memory <= medium_limit) {
521     set_max_semi_space_size(i::Heap::kMaxSemiSpaceSizeMediumMemoryDevice);
522     set_max_old_space_size(i::Heap::kMaxOldSpaceSizeMediumMemoryDevice);
523     set_max_executable_size(i::Heap::kMaxExecutableSizeMediumMemoryDevice);
524   } else if (physical_memory <= high_limit) {
525     set_max_semi_space_size(i::Heap::kMaxSemiSpaceSizeHighMemoryDevice);
526     set_max_old_space_size(i::Heap::kMaxOldSpaceSizeHighMemoryDevice);
527     set_max_executable_size(i::Heap::kMaxExecutableSizeHighMemoryDevice);
528   } else {
529     set_max_semi_space_size(i::Heap::kMaxSemiSpaceSizeHugeMemoryDevice);
530     set_max_old_space_size(i::Heap::kMaxOldSpaceSizeHugeMemoryDevice);
531     set_max_executable_size(i::Heap::kMaxExecutableSizeHugeMemoryDevice);
532   }
533
534   if (virtual_memory_limit > 0 && i::kRequiresCodeRange) {
535     // Reserve no more than 1/8 of the memory for the code range, but at most
536     // kMaximalCodeRangeSize.
537     set_code_range_size(
538         i::Min(i::kMaximalCodeRangeSize / i::MB,
539                static_cast<size_t>((virtual_memory_limit >> 3) / i::MB)));
540   }
541 }
542
543
544 void SetResourceConstraints(i::Isolate* isolate,
545                             const ResourceConstraints& constraints) {
546   int semi_space_size = constraints.max_semi_space_size();
547   int old_space_size = constraints.max_old_space_size();
548   int max_executable_size = constraints.max_executable_size();
549   size_t code_range_size = constraints.code_range_size();
550   if (semi_space_size != 0 || old_space_size != 0 ||
551       max_executable_size != 0 || code_range_size != 0) {
552     isolate->heap()->ConfigureHeap(semi_space_size, old_space_size,
553                                    max_executable_size, code_range_size);
554   }
555   if (constraints.stack_limit() != NULL) {
556     uintptr_t limit = reinterpret_cast<uintptr_t>(constraints.stack_limit());
557     isolate->stack_guard()->SetStackLimit(limit);
558   }
559 }
560
561
562 i::Object** V8::GlobalizeReference(i::Isolate* isolate, i::Object** obj) {
563   LOG_API(isolate, "Persistent::New");
564   i::Handle<i::Object> result = isolate->global_handles()->Create(*obj);
565 #ifdef VERIFY_HEAP
566   if (i::FLAG_verify_heap) {
567     (*obj)->ObjectVerify();
568   }
569 #endif  // VERIFY_HEAP
570   return result.location();
571 }
572
573
574 i::Object** V8::CopyPersistent(i::Object** obj) {
575   i::Handle<i::Object> result = i::GlobalHandles::CopyGlobal(obj);
576 #ifdef VERIFY_HEAP
577   if (i::FLAG_verify_heap) {
578     (*obj)->ObjectVerify();
579   }
580 #endif  // VERIFY_HEAP
581   return result.location();
582 }
583
584
585 void V8::MakeWeak(i::Object** object, void* parameter,
586                   WeakCallback weak_callback) {
587   i::GlobalHandles::MakeWeak(object, parameter, weak_callback);
588 }
589
590
591 void V8::MakeWeak(i::Object** object, void* parameter,
592                   int internal_field_index1, int internal_field_index2,
593                   WeakCallbackInfo<void>::Callback weak_callback) {
594   WeakCallbackType type = WeakCallbackType::kParameter;
595   if (internal_field_index1 == 0) {
596     if (internal_field_index2 == 1) {
597       type = WeakCallbackType::kInternalFields;
598     } else {
599       DCHECK_EQ(internal_field_index2, -1);
600       type = WeakCallbackType::kInternalFields;
601     }
602   } else {
603     DCHECK_EQ(internal_field_index1, -1);
604     DCHECK_EQ(internal_field_index2, -1);
605   }
606   i::GlobalHandles::MakeWeak(object, parameter, weak_callback, type);
607 }
608
609
610 void V8::MakeWeak(i::Object** object, void* parameter,
611                   WeakCallbackInfo<void>::Callback weak_callback,
612                   WeakCallbackType type) {
613   i::GlobalHandles::MakeWeak(object, parameter, weak_callback, type);
614 }
615
616
617 void* V8::ClearWeak(i::Object** obj) {
618   return i::GlobalHandles::ClearWeakness(obj);
619 }
620
621
622 void V8::DisposeGlobal(i::Object** obj) {
623   i::GlobalHandles::Destroy(obj);
624 }
625
626
627 void V8::Eternalize(Isolate* v8_isolate, Value* value, int* index) {
628   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(v8_isolate);
629   i::Object* object = *Utils::OpenHandle(value);
630   isolate->eternal_handles()->Create(isolate, object, index);
631 }
632
633
634 Local<Value> V8::GetEternal(Isolate* v8_isolate, int index) {
635   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(v8_isolate);
636   return Utils::ToLocal(isolate->eternal_handles()->Get(index));
637 }
638
639
640 void V8::FromJustIsNothing() {
641   Utils::ApiCheck(false, "v8::FromJust", "Maybe value is Nothing.");
642 }
643
644
645 void V8::ToLocalEmpty() {
646   Utils::ApiCheck(false, "v8::ToLocalChecked", "Empty MaybeLocal.");
647 }
648
649
650 void V8::InternalFieldOutOfBounds(int index) {
651   Utils::ApiCheck(0 <= index && index < kInternalFieldsInWeakCallback,
652                   "WeakCallbackInfo::GetInternalField",
653                   "Internal field out of bounds.");
654 }
655
656
657 // --- H a n d l e s ---
658
659
660 HandleScope::HandleScope(Isolate* isolate) {
661   Initialize(isolate);
662 }
663
664
665 void HandleScope::Initialize(Isolate* isolate) {
666   i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(isolate);
667   // We do not want to check the correct usage of the Locker class all over the
668   // place, so we do it only here: Without a HandleScope, an embedder can do
669   // almost nothing, so it is enough to check in this central place.
670   // We make an exception if the serializer is enabled, which means that the
671   // Isolate is exclusively used to create a snapshot.
672   Utils::ApiCheck(
673       !v8::Locker::IsActive() ||
674           internal_isolate->thread_manager()->IsLockedByCurrentThread() ||
675           internal_isolate->serializer_enabled(),
676       "HandleScope::HandleScope",
677       "Entering the V8 API without proper locking in place");
678   i::HandleScopeData* current = internal_isolate->handle_scope_data();
679   isolate_ = internal_isolate;
680   prev_next_ = current->next;
681   prev_limit_ = current->limit;
682   current->level++;
683 }
684
685
686 HandleScope::~HandleScope() {
687   i::HandleScope::CloseScope(isolate_, prev_next_, prev_limit_);
688 }
689
690
691 int HandleScope::NumberOfHandles(Isolate* isolate) {
692   return i::HandleScope::NumberOfHandles(
693       reinterpret_cast<i::Isolate*>(isolate));
694 }
695
696
697 i::Object** HandleScope::CreateHandle(i::Isolate* isolate, i::Object* value) {
698   return i::HandleScope::CreateHandle(isolate, value);
699 }
700
701
702 i::Object** HandleScope::CreateHandle(i::HeapObject* heap_object,
703                                       i::Object* value) {
704   DCHECK(heap_object->IsHeapObject());
705   return i::HandleScope::CreateHandle(heap_object->GetIsolate(), value);
706 }
707
708
709 EscapableHandleScope::EscapableHandleScope(Isolate* v8_isolate) {
710   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(v8_isolate);
711   escape_slot_ = CreateHandle(isolate, isolate->heap()->the_hole_value());
712   Initialize(v8_isolate);
713 }
714
715
716 i::Object** EscapableHandleScope::Escape(i::Object** escape_value) {
717   i::Heap* heap = reinterpret_cast<i::Isolate*>(GetIsolate())->heap();
718   Utils::ApiCheck(*escape_slot_ == heap->the_hole_value(),
719                   "EscapeableHandleScope::Escape",
720                   "Escape value set twice");
721   if (escape_value == NULL) {
722     *escape_slot_ = heap->undefined_value();
723     return NULL;
724   }
725   *escape_slot_ = *escape_value;
726   return escape_slot_;
727 }
728
729
730 SealHandleScope::SealHandleScope(Isolate* isolate) {
731   i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(isolate);
732
733   isolate_ = internal_isolate;
734   i::HandleScopeData* current = internal_isolate->handle_scope_data();
735   prev_limit_ = current->limit;
736   current->limit = current->next;
737   prev_level_ = current->level;
738   current->level = 0;
739 }
740
741
742 SealHandleScope::~SealHandleScope() {
743   i::HandleScopeData* current = isolate_->handle_scope_data();
744   DCHECK_EQ(0, current->level);
745   current->level = prev_level_;
746   DCHECK_EQ(current->next, current->limit);
747   current->limit = prev_limit_;
748 }
749
750
751 void Context::Enter() {
752   i::Handle<i::Context> env = Utils::OpenHandle(this);
753   i::Isolate* isolate = env->GetIsolate();
754   ENTER_V8(isolate);
755   i::HandleScopeImplementer* impl = isolate->handle_scope_implementer();
756   impl->EnterContext(env);
757   impl->SaveContext(isolate->context());
758   isolate->set_context(*env);
759 }
760
761
762 void Context::Exit() {
763   i::Handle<i::Context> env = Utils::OpenHandle(this);
764   i::Isolate* isolate = env->GetIsolate();
765   ENTER_V8(isolate);
766   i::HandleScopeImplementer* impl = isolate->handle_scope_implementer();
767   if (!Utils::ApiCheck(impl->LastEnteredContextWas(env),
768                        "v8::Context::Exit()",
769                        "Cannot exit non-entered context")) {
770     return;
771   }
772   impl->LeaveContext();
773   isolate->set_context(impl->RestoreContext());
774 }
775
776
777 static void* DecodeSmiToAligned(i::Object* value, const char* location) {
778   Utils::ApiCheck(value->IsSmi(), location, "Not a Smi");
779   return reinterpret_cast<void*>(value);
780 }
781
782
783 static i::Smi* EncodeAlignedAsSmi(void* value, const char* location) {
784   i::Smi* smi = reinterpret_cast<i::Smi*>(value);
785   Utils::ApiCheck(smi->IsSmi(), location, "Pointer is not aligned");
786   return smi;
787 }
788
789
790 static i::Handle<i::FixedArray> EmbedderDataFor(Context* context,
791                                                 int index,
792                                                 bool can_grow,
793                                                 const char* location) {
794   i::Handle<i::Context> env = Utils::OpenHandle(context);
795   i::Isolate* isolate = env->GetIsolate();
796   bool ok =
797       Utils::ApiCheck(env->IsNativeContext(),
798                       location,
799                       "Not a native context") &&
800       Utils::ApiCheck(index >= 0, location, "Negative index");
801   if (!ok) return i::Handle<i::FixedArray>();
802   i::Handle<i::FixedArray> data(env->embedder_data());
803   if (index < data->length()) return data;
804   if (!Utils::ApiCheck(can_grow, location, "Index too large")) {
805     return i::Handle<i::FixedArray>();
806   }
807   int new_size = i::Max(index, data->length() << 1) + 1;
808   int grow_by = new_size - data->length();
809   data = isolate->factory()->CopyFixedArrayAndGrow(data, grow_by);
810   env->set_embedder_data(*data);
811   return data;
812 }
813
814
815 v8::Local<v8::Value> Context::SlowGetEmbedderData(int index) {
816   const char* location = "v8::Context::GetEmbedderData()";
817   i::Handle<i::FixedArray> data = EmbedderDataFor(this, index, false, location);
818   if (data.is_null()) return Local<Value>();
819   i::Handle<i::Object> result(data->get(index), data->GetIsolate());
820   return Utils::ToLocal(result);
821 }
822
823
824 void Context::SetEmbedderData(int index, v8::Local<Value> value) {
825   const char* location = "v8::Context::SetEmbedderData()";
826   i::Handle<i::FixedArray> data = EmbedderDataFor(this, index, true, location);
827   if (data.is_null()) return;
828   i::Handle<i::Object> val = Utils::OpenHandle(*value);
829   data->set(index, *val);
830   DCHECK_EQ(*Utils::OpenHandle(*value),
831             *Utils::OpenHandle(*GetEmbedderData(index)));
832 }
833
834
835 void* Context::SlowGetAlignedPointerFromEmbedderData(int index) {
836   const char* location = "v8::Context::GetAlignedPointerFromEmbedderData()";
837   i::Handle<i::FixedArray> data = EmbedderDataFor(this, index, false, location);
838   if (data.is_null()) return NULL;
839   return DecodeSmiToAligned(data->get(index), location);
840 }
841
842
843 void Context::SetAlignedPointerInEmbedderData(int index, void* value) {
844   const char* location = "v8::Context::SetAlignedPointerInEmbedderData()";
845   i::Handle<i::FixedArray> data = EmbedderDataFor(this, index, true, location);
846   data->set(index, EncodeAlignedAsSmi(value, location));
847   DCHECK_EQ(value, GetAlignedPointerFromEmbedderData(index));
848 }
849
850
851 // --- N e a n d e r ---
852
853
854 // A constructor cannot easily return an error value, therefore it is necessary
855 // to check for a dead VM with ON_BAILOUT before constructing any Neander
856 // objects.  To remind you about this there is no HandleScope in the
857 // NeanderObject constructor.  When you add one to the site calling the
858 // constructor you should check that you ensured the VM was not dead first.
859 NeanderObject::NeanderObject(v8::internal::Isolate* isolate, int size) {
860   ENTER_V8(isolate);
861   value_ = isolate->factory()->NewNeanderObject();
862   i::Handle<i::FixedArray> elements = isolate->factory()->NewFixedArray(size);
863   value_->set_elements(*elements);
864 }
865
866
867 int NeanderObject::size() {
868   return i::FixedArray::cast(value_->elements())->length();
869 }
870
871
872 NeanderArray::NeanderArray(v8::internal::Isolate* isolate) : obj_(isolate, 2) {
873   obj_.set(0, i::Smi::FromInt(0));
874 }
875
876
877 int NeanderArray::length() {
878   return i::Smi::cast(obj_.get(0))->value();
879 }
880
881
882 i::Object* NeanderArray::get(int offset) {
883   DCHECK(0 <= offset);
884   DCHECK(offset < length());
885   return obj_.get(offset + 1);
886 }
887
888
889 // This method cannot easily return an error value, therefore it is necessary
890 // to check for a dead VM with ON_BAILOUT before calling it.  To remind you
891 // about this there is no HandleScope in this method.  When you add one to the
892 // site calling this method you should check that you ensured the VM was not
893 // dead first.
894 void NeanderArray::add(i::Isolate* isolate, i::Handle<i::Object> value) {
895   int length = this->length();
896   int size = obj_.size();
897   if (length == size - 1) {
898     i::Factory* factory = isolate->factory();
899     i::Handle<i::FixedArray> new_elms = factory->NewFixedArray(2 * size);
900     for (int i = 0; i < length; i++)
901       new_elms->set(i + 1, get(i));
902     obj_.value()->set_elements(*new_elms);
903   }
904   obj_.set(length + 1, *value);
905   obj_.set(0, i::Smi::FromInt(length + 1));
906 }
907
908
909 void NeanderArray::set(int index, i::Object* value) {
910   if (index < 0 || index >= this->length()) return;
911   obj_.set(index + 1, value);
912 }
913
914
915 // --- T e m p l a t e ---
916
917
918 static void InitializeTemplate(i::Handle<i::TemplateInfo> that, int type) {
919   that->set_number_of_properties(0);
920   that->set_tag(i::Smi::FromInt(type));
921 }
922
923
924 void Template::Set(v8::Local<Name> name, v8::Local<Data> value,
925                    v8::PropertyAttribute attribute) {
926   auto templ = Utils::OpenHandle(this);
927   i::Isolate* isolate = templ->GetIsolate();
928   ENTER_V8(isolate);
929   i::HandleScope scope(isolate);
930   // TODO(dcarney): split api to allow values of v8::Value or v8::TemplateInfo.
931   i::ApiNatives::AddDataProperty(isolate, templ, Utils::OpenHandle(*name),
932                                  Utils::OpenHandle(*value),
933                                  static_cast<PropertyAttributes>(attribute));
934 }
935
936
937 void Template::SetAccessorProperty(
938     v8::Local<v8::Name> name,
939     v8::Local<FunctionTemplate> getter,
940     v8::Local<FunctionTemplate> setter,
941     v8::PropertyAttribute attribute,
942     v8::AccessControl access_control) {
943   // TODO(verwaest): Remove |access_control|.
944   DCHECK_EQ(v8::DEFAULT, access_control);
945   auto templ = Utils::OpenHandle(this);
946   auto isolate = templ->GetIsolate();
947   ENTER_V8(isolate);
948   DCHECK(!name.IsEmpty());
949   DCHECK(!getter.IsEmpty() || !setter.IsEmpty());
950   i::HandleScope scope(isolate);
951   i::ApiNatives::AddAccessorProperty(
952       isolate, templ, Utils::OpenHandle(*name),
953       Utils::OpenHandle(*getter, true), Utils::OpenHandle(*setter, true),
954       static_cast<PropertyAttributes>(attribute));
955 }
956
957
958 // --- F u n c t i o n   T e m p l a t e ---
959 static void InitializeFunctionTemplate(
960     i::Handle<i::FunctionTemplateInfo> info) {
961   InitializeTemplate(info, Consts::FUNCTION_TEMPLATE);
962   info->set_flag(0);
963 }
964
965
966 Local<ObjectTemplate> FunctionTemplate::PrototypeTemplate() {
967   i::Isolate* i_isolate = Utils::OpenHandle(this)->GetIsolate();
968   ENTER_V8(i_isolate);
969   i::Handle<i::Object> result(Utils::OpenHandle(this)->prototype_template(),
970                               i_isolate);
971   if (result->IsUndefined()) {
972     v8::Isolate* isolate = reinterpret_cast<v8::Isolate*>(i_isolate);
973     result = Utils::OpenHandle(*ObjectTemplate::New(isolate));
974     Utils::OpenHandle(this)->set_prototype_template(*result);
975   }
976   return ToApiHandle<ObjectTemplate>(result);
977 }
978
979
980 static void EnsureNotInstantiated(i::Handle<i::FunctionTemplateInfo> info,
981                                   const char* func) {
982   Utils::ApiCheck(!info->instantiated(), func,
983                   "FunctionTemplate already instantiated");
984 }
985
986
987 void FunctionTemplate::Inherit(v8::Local<FunctionTemplate> value) {
988   auto info = Utils::OpenHandle(this);
989   EnsureNotInstantiated(info, "v8::FunctionTemplate::Inherit");
990   i::Isolate* isolate = info->GetIsolate();
991   ENTER_V8(isolate);
992   info->set_parent_template(*Utils::OpenHandle(*value));
993 }
994
995
996 static Local<FunctionTemplate> FunctionTemplateNew(
997     i::Isolate* isolate, FunctionCallback callback, v8::Local<Value> data,
998     v8::Local<Signature> signature, int length, bool do_not_cache) {
999   i::Handle<i::Struct> struct_obj =
1000       isolate->factory()->NewStruct(i::FUNCTION_TEMPLATE_INFO_TYPE);
1001   i::Handle<i::FunctionTemplateInfo> obj =
1002       i::Handle<i::FunctionTemplateInfo>::cast(struct_obj);
1003   InitializeFunctionTemplate(obj);
1004   obj->set_do_not_cache(do_not_cache);
1005   int next_serial_number = 0;
1006   if (!do_not_cache) {
1007     next_serial_number = isolate->next_serial_number() + 1;
1008     isolate->set_next_serial_number(next_serial_number);
1009   }
1010   obj->set_serial_number(i::Smi::FromInt(next_serial_number));
1011   if (callback != 0) {
1012     if (data.IsEmpty()) {
1013       data = v8::Undefined(reinterpret_cast<v8::Isolate*>(isolate));
1014     }
1015     Utils::ToLocal(obj)->SetCallHandler(callback, data);
1016   }
1017   obj->set_length(length);
1018   obj->set_undetectable(false);
1019   obj->set_needs_access_check(false);
1020   obj->set_accept_any_receiver(true);
1021   if (!signature.IsEmpty())
1022     obj->set_signature(*Utils::OpenHandle(*signature));
1023   return Utils::ToLocal(obj);
1024 }
1025
1026 Local<FunctionTemplate> FunctionTemplate::New(Isolate* isolate,
1027                                               FunctionCallback callback,
1028                                               v8::Local<Value> data,
1029                                               v8::Local<Signature> signature,
1030                                               int length) {
1031   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
1032   // Changes to the environment cannot be captured in the snapshot. Expect no
1033   // function templates when the isolate is created for serialization.
1034   DCHECK(!i_isolate->serializer_enabled());
1035   LOG_API(i_isolate, "FunctionTemplate::New");
1036   ENTER_V8(i_isolate);
1037   return FunctionTemplateNew(
1038       i_isolate, callback, data, signature, length, false);
1039 }
1040
1041
1042 Local<Signature> Signature::New(Isolate* isolate,
1043                                 Local<FunctionTemplate> receiver) {
1044   return Utils::SignatureToLocal(Utils::OpenHandle(*receiver));
1045 }
1046
1047
1048 Local<AccessorSignature> AccessorSignature::New(
1049     Isolate* isolate, Local<FunctionTemplate> receiver) {
1050   return Utils::AccessorSignatureToLocal(Utils::OpenHandle(*receiver));
1051 }
1052
1053
1054 Local<TypeSwitch> TypeSwitch::New(Local<FunctionTemplate> type) {
1055   Local<FunctionTemplate> types[1] = {type};
1056   return TypeSwitch::New(1, types);
1057 }
1058
1059
1060 Local<TypeSwitch> TypeSwitch::New(int argc, Local<FunctionTemplate> types[]) {
1061   i::Isolate* isolate = i::Isolate::Current();
1062   LOG_API(isolate, "TypeSwitch::New");
1063   ENTER_V8(isolate);
1064   i::Handle<i::FixedArray> vector = isolate->factory()->NewFixedArray(argc);
1065   for (int i = 0; i < argc; i++)
1066     vector->set(i, *Utils::OpenHandle(*types[i]));
1067   i::Handle<i::Struct> struct_obj =
1068       isolate->factory()->NewStruct(i::TYPE_SWITCH_INFO_TYPE);
1069   i::Handle<i::TypeSwitchInfo> obj =
1070       i::Handle<i::TypeSwitchInfo>::cast(struct_obj);
1071   obj->set_types(*vector);
1072   return Utils::ToLocal(obj);
1073 }
1074
1075
1076 int TypeSwitch::match(v8::Local<Value> value) {
1077   i::Handle<i::TypeSwitchInfo> info = Utils::OpenHandle(this);
1078   LOG_API(info->GetIsolate(), "TypeSwitch::match");
1079   i::Handle<i::Object> obj = Utils::OpenHandle(*value);
1080   i::FixedArray* types = i::FixedArray::cast(info->types());
1081   for (int i = 0; i < types->length(); i++) {
1082     if (i::FunctionTemplateInfo::cast(types->get(i))->IsTemplateFor(*obj))
1083       return i + 1;
1084   }
1085   return 0;
1086 }
1087
1088
1089 #define SET_FIELD_WRAPPED(obj, setter, cdata) do {                      \
1090     i::Handle<i::Object> foreign = FromCData(obj->GetIsolate(), cdata); \
1091     (obj)->setter(*foreign);                                            \
1092   } while (false)
1093
1094
1095 void FunctionTemplate::SetCallHandler(FunctionCallback callback,
1096                                       v8::Local<Value> data) {
1097   auto info = Utils::OpenHandle(this);
1098   EnsureNotInstantiated(info, "v8::FunctionTemplate::SetCallHandler");
1099   i::Isolate* isolate = info->GetIsolate();
1100   ENTER_V8(isolate);
1101   i::HandleScope scope(isolate);
1102   i::Handle<i::Struct> struct_obj =
1103       isolate->factory()->NewStruct(i::CALL_HANDLER_INFO_TYPE);
1104   i::Handle<i::CallHandlerInfo> obj =
1105       i::Handle<i::CallHandlerInfo>::cast(struct_obj);
1106   SET_FIELD_WRAPPED(obj, set_callback, callback);
1107   if (data.IsEmpty()) {
1108     data = v8::Undefined(reinterpret_cast<v8::Isolate*>(isolate));
1109   }
1110   obj->set_data(*Utils::OpenHandle(*data));
1111   info->set_call_code(*obj);
1112 }
1113
1114
1115 static i::Handle<i::AccessorInfo> SetAccessorInfoProperties(
1116     i::Handle<i::AccessorInfo> obj, v8::Local<Name> name,
1117     v8::AccessControl settings, v8::PropertyAttribute attributes,
1118     v8::Local<AccessorSignature> signature) {
1119   obj->set_name(*Utils::OpenHandle(*name));
1120   if (settings & ALL_CAN_READ) obj->set_all_can_read(true);
1121   if (settings & ALL_CAN_WRITE) obj->set_all_can_write(true);
1122   obj->set_property_attributes(static_cast<PropertyAttributes>(attributes));
1123   if (!signature.IsEmpty()) {
1124     obj->set_expected_receiver_type(*Utils::OpenHandle(*signature));
1125   }
1126   return obj;
1127 }
1128
1129
1130 template <typename Getter, typename Setter>
1131 static i::Handle<i::AccessorInfo> MakeAccessorInfo(
1132     v8::Local<Name> name, Getter getter, Setter setter, v8::Local<Value> data,
1133     v8::AccessControl settings, v8::PropertyAttribute attributes,
1134     v8::Local<AccessorSignature> signature) {
1135   i::Isolate* isolate = Utils::OpenHandle(*name)->GetIsolate();
1136   i::Handle<i::ExecutableAccessorInfo> obj =
1137       isolate->factory()->NewExecutableAccessorInfo();
1138   SET_FIELD_WRAPPED(obj, set_getter, getter);
1139   SET_FIELD_WRAPPED(obj, set_setter, setter);
1140   if (data.IsEmpty()) {
1141     data = v8::Undefined(reinterpret_cast<v8::Isolate*>(isolate));
1142   }
1143   obj->set_data(*Utils::OpenHandle(*data));
1144   return SetAccessorInfoProperties(obj, name, settings, attributes, signature);
1145 }
1146
1147
1148 Local<ObjectTemplate> FunctionTemplate::InstanceTemplate() {
1149   i::Handle<i::FunctionTemplateInfo> handle = Utils::OpenHandle(this, true);
1150   if (!Utils::ApiCheck(!handle.is_null(),
1151                        "v8::FunctionTemplate::InstanceTemplate()",
1152                        "Reading from empty handle")) {
1153     return Local<ObjectTemplate>();
1154   }
1155   i::Isolate* isolate = handle->GetIsolate();
1156   ENTER_V8(isolate);
1157   if (handle->instance_template()->IsUndefined()) {
1158     Local<ObjectTemplate> templ =
1159         ObjectTemplate::New(isolate, ToApiHandle<FunctionTemplate>(handle));
1160     handle->set_instance_template(*Utils::OpenHandle(*templ));
1161   }
1162   i::Handle<i::ObjectTemplateInfo> result(
1163       i::ObjectTemplateInfo::cast(handle->instance_template()));
1164   return Utils::ToLocal(result);
1165 }
1166
1167
1168 void FunctionTemplate::SetLength(int length) {
1169   auto info = Utils::OpenHandle(this);
1170   EnsureNotInstantiated(info, "v8::FunctionTemplate::SetLength");
1171   auto isolate = info->GetIsolate();
1172   ENTER_V8(isolate);
1173   info->set_length(length);
1174 }
1175
1176
1177 void FunctionTemplate::SetClassName(Local<String> name) {
1178   auto info = Utils::OpenHandle(this);
1179   EnsureNotInstantiated(info, "v8::FunctionTemplate::SetClassName");
1180   auto isolate = info->GetIsolate();
1181   ENTER_V8(isolate);
1182   info->set_class_name(*Utils::OpenHandle(*name));
1183 }
1184
1185
1186 void FunctionTemplate::SetAcceptAnyReceiver(bool value) {
1187   auto info = Utils::OpenHandle(this);
1188   EnsureNotInstantiated(info, "v8::FunctionTemplate::SetAcceptAnyReceiver");
1189   auto isolate = info->GetIsolate();
1190   ENTER_V8(isolate);
1191   info->set_accept_any_receiver(value);
1192 }
1193
1194
1195 void FunctionTemplate::SetHiddenPrototype(bool value) {
1196   auto info = Utils::OpenHandle(this);
1197   EnsureNotInstantiated(info, "v8::FunctionTemplate::SetHiddenPrototype");
1198   auto isolate = info->GetIsolate();
1199   ENTER_V8(isolate);
1200   info->set_hidden_prototype(value);
1201 }
1202
1203
1204 void FunctionTemplate::ReadOnlyPrototype() {
1205   auto info = Utils::OpenHandle(this);
1206   EnsureNotInstantiated(info, "v8::FunctionTemplate::ReadOnlyPrototype");
1207   auto isolate = info->GetIsolate();
1208   ENTER_V8(isolate);
1209   info->set_read_only_prototype(true);
1210 }
1211
1212
1213 void FunctionTemplate::RemovePrototype() {
1214   auto info = Utils::OpenHandle(this);
1215   EnsureNotInstantiated(info, "v8::FunctionTemplate::RemovePrototype");
1216   auto isolate = info->GetIsolate();
1217   ENTER_V8(isolate);
1218   info->set_remove_prototype(true);
1219 }
1220
1221
1222 // --- O b j e c t T e m p l a t e ---
1223
1224
1225 Local<ObjectTemplate> ObjectTemplate::New(
1226     Isolate* isolate, v8::Local<FunctionTemplate> constructor) {
1227   return New(reinterpret_cast<i::Isolate*>(isolate), constructor);
1228 }
1229
1230
1231 Local<ObjectTemplate> ObjectTemplate::New() {
1232   return New(i::Isolate::Current(), Local<FunctionTemplate>());
1233 }
1234
1235
1236 Local<ObjectTemplate> ObjectTemplate::New(
1237     i::Isolate* isolate, v8::Local<FunctionTemplate> constructor) {
1238   // Changes to the environment cannot be captured in the snapshot. Expect no
1239   // object templates when the isolate is created for serialization.
1240   DCHECK(!isolate->serializer_enabled());
1241   LOG_API(isolate, "ObjectTemplate::New");
1242   ENTER_V8(isolate);
1243   i::Handle<i::Struct> struct_obj =
1244       isolate->factory()->NewStruct(i::OBJECT_TEMPLATE_INFO_TYPE);
1245   i::Handle<i::ObjectTemplateInfo> obj =
1246       i::Handle<i::ObjectTemplateInfo>::cast(struct_obj);
1247   InitializeTemplate(obj, Consts::OBJECT_TEMPLATE);
1248   if (!constructor.IsEmpty())
1249     obj->set_constructor(*Utils::OpenHandle(*constructor));
1250   obj->set_internal_field_count(i::Smi::FromInt(0));
1251   return Utils::ToLocal(obj);
1252 }
1253
1254
1255 // Ensure that the object template has a constructor.  If no
1256 // constructor is available we create one.
1257 static i::Handle<i::FunctionTemplateInfo> EnsureConstructor(
1258     i::Isolate* isolate,
1259     ObjectTemplate* object_template) {
1260   i::Object* obj = Utils::OpenHandle(object_template)->constructor();
1261   if (!obj ->IsUndefined()) {
1262     i::FunctionTemplateInfo* info = i::FunctionTemplateInfo::cast(obj);
1263     return i::Handle<i::FunctionTemplateInfo>(info, isolate);
1264   }
1265   Local<FunctionTemplate> templ =
1266       FunctionTemplate::New(reinterpret_cast<Isolate*>(isolate));
1267   i::Handle<i::FunctionTemplateInfo> constructor = Utils::OpenHandle(*templ);
1268   constructor->set_instance_template(*Utils::OpenHandle(object_template));
1269   Utils::OpenHandle(object_template)->set_constructor(*constructor);
1270   return constructor;
1271 }
1272
1273
1274 static inline i::Handle<i::TemplateInfo> GetTemplateInfo(
1275     i::Isolate* isolate,
1276     Template* template_obj) {
1277   return Utils::OpenHandle(template_obj);
1278 }
1279
1280
1281 // TODO(dcarney): remove this with ObjectTemplate::SetAccessor
1282 static inline i::Handle<i::TemplateInfo> GetTemplateInfo(
1283     i::Isolate* isolate,
1284     ObjectTemplate* object_template) {
1285   EnsureConstructor(isolate, object_template);
1286   return Utils::OpenHandle(object_template);
1287 }
1288
1289
1290 template<typename Getter, typename Setter, typename Data, typename Template>
1291 static bool TemplateSetAccessor(
1292     Template* template_obj,
1293     v8::Local<Name> name,
1294     Getter getter,
1295     Setter setter,
1296     Data data,
1297     AccessControl settings,
1298     PropertyAttribute attribute,
1299     v8::Local<AccessorSignature> signature) {
1300   auto isolate = Utils::OpenHandle(template_obj)->GetIsolate();
1301   ENTER_V8(isolate);
1302   i::HandleScope scope(isolate);
1303   auto obj = MakeAccessorInfo(name, getter, setter, data, settings, attribute,
1304                               signature);
1305   if (obj.is_null()) return false;
1306   auto info = GetTemplateInfo(isolate, template_obj);
1307   i::ApiNatives::AddNativeDataProperty(isolate, info, obj);
1308   return true;
1309 }
1310
1311
1312 void Template::SetNativeDataProperty(v8::Local<String> name,
1313                                      AccessorGetterCallback getter,
1314                                      AccessorSetterCallback setter,
1315                                      v8::Local<Value> data,
1316                                      PropertyAttribute attribute,
1317                                      v8::Local<AccessorSignature> signature,
1318                                      AccessControl settings) {
1319   TemplateSetAccessor(
1320       this, name, getter, setter, data, settings, attribute, signature);
1321 }
1322
1323
1324 void Template::SetNativeDataProperty(v8::Local<Name> name,
1325                                      AccessorNameGetterCallback getter,
1326                                      AccessorNameSetterCallback setter,
1327                                      v8::Local<Value> data,
1328                                      PropertyAttribute attribute,
1329                                      v8::Local<AccessorSignature> signature,
1330                                      AccessControl settings) {
1331   TemplateSetAccessor(
1332       this, name, getter, setter, data, settings, attribute, signature);
1333 }
1334
1335
1336 void ObjectTemplate::SetAccessor(v8::Local<String> name,
1337                                  AccessorGetterCallback getter,
1338                                  AccessorSetterCallback setter,
1339                                  v8::Local<Value> data, AccessControl settings,
1340                                  PropertyAttribute attribute,
1341                                  v8::Local<AccessorSignature> signature) {
1342   TemplateSetAccessor(
1343       this, name, getter, setter, data, settings, attribute, signature);
1344 }
1345
1346
1347 void ObjectTemplate::SetAccessor(v8::Local<Name> name,
1348                                  AccessorNameGetterCallback getter,
1349                                  AccessorNameSetterCallback setter,
1350                                  v8::Local<Value> data, AccessControl settings,
1351                                  PropertyAttribute attribute,
1352                                  v8::Local<AccessorSignature> signature) {
1353   TemplateSetAccessor(
1354       this, name, getter, setter, data, settings, attribute, signature);
1355 }
1356
1357
1358 template <typename Getter, typename Setter, typename Query, typename Deleter,
1359           typename Enumerator>
1360 static void ObjectTemplateSetNamedPropertyHandler(ObjectTemplate* templ,
1361                                                   Getter getter, Setter setter,
1362                                                   Query query, Deleter remover,
1363                                                   Enumerator enumerator,
1364                                                   Local<Value> data,
1365                                                   PropertyHandlerFlags flags) {
1366   i::Isolate* isolate = Utils::OpenHandle(templ)->GetIsolate();
1367   ENTER_V8(isolate);
1368   i::HandleScope scope(isolate);
1369   auto cons = EnsureConstructor(isolate, templ);
1370   EnsureNotInstantiated(cons, "ObjectTemplateSetNamedPropertyHandler");
1371   auto obj = i::Handle<i::InterceptorInfo>::cast(
1372       isolate->factory()->NewStruct(i::INTERCEPTOR_INFO_TYPE));
1373
1374   if (getter != 0) SET_FIELD_WRAPPED(obj, set_getter, getter);
1375   if (setter != 0) SET_FIELD_WRAPPED(obj, set_setter, setter);
1376   if (query != 0) SET_FIELD_WRAPPED(obj, set_query, query);
1377   if (remover != 0) SET_FIELD_WRAPPED(obj, set_deleter, remover);
1378   if (enumerator != 0) SET_FIELD_WRAPPED(obj, set_enumerator, enumerator);
1379   obj->set_flags(0);
1380   obj->set_can_intercept_symbols(
1381       !(static_cast<int>(flags) &
1382         static_cast<int>(PropertyHandlerFlags::kOnlyInterceptStrings)));
1383   obj->set_all_can_read(static_cast<int>(flags) &
1384                         static_cast<int>(PropertyHandlerFlags::kAllCanRead));
1385   obj->set_non_masking(static_cast<int>(flags) &
1386                        static_cast<int>(PropertyHandlerFlags::kNonMasking));
1387
1388   if (data.IsEmpty()) {
1389     data = v8::Undefined(reinterpret_cast<v8::Isolate*>(isolate));
1390   }
1391   obj->set_data(*Utils::OpenHandle(*data));
1392   cons->set_named_property_handler(*obj);
1393 }
1394
1395
1396 void ObjectTemplate::SetNamedPropertyHandler(
1397     NamedPropertyGetterCallback getter, NamedPropertySetterCallback setter,
1398     NamedPropertyQueryCallback query, NamedPropertyDeleterCallback remover,
1399     NamedPropertyEnumeratorCallback enumerator, Local<Value> data) {
1400   ObjectTemplateSetNamedPropertyHandler(
1401       this, getter, setter, query, remover, enumerator, data,
1402       PropertyHandlerFlags::kOnlyInterceptStrings);
1403 }
1404
1405
1406 void ObjectTemplate::SetHandler(
1407     const NamedPropertyHandlerConfiguration& config) {
1408   ObjectTemplateSetNamedPropertyHandler(
1409       this, config.getter, config.setter, config.query, config.deleter,
1410       config.enumerator, config.data, config.flags);
1411 }
1412
1413
1414 void ObjectTemplate::MarkAsUndetectable() {
1415   i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate();
1416   ENTER_V8(isolate);
1417   i::HandleScope scope(isolate);
1418   auto cons = EnsureConstructor(isolate, this);
1419   EnsureNotInstantiated(cons, "v8::ObjectTemplate::MarkAsUndetectable");
1420   cons->set_undetectable(true);
1421 }
1422
1423
1424 void ObjectTemplate::SetAccessCheckCallbacks(
1425     NamedSecurityCallback named_callback,
1426     IndexedSecurityCallback indexed_callback, Local<Value> data) {
1427   i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate();
1428   ENTER_V8(isolate);
1429   i::HandleScope scope(isolate);
1430   auto cons = EnsureConstructor(isolate, this);
1431   EnsureNotInstantiated(cons, "v8::ObjectTemplate::SetAccessCheckCallbacks");
1432
1433   i::Handle<i::Struct> struct_info =
1434       isolate->factory()->NewStruct(i::ACCESS_CHECK_INFO_TYPE);
1435   i::Handle<i::AccessCheckInfo> info =
1436       i::Handle<i::AccessCheckInfo>::cast(struct_info);
1437
1438   SET_FIELD_WRAPPED(info, set_named_callback, named_callback);
1439   SET_FIELD_WRAPPED(info, set_indexed_callback, indexed_callback);
1440
1441   if (data.IsEmpty()) {
1442     data = v8::Undefined(reinterpret_cast<v8::Isolate*>(isolate));
1443   }
1444   info->set_data(*Utils::OpenHandle(*data));
1445
1446   cons->set_access_check_info(*info);
1447   cons->set_needs_access_check(true);
1448 }
1449
1450
1451 void ObjectTemplate::SetHandler(
1452     const IndexedPropertyHandlerConfiguration& config) {
1453   i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate();
1454   ENTER_V8(isolate);
1455   i::HandleScope scope(isolate);
1456   auto cons = EnsureConstructor(isolate, this);
1457   EnsureNotInstantiated(cons, "v8::ObjectTemplate::SetHandler");
1458   auto obj = i::Handle<i::InterceptorInfo>::cast(
1459       isolate->factory()->NewStruct(i::INTERCEPTOR_INFO_TYPE));
1460
1461   if (config.getter != 0) SET_FIELD_WRAPPED(obj, set_getter, config.getter);
1462   if (config.setter != 0) SET_FIELD_WRAPPED(obj, set_setter, config.setter);
1463   if (config.query != 0) SET_FIELD_WRAPPED(obj, set_query, config.query);
1464   if (config.deleter != 0) SET_FIELD_WRAPPED(obj, set_deleter, config.deleter);
1465   if (config.enumerator != 0) {
1466     SET_FIELD_WRAPPED(obj, set_enumerator, config.enumerator);
1467   }
1468   obj->set_flags(0);
1469   obj->set_all_can_read(static_cast<int>(config.flags) &
1470                         static_cast<int>(PropertyHandlerFlags::kAllCanRead));
1471
1472   v8::Local<v8::Value> data = config.data;
1473   if (data.IsEmpty()) {
1474     data = v8::Undefined(reinterpret_cast<v8::Isolate*>(isolate));
1475   }
1476   obj->set_data(*Utils::OpenHandle(*data));
1477   cons->set_indexed_property_handler(*obj);
1478 }
1479
1480
1481 void ObjectTemplate::SetCallAsFunctionHandler(FunctionCallback callback,
1482                                               Local<Value> data) {
1483   i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate();
1484   ENTER_V8(isolate);
1485   i::HandleScope scope(isolate);
1486   auto cons = EnsureConstructor(isolate, this);
1487   EnsureNotInstantiated(cons, "v8::ObjectTemplate::SetCallAsFunctionHandler");
1488   i::Handle<i::Struct> struct_obj =
1489       isolate->factory()->NewStruct(i::CALL_HANDLER_INFO_TYPE);
1490   i::Handle<i::CallHandlerInfo> obj =
1491       i::Handle<i::CallHandlerInfo>::cast(struct_obj);
1492   SET_FIELD_WRAPPED(obj, set_callback, callback);
1493   if (data.IsEmpty()) {
1494     data = v8::Undefined(reinterpret_cast<v8::Isolate*>(isolate));
1495   }
1496   obj->set_data(*Utils::OpenHandle(*data));
1497   cons->set_instance_call_handler(*obj);
1498 }
1499
1500
1501 int ObjectTemplate::InternalFieldCount() {
1502   return i::Smi::cast(Utils::OpenHandle(this)->internal_field_count())->value();
1503 }
1504
1505
1506 void ObjectTemplate::SetInternalFieldCount(int value) {
1507   i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate();
1508   if (!Utils::ApiCheck(i::Smi::IsValid(value),
1509                        "v8::ObjectTemplate::SetInternalFieldCount()",
1510                        "Invalid internal field count")) {
1511     return;
1512   }
1513   ENTER_V8(isolate);
1514   if (value > 0) {
1515     // The internal field count is set by the constructor function's
1516     // construct code, so we ensure that there is a constructor
1517     // function to do the setting.
1518     EnsureConstructor(isolate, this);
1519   }
1520   Utils::OpenHandle(this)->set_internal_field_count(i::Smi::FromInt(value));
1521 }
1522
1523
1524 // --- S c r i p t s ---
1525
1526
1527 // Internally, UnboundScript is a SharedFunctionInfo, and Script is a
1528 // JSFunction.
1529
1530 ScriptCompiler::CachedData::CachedData(const uint8_t* data_, int length_,
1531                                        BufferPolicy buffer_policy_)
1532     : data(data_),
1533       length(length_),
1534       rejected(false),
1535       buffer_policy(buffer_policy_) {}
1536
1537
1538 ScriptCompiler::CachedData::~CachedData() {
1539   if (buffer_policy == BufferOwned) {
1540     delete[] data;
1541   }
1542 }
1543
1544
1545 bool ScriptCompiler::ExternalSourceStream::SetBookmark() { return false; }
1546
1547
1548 void ScriptCompiler::ExternalSourceStream::ResetToBookmark() { UNREACHABLE(); }
1549
1550
1551 ScriptCompiler::StreamedSource::StreamedSource(ExternalSourceStream* stream,
1552                                                Encoding encoding)
1553     : impl_(new i::StreamedSource(stream, encoding)) {}
1554
1555
1556 ScriptCompiler::StreamedSource::~StreamedSource() { delete impl_; }
1557
1558
1559 const ScriptCompiler::CachedData*
1560 ScriptCompiler::StreamedSource::GetCachedData() const {
1561   return impl_->cached_data.get();
1562 }
1563
1564
1565 Local<Script> UnboundScript::BindToCurrentContext() {
1566   i::Handle<i::HeapObject> obj =
1567       i::Handle<i::HeapObject>::cast(Utils::OpenHandle(this));
1568   i::Handle<i::SharedFunctionInfo>
1569       function_info(i::SharedFunctionInfo::cast(*obj), obj->GetIsolate());
1570   i::Isolate* isolate = obj->GetIsolate();
1571
1572   i::ScopeInfo* scope_info = function_info->scope_info();
1573   i::Handle<i::JSReceiver> global(isolate->native_context()->global_object());
1574   for (int i = 0; i < scope_info->StrongModeFreeVariableCount(); ++i) {
1575     i::Handle<i::String> name_string(scope_info->StrongModeFreeVariableName(i));
1576     i::ScriptContextTable::LookupResult result;
1577     i::Handle<i::ScriptContextTable> script_context_table(
1578         isolate->native_context()->script_context_table());
1579     if (!i::ScriptContextTable::Lookup(script_context_table, name_string,
1580                                        &result)) {
1581       i::Handle<i::Name> name(scope_info->StrongModeFreeVariableName(i));
1582       Maybe<bool> has = i::JSReceiver::HasProperty(global, name);
1583       if (has.IsJust() && !has.FromJust()) {
1584         i::PendingCompilationErrorHandler pending_error_handler_;
1585         pending_error_handler_.ReportMessageAt(
1586             scope_info->StrongModeFreeVariableStartPosition(i),
1587             scope_info->StrongModeFreeVariableEndPosition(i),
1588             i::MessageTemplate::kStrongUnboundGlobal, name_string,
1589             i::kReferenceError);
1590         i::Handle<i::Script> script(i::Script::cast(function_info->script()));
1591         pending_error_handler_.ThrowPendingError(isolate, script);
1592         isolate->ReportPendingMessages();
1593         isolate->OptionalRescheduleException(true);
1594         return Local<Script>();
1595       }
1596     }
1597   }
1598   i::Handle<i::JSFunction> function =
1599       obj->GetIsolate()->factory()->NewFunctionFromSharedFunctionInfo(
1600           function_info, isolate->native_context());
1601   return ToApiHandle<Script>(function);
1602 }
1603
1604
1605 int UnboundScript::GetId() {
1606   i::Handle<i::HeapObject> obj =
1607       i::Handle<i::HeapObject>::cast(Utils::OpenHandle(this));
1608   i::Isolate* isolate = obj->GetIsolate();
1609   LOG_API(isolate, "v8::UnboundScript::GetId");
1610   i::HandleScope scope(isolate);
1611   i::Handle<i::SharedFunctionInfo> function_info(
1612       i::SharedFunctionInfo::cast(*obj));
1613   i::Handle<i::Script> script(i::Script::cast(function_info->script()));
1614   return script->id()->value();
1615 }
1616
1617
1618 int UnboundScript::GetLineNumber(int code_pos) {
1619   i::Handle<i::SharedFunctionInfo> obj =
1620       i::Handle<i::SharedFunctionInfo>::cast(Utils::OpenHandle(this));
1621   i::Isolate* isolate = obj->GetIsolate();
1622   LOG_API(isolate, "UnboundScript::GetLineNumber");
1623   if (obj->script()->IsScript()) {
1624     i::Handle<i::Script> script(i::Script::cast(obj->script()));
1625     return i::Script::GetLineNumber(script, code_pos);
1626   } else {
1627     return -1;
1628   }
1629 }
1630
1631
1632 Local<Value> UnboundScript::GetScriptName() {
1633   i::Handle<i::SharedFunctionInfo> obj =
1634       i::Handle<i::SharedFunctionInfo>::cast(Utils::OpenHandle(this));
1635   i::Isolate* isolate = obj->GetIsolate();
1636   LOG_API(isolate, "UnboundScript::GetName");
1637   if (obj->script()->IsScript()) {
1638     i::Object* name = i::Script::cast(obj->script())->name();
1639     return Utils::ToLocal(i::Handle<i::Object>(name, isolate));
1640   } else {
1641     return Local<String>();
1642   }
1643 }
1644
1645
1646 Local<Value> UnboundScript::GetSourceURL() {
1647   i::Handle<i::SharedFunctionInfo> obj =
1648       i::Handle<i::SharedFunctionInfo>::cast(Utils::OpenHandle(this));
1649   i::Isolate* isolate = obj->GetIsolate();
1650   LOG_API(isolate, "UnboundScript::GetSourceURL");
1651   if (obj->script()->IsScript()) {
1652     i::Object* url = i::Script::cast(obj->script())->source_url();
1653     return Utils::ToLocal(i::Handle<i::Object>(url, isolate));
1654   } else {
1655     return Local<String>();
1656   }
1657 }
1658
1659
1660 Local<Value> UnboundScript::GetSourceMappingURL() {
1661   i::Handle<i::SharedFunctionInfo> obj =
1662       i::Handle<i::SharedFunctionInfo>::cast(Utils::OpenHandle(this));
1663   i::Isolate* isolate = obj->GetIsolate();
1664   LOG_API(isolate, "UnboundScript::GetSourceMappingURL");
1665   if (obj->script()->IsScript()) {
1666     i::Object* url = i::Script::cast(obj->script())->source_mapping_url();
1667     return Utils::ToLocal(i::Handle<i::Object>(url, isolate));
1668   } else {
1669     return Local<String>();
1670   }
1671 }
1672
1673
1674 MaybeLocal<Value> Script::Run(Local<Context> context) {
1675   PREPARE_FOR_EXECUTION_WITH_CALLBACK(context, "v8::Script::Run()", Value)
1676   i::AggregatingHistogramTimerScope timer(isolate->counters()->compile_lazy());
1677   i::TimerEventScope<i::TimerEventExecute> timer_scope(isolate);
1678   auto fun = i::Handle<i::JSFunction>::cast(Utils::OpenHandle(this));
1679   i::Handle<i::Object> receiver(isolate->global_proxy(), isolate);
1680   Local<Value> result;
1681   has_pending_exception =
1682       !ToLocal<Value>(i::Execution::Call(isolate, fun, receiver, 0, NULL),
1683                       &result);
1684   RETURN_ON_FAILED_EXECUTION(Value);
1685   RETURN_ESCAPED(result);
1686 }
1687
1688
1689 Local<Value> Script::Run() {
1690   auto self = Utils::OpenHandle(this, true);
1691   // If execution is terminating, Compile(..)->Run() requires this
1692   // check.
1693   if (self.is_null()) return Local<Value>();
1694   auto context = ContextFromHeapObject(self);
1695   RETURN_TO_LOCAL_UNCHECKED(Run(context), Value);
1696 }
1697
1698
1699 Local<UnboundScript> Script::GetUnboundScript() {
1700   i::Handle<i::Object> obj = Utils::OpenHandle(this);
1701   return ToApiHandle<UnboundScript>(
1702       i::Handle<i::SharedFunctionInfo>(i::JSFunction::cast(*obj)->shared()));
1703 }
1704
1705
1706 MaybeLocal<UnboundScript> ScriptCompiler::CompileUnboundInternal(
1707     Isolate* v8_isolate, Source* source, CompileOptions options,
1708     bool is_module) {
1709   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(v8_isolate);
1710   PREPARE_FOR_EXECUTION_WITH_ISOLATE(
1711       isolate, "v8::ScriptCompiler::CompileUnbound()", UnboundScript);
1712
1713   // Don't try to produce any kind of cache when the debugger is loaded.
1714   if (isolate->debug()->is_loaded() &&
1715       (options == kProduceParserCache || options == kProduceCodeCache)) {
1716     options = kNoCompileOptions;
1717   }
1718
1719   i::ScriptData* script_data = NULL;
1720   if (options == kConsumeParserCache || options == kConsumeCodeCache) {
1721     DCHECK(source->cached_data);
1722     // ScriptData takes care of pointer-aligning the data.
1723     script_data = new i::ScriptData(source->cached_data->data,
1724                                     source->cached_data->length);
1725   }
1726
1727   i::Handle<i::String> str = Utils::OpenHandle(*(source->source_string));
1728   i::Handle<i::SharedFunctionInfo> result;
1729   {
1730     i::HistogramTimerScope total(isolate->counters()->compile_script(), true);
1731     i::Handle<i::Object> name_obj;
1732     i::Handle<i::Object> source_map_url;
1733     int line_offset = 0;
1734     int column_offset = 0;
1735     if (!source->resource_name.IsEmpty()) {
1736       name_obj = Utils::OpenHandle(*(source->resource_name));
1737     }
1738     if (!source->resource_line_offset.IsEmpty()) {
1739       line_offset = static_cast<int>(source->resource_line_offset->Value());
1740     }
1741     if (!source->resource_column_offset.IsEmpty()) {
1742       column_offset =
1743           static_cast<int>(source->resource_column_offset->Value());
1744     }
1745     if (!source->source_map_url.IsEmpty()) {
1746       source_map_url = Utils::OpenHandle(*(source->source_map_url));
1747     }
1748     result = i::Compiler::CompileScript(
1749         str, name_obj, line_offset, column_offset, source->resource_options,
1750         source_map_url, isolate->native_context(), NULL, &script_data, options,
1751         i::NOT_NATIVES_CODE, is_module);
1752     has_pending_exception = result.is_null();
1753     if (has_pending_exception && script_data != NULL) {
1754       // This case won't happen during normal operation; we have compiled
1755       // successfully and produced cached data, and but the second compilation
1756       // of the same source code fails.
1757       delete script_data;
1758       script_data = NULL;
1759     }
1760     RETURN_ON_FAILED_EXECUTION(UnboundScript);
1761
1762     if ((options == kProduceParserCache || options == kProduceCodeCache) &&
1763         script_data != NULL) {
1764       // script_data now contains the data that was generated. source will
1765       // take the ownership.
1766       source->cached_data = new CachedData(
1767           script_data->data(), script_data->length(), CachedData::BufferOwned);
1768       script_data->ReleaseDataOwnership();
1769     } else if (options == kConsumeParserCache || options == kConsumeCodeCache) {
1770       source->cached_data->rejected = script_data->rejected();
1771     }
1772     delete script_data;
1773   }
1774   RETURN_ESCAPED(ToApiHandle<UnboundScript>(result));
1775 }
1776
1777
1778 MaybeLocal<UnboundScript> ScriptCompiler::CompileUnboundScript(
1779     Isolate* v8_isolate, Source* source, CompileOptions options) {
1780   return CompileUnboundInternal(v8_isolate, source, options, false);
1781 }
1782
1783
1784 Local<UnboundScript> ScriptCompiler::CompileUnbound(Isolate* v8_isolate,
1785                                                     Source* source,
1786                                                     CompileOptions options) {
1787   RETURN_TO_LOCAL_UNCHECKED(
1788       CompileUnboundInternal(v8_isolate, source, options, false),
1789       UnboundScript);
1790 }
1791
1792
1793 MaybeLocal<Script> ScriptCompiler::Compile(Local<Context> context,
1794                                            Source* source,
1795                                            CompileOptions options) {
1796   auto isolate = context->GetIsolate();
1797   auto maybe = CompileUnboundInternal(isolate, source, options, false);
1798   Local<UnboundScript> result;
1799   if (!maybe.ToLocal(&result)) return MaybeLocal<Script>();
1800   v8::Context::Scope scope(context);
1801   return result->BindToCurrentContext();
1802 }
1803
1804
1805 Local<Script> ScriptCompiler::Compile(
1806     Isolate* v8_isolate,
1807     Source* source,
1808     CompileOptions options) {
1809   auto context = v8_isolate->GetCurrentContext();
1810   RETURN_TO_LOCAL_UNCHECKED(Compile(context, source, options), Script);
1811 }
1812
1813
1814 MaybeLocal<Script> ScriptCompiler::CompileModule(Local<Context> context,
1815                                                  Source* source,
1816                                                  CompileOptions options) {
1817   CHECK(i::FLAG_harmony_modules);
1818   auto isolate = context->GetIsolate();
1819   auto maybe = CompileUnboundInternal(isolate, source, options, true);
1820   Local<UnboundScript> generic;
1821   if (!maybe.ToLocal(&generic)) return MaybeLocal<Script>();
1822   v8::Context::Scope scope(context);
1823   return generic->BindToCurrentContext();
1824 }
1825
1826
1827 class IsIdentifierHelper {
1828  public:
1829   IsIdentifierHelper() : is_identifier_(false), first_char_(true) {}
1830
1831   bool Check(i::String* string) {
1832     i::ConsString* cons_string = i::String::VisitFlat(this, string, 0);
1833     if (cons_string == NULL) return is_identifier_;
1834     // We don't support cons strings here.
1835     return false;
1836   }
1837   void VisitOneByteString(const uint8_t* chars, int length) {
1838     for (int i = 0; i < length; ++i) {
1839       if (first_char_) {
1840         first_char_ = false;
1841         is_identifier_ = unicode_cache_.IsIdentifierStart(chars[0]);
1842       } else {
1843         is_identifier_ &= unicode_cache_.IsIdentifierPart(chars[i]);
1844       }
1845     }
1846   }
1847   void VisitTwoByteString(const uint16_t* chars, int length) {
1848     for (int i = 0; i < length; ++i) {
1849       if (first_char_) {
1850         first_char_ = false;
1851         is_identifier_ = unicode_cache_.IsIdentifierStart(chars[0]);
1852       } else {
1853         is_identifier_ &= unicode_cache_.IsIdentifierPart(chars[i]);
1854       }
1855     }
1856   }
1857
1858  private:
1859   bool is_identifier_;
1860   bool first_char_;
1861   i::UnicodeCache unicode_cache_;
1862   DISALLOW_COPY_AND_ASSIGN(IsIdentifierHelper);
1863 };
1864
1865
1866 MaybeLocal<Function> ScriptCompiler::CompileFunctionInContext(
1867     Local<Context> v8_context, Source* source, size_t arguments_count,
1868     Local<String> arguments[], size_t context_extension_count,
1869     Local<Object> context_extensions[]) {
1870   PREPARE_FOR_EXECUTION(
1871       v8_context, "v8::ScriptCompiler::CompileFunctionInContext()", Function);
1872   i::Handle<i::String> source_string;
1873   auto factory = isolate->factory();
1874   if (arguments_count) {
1875     source_string = factory->NewStringFromStaticChars("(function(");
1876     for (size_t i = 0; i < arguments_count; ++i) {
1877       IsIdentifierHelper helper;
1878       if (!helper.Check(*Utils::OpenHandle(*arguments[i]))) {
1879         return Local<Function>();
1880       }
1881       has_pending_exception =
1882           !factory->NewConsString(source_string,
1883                                   Utils::OpenHandle(*arguments[i]))
1884                .ToHandle(&source_string);
1885       RETURN_ON_FAILED_EXECUTION(Function);
1886       if (i + 1 == arguments_count) continue;
1887       has_pending_exception =
1888           !factory->NewConsString(source_string,
1889                                   factory->LookupSingleCharacterStringFromCode(
1890                                       ',')).ToHandle(&source_string);
1891       RETURN_ON_FAILED_EXECUTION(Function);
1892     }
1893     auto brackets = factory->NewStringFromStaticChars("){");
1894     has_pending_exception = !factory->NewConsString(source_string, brackets)
1895                                  .ToHandle(&source_string);
1896     RETURN_ON_FAILED_EXECUTION(Function);
1897   } else {
1898     source_string = factory->NewStringFromStaticChars("(function(){");
1899   }
1900
1901   int scope_position = source_string->length();
1902   has_pending_exception =
1903       !factory->NewConsString(source_string,
1904                               Utils::OpenHandle(*source->source_string))
1905            .ToHandle(&source_string);
1906   RETURN_ON_FAILED_EXECUTION(Function);
1907   // Include \n in case the source contains a line end comment.
1908   auto brackets = factory->NewStringFromStaticChars("\n})");
1909   has_pending_exception =
1910       !factory->NewConsString(source_string, brackets).ToHandle(&source_string);
1911   RETURN_ON_FAILED_EXECUTION(Function);
1912
1913   i::Handle<i::Context> context = Utils::OpenHandle(*v8_context);
1914   i::Handle<i::SharedFunctionInfo> outer_info(context->closure()->shared(),
1915                                               isolate);
1916   for (size_t i = 0; i < context_extension_count; ++i) {
1917     i::Handle<i::JSObject> extension =
1918         Utils::OpenHandle(*context_extensions[i]);
1919     i::Handle<i::JSFunction> closure(context->closure(), isolate);
1920     context = factory->NewWithContext(closure, context, extension);
1921   }
1922
1923   i::Handle<i::Object> name_obj;
1924   int line_offset = 0;
1925   int column_offset = 0;
1926   if (!source->resource_name.IsEmpty()) {
1927     name_obj = Utils::OpenHandle(*(source->resource_name));
1928   }
1929   if (!source->resource_line_offset.IsEmpty()) {
1930     line_offset = static_cast<int>(source->resource_line_offset->Value());
1931   }
1932   if (!source->resource_column_offset.IsEmpty()) {
1933     column_offset = static_cast<int>(source->resource_column_offset->Value());
1934   }
1935   i::Handle<i::JSFunction> fun;
1936   has_pending_exception = !i::Compiler::GetFunctionFromEval(
1937                                source_string, outer_info, context, i::SLOPPY,
1938                                i::ONLY_SINGLE_FUNCTION_LITERAL, line_offset,
1939                                column_offset - scope_position, name_obj,
1940                                source->resource_options).ToHandle(&fun);
1941   if (has_pending_exception) {
1942     isolate->ReportPendingMessages();
1943   }
1944   RETURN_ON_FAILED_EXECUTION(Function);
1945
1946   i::Handle<i::Object> result;
1947   has_pending_exception =
1948       !i::Execution::Call(isolate, fun,
1949                           Utils::OpenHandle(*v8_context->Global()), 0,
1950                           nullptr).ToHandle(&result);
1951   RETURN_ON_FAILED_EXECUTION(Function);
1952   RETURN_ESCAPED(Utils::ToLocal(i::Handle<i::JSFunction>::cast(result)));
1953 }
1954
1955
1956 Local<Function> ScriptCompiler::CompileFunctionInContext(
1957     Isolate* v8_isolate, Source* source, Local<Context> v8_context,
1958     size_t arguments_count, Local<String> arguments[],
1959     size_t context_extension_count, Local<Object> context_extensions[]) {
1960   RETURN_TO_LOCAL_UNCHECKED(
1961       CompileFunctionInContext(v8_context, source, arguments_count, arguments,
1962                                context_extension_count, context_extensions),
1963       Function);
1964 }
1965
1966
1967 ScriptCompiler::ScriptStreamingTask* ScriptCompiler::StartStreamingScript(
1968     Isolate* v8_isolate, StreamedSource* source, CompileOptions options) {
1969   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(v8_isolate);
1970   return new i::BackgroundParsingTask(source->impl(), options,
1971                                       i::FLAG_stack_size, isolate);
1972 }
1973
1974
1975 MaybeLocal<Script> ScriptCompiler::Compile(Local<Context> context,
1976                                            StreamedSource* v8_source,
1977                                            Local<String> full_source_string,
1978                                            const ScriptOrigin& origin) {
1979   PREPARE_FOR_EXECUTION(context, "v8::ScriptCompiler::Compile()", Script);
1980   i::StreamedSource* source = v8_source->impl();
1981   i::Handle<i::String> str = Utils::OpenHandle(*(full_source_string));
1982   i::Handle<i::Script> script = isolate->factory()->NewScript(str);
1983   if (!origin.ResourceName().IsEmpty()) {
1984     script->set_name(*Utils::OpenHandle(*(origin.ResourceName())));
1985   }
1986   if (!origin.ResourceLineOffset().IsEmpty()) {
1987     script->set_line_offset(i::Smi::FromInt(
1988         static_cast<int>(origin.ResourceLineOffset()->Value())));
1989   }
1990   if (!origin.ResourceColumnOffset().IsEmpty()) {
1991     script->set_column_offset(i::Smi::FromInt(
1992         static_cast<int>(origin.ResourceColumnOffset()->Value())));
1993   }
1994   script->set_origin_options(origin.Options());
1995   if (!origin.SourceMapUrl().IsEmpty()) {
1996     script->set_source_mapping_url(
1997         *Utils::OpenHandle(*(origin.SourceMapUrl())));
1998   }
1999
2000   source->info->set_script(script);
2001   source->info->set_context(isolate->native_context());
2002
2003   // Do the parsing tasks which need to be done on the main thread. This will
2004   // also handle parse errors.
2005   source->parser->Internalize(isolate, script,
2006                               source->info->literal() == nullptr);
2007   source->parser->HandleSourceURLComments(isolate, script);
2008
2009   i::Handle<i::SharedFunctionInfo> result;
2010   if (source->info->literal() != nullptr) {
2011     // Parsing has succeeded.
2012     result = i::Compiler::CompileStreamedScript(script, source->info.get(),
2013                                                 str->length());
2014   }
2015   has_pending_exception = result.is_null();
2016   if (has_pending_exception) isolate->ReportPendingMessages();
2017   RETURN_ON_FAILED_EXECUTION(Script);
2018
2019   source->info->clear_script();  // because script goes out of scope.
2020
2021   Local<UnboundScript> generic = ToApiHandle<UnboundScript>(result);
2022   if (generic.IsEmpty()) return Local<Script>();
2023   Local<Script> bound = generic->BindToCurrentContext();
2024   if (bound.IsEmpty()) return Local<Script>();
2025   RETURN_ESCAPED(bound);
2026 }
2027
2028
2029 Local<Script> ScriptCompiler::Compile(Isolate* v8_isolate,
2030                                       StreamedSource* v8_source,
2031                                       Local<String> full_source_string,
2032                                       const ScriptOrigin& origin) {
2033   auto context = v8_isolate->GetCurrentContext();
2034   RETURN_TO_LOCAL_UNCHECKED(
2035       Compile(context, v8_source, full_source_string, origin), Script);
2036 }
2037
2038
2039 uint32_t ScriptCompiler::CachedDataVersionTag() {
2040   return static_cast<uint32_t>(base::hash_combine(
2041       internal::Version::Hash(), internal::FlagList::Hash(),
2042       static_cast<uint32_t>(internal::CpuFeatures::SupportedFeatures())));
2043 }
2044
2045
2046 MaybeLocal<Script> Script::Compile(Local<Context> context, Local<String> source,
2047                                    ScriptOrigin* origin) {
2048   if (origin) {
2049     ScriptCompiler::Source script_source(source, *origin);
2050     return ScriptCompiler::Compile(context, &script_source);
2051   }
2052   ScriptCompiler::Source script_source(source);
2053   return ScriptCompiler::Compile(context, &script_source);
2054 }
2055
2056
2057 Local<Script> Script::Compile(v8::Local<String> source,
2058                               v8::ScriptOrigin* origin) {
2059   auto str = Utils::OpenHandle(*source);
2060   auto context = ContextFromHeapObject(str);
2061   RETURN_TO_LOCAL_UNCHECKED(Compile(context, source, origin), Script);
2062 }
2063
2064
2065 Local<Script> Script::Compile(v8::Local<String> source,
2066                               v8::Local<String> file_name) {
2067   auto str = Utils::OpenHandle(*source);
2068   auto context = ContextFromHeapObject(str);
2069   ScriptOrigin origin(file_name);
2070   return Compile(context, source, &origin).FromMaybe(Local<Script>());
2071 }
2072
2073
2074 // --- E x c e p t i o n s ---
2075
2076
2077 v8::TryCatch::TryCatch()
2078     : isolate_(i::Isolate::Current()),
2079       next_(isolate_->try_catch_handler()),
2080       is_verbose_(false),
2081       can_continue_(true),
2082       capture_message_(true),
2083       rethrow_(false),
2084       has_terminated_(false) {
2085   ResetInternal();
2086   // Special handling for simulators which have a separate JS stack.
2087   js_stack_comparable_address_ =
2088       reinterpret_cast<void*>(v8::internal::SimulatorStack::RegisterCTryCatch(
2089           v8::internal::GetCurrentStackPosition()));
2090   isolate_->RegisterTryCatchHandler(this);
2091 }
2092
2093
2094 v8::TryCatch::TryCatch(v8::Isolate* isolate)
2095     : isolate_(reinterpret_cast<i::Isolate*>(isolate)),
2096       next_(isolate_->try_catch_handler()),
2097       is_verbose_(false),
2098       can_continue_(true),
2099       capture_message_(true),
2100       rethrow_(false),
2101       has_terminated_(false) {
2102   ResetInternal();
2103   // Special handling for simulators which have a separate JS stack.
2104   js_stack_comparable_address_ =
2105       reinterpret_cast<void*>(v8::internal::SimulatorStack::RegisterCTryCatch(
2106           v8::internal::GetCurrentStackPosition()));
2107   isolate_->RegisterTryCatchHandler(this);
2108 }
2109
2110
2111 v8::TryCatch::~TryCatch() {
2112   if (rethrow_) {
2113     v8::Isolate* isolate = reinterpret_cast<Isolate*>(isolate_);
2114     v8::HandleScope scope(isolate);
2115     v8::Local<v8::Value> exc = v8::Local<v8::Value>::New(isolate, Exception());
2116     if (HasCaught() && capture_message_) {
2117       // If an exception was caught and rethrow_ is indicated, the saved
2118       // message, script, and location need to be restored to Isolate TLS
2119       // for reuse.  capture_message_ needs to be disabled so that Throw()
2120       // does not create a new message.
2121       isolate_->thread_local_top()->rethrowing_message_ = true;
2122       isolate_->RestorePendingMessageFromTryCatch(this);
2123     }
2124     isolate_->UnregisterTryCatchHandler(this);
2125     v8::internal::SimulatorStack::UnregisterCTryCatch();
2126     reinterpret_cast<Isolate*>(isolate_)->ThrowException(exc);
2127     DCHECK(!isolate_->thread_local_top()->rethrowing_message_);
2128   } else {
2129     if (HasCaught() && isolate_->has_scheduled_exception()) {
2130       // If an exception was caught but is still scheduled because no API call
2131       // promoted it, then it is canceled to prevent it from being propagated.
2132       // Note that this will not cancel termination exceptions.
2133       isolate_->CancelScheduledExceptionFromTryCatch(this);
2134     }
2135     isolate_->UnregisterTryCatchHandler(this);
2136     v8::internal::SimulatorStack::UnregisterCTryCatch();
2137   }
2138 }
2139
2140
2141 bool v8::TryCatch::HasCaught() const {
2142   return !reinterpret_cast<i::Object*>(exception_)->IsTheHole();
2143 }
2144
2145
2146 bool v8::TryCatch::CanContinue() const {
2147   return can_continue_;
2148 }
2149
2150
2151 bool v8::TryCatch::HasTerminated() const {
2152   return has_terminated_;
2153 }
2154
2155
2156 v8::Local<v8::Value> v8::TryCatch::ReThrow() {
2157   if (!HasCaught()) return v8::Local<v8::Value>();
2158   rethrow_ = true;
2159   return v8::Undefined(reinterpret_cast<v8::Isolate*>(isolate_));
2160 }
2161
2162
2163 v8::Local<Value> v8::TryCatch::Exception() const {
2164   if (HasCaught()) {
2165     // Check for out of memory exception.
2166     i::Object* exception = reinterpret_cast<i::Object*>(exception_);
2167     return v8::Utils::ToLocal(i::Handle<i::Object>(exception, isolate_));
2168   } else {
2169     return v8::Local<Value>();
2170   }
2171 }
2172
2173
2174 MaybeLocal<Value> v8::TryCatch::StackTrace(Local<Context> context) const {
2175   if (!HasCaught()) return v8::Local<Value>();
2176   i::Object* raw_obj = reinterpret_cast<i::Object*>(exception_);
2177   if (!raw_obj->IsJSObject()) return v8::Local<Value>();
2178   PREPARE_FOR_EXECUTION(context, "v8::TryCatch::StackTrace", Value);
2179   i::Handle<i::JSObject> obj(i::JSObject::cast(raw_obj), isolate_);
2180   i::Handle<i::String> name = isolate->factory()->stack_string();
2181   Maybe<bool> maybe = i::JSReceiver::HasProperty(obj, name);
2182   has_pending_exception = !maybe.IsJust();
2183   RETURN_ON_FAILED_EXECUTION(Value);
2184   if (!maybe.FromJust()) return v8::Local<Value>();
2185   Local<Value> result;
2186   has_pending_exception =
2187       !ToLocal<Value>(i::Object::GetProperty(obj, name), &result);
2188   RETURN_ON_FAILED_EXECUTION(Value);
2189   RETURN_ESCAPED(result);
2190 }
2191
2192
2193 v8::Local<Value> v8::TryCatch::StackTrace() const {
2194   auto context = reinterpret_cast<v8::Isolate*>(isolate_)->GetCurrentContext();
2195   RETURN_TO_LOCAL_UNCHECKED(StackTrace(context), Value);
2196 }
2197
2198
2199 v8::Local<v8::Message> v8::TryCatch::Message() const {
2200   i::Object* message = reinterpret_cast<i::Object*>(message_obj_);
2201   DCHECK(message->IsJSMessageObject() || message->IsTheHole());
2202   if (HasCaught() && !message->IsTheHole()) {
2203     return v8::Utils::MessageToLocal(i::Handle<i::Object>(message, isolate_));
2204   } else {
2205     return v8::Local<v8::Message>();
2206   }
2207 }
2208
2209
2210 void v8::TryCatch::Reset() {
2211   if (!rethrow_ && HasCaught() && isolate_->has_scheduled_exception()) {
2212     // If an exception was caught but is still scheduled because no API call
2213     // promoted it, then it is canceled to prevent it from being propagated.
2214     // Note that this will not cancel termination exceptions.
2215     isolate_->CancelScheduledExceptionFromTryCatch(this);
2216   }
2217   ResetInternal();
2218 }
2219
2220
2221 void v8::TryCatch::ResetInternal() {
2222   i::Object* the_hole = isolate_->heap()->the_hole_value();
2223   exception_ = the_hole;
2224   message_obj_ = the_hole;
2225 }
2226
2227
2228 void v8::TryCatch::SetVerbose(bool value) {
2229   is_verbose_ = value;
2230 }
2231
2232
2233 void v8::TryCatch::SetCaptureMessage(bool value) {
2234   capture_message_ = value;
2235 }
2236
2237
2238 // --- M e s s a g e ---
2239
2240
2241 Local<String> Message::Get() const {
2242   i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate();
2243   ENTER_V8(isolate);
2244   EscapableHandleScope scope(reinterpret_cast<Isolate*>(isolate));
2245   i::Handle<i::Object> obj = Utils::OpenHandle(this);
2246   i::Handle<i::String> raw_result = i::MessageHandler::GetMessage(isolate, obj);
2247   Local<String> result = Utils::ToLocal(raw_result);
2248   return scope.Escape(result);
2249 }
2250
2251
2252 ScriptOrigin Message::GetScriptOrigin() const {
2253   i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate();
2254   auto message = i::Handle<i::JSMessageObject>::cast(Utils::OpenHandle(this));
2255   auto script_wraper = i::Handle<i::Object>(message->script(), isolate);
2256   auto script_value = i::Handle<i::JSValue>::cast(script_wraper);
2257   i::Handle<i::Script> script(i::Script::cast(script_value->value()));
2258   return GetScriptOriginForScript(isolate, script);
2259 }
2260
2261
2262 v8::Local<Value> Message::GetScriptResourceName() const {
2263   return GetScriptOrigin().ResourceName();
2264 }
2265
2266
2267 v8::Local<v8::StackTrace> Message::GetStackTrace() const {
2268   i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate();
2269   ENTER_V8(isolate);
2270   EscapableHandleScope scope(reinterpret_cast<Isolate*>(isolate));
2271   auto message = i::Handle<i::JSMessageObject>::cast(Utils::OpenHandle(this));
2272   i::Handle<i::Object> stackFramesObj(message->stack_frames(), isolate);
2273   if (!stackFramesObj->IsJSArray()) return v8::Local<v8::StackTrace>();
2274   auto stackTrace = i::Handle<i::JSArray>::cast(stackFramesObj);
2275   return scope.Escape(Utils::StackTraceToLocal(stackTrace));
2276 }
2277
2278
2279 Maybe<int> Message::GetLineNumber(Local<Context> context) const {
2280   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "v8::Message::GetLineNumber()", int);
2281   i::Handle<i::JSFunction> fun = isolate->message_get_line_number();
2282   i::Handle<i::Object> undefined = isolate->factory()->undefined_value();
2283   i::Handle<i::Object> args[] = {Utils::OpenHandle(this)};
2284   i::Handle<i::Object> result;
2285   has_pending_exception =
2286       !i::Execution::Call(isolate, fun, undefined, arraysize(args), args)
2287            .ToHandle(&result);
2288   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(int);
2289   return Just(static_cast<int>(result->Number()));
2290 }
2291
2292
2293 int Message::GetLineNumber() const {
2294   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
2295   return GetLineNumber(context).FromMaybe(0);
2296 }
2297
2298
2299 int Message::GetStartPosition() const {
2300   auto self = Utils::OpenHandle(this);
2301   return self->start_position();
2302 }
2303
2304
2305 int Message::GetEndPosition() const {
2306   auto self = Utils::OpenHandle(this);
2307   return self->end_position();
2308 }
2309
2310
2311 Maybe<int> Message::GetStartColumn(Local<Context> context) const {
2312   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "v8::Message::GetStartColumn()",
2313                                   int);
2314   i::Handle<i::JSFunction> fun = isolate->message_get_column_number();
2315   i::Handle<i::Object> undefined = isolate->factory()->undefined_value();
2316   i::Handle<i::Object> args[] = {Utils::OpenHandle(this)};
2317   i::Handle<i::Object> result;
2318   has_pending_exception =
2319       !i::Execution::Call(isolate, fun, undefined, arraysize(args), args)
2320            .ToHandle(&result);
2321   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(int);
2322   return Just(static_cast<int>(result->Number()));
2323 }
2324
2325
2326 int Message::GetStartColumn() const {
2327   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
2328   const int default_value = kNoColumnInfo;
2329   return GetStartColumn(context).FromMaybe(default_value);
2330 }
2331
2332
2333 Maybe<int> Message::GetEndColumn(Local<Context> context) const {
2334   auto self = Utils::OpenHandle(this);
2335   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "v8::Message::GetEndColumn()", int);
2336   i::Handle<i::JSFunction> fun = isolate->message_get_column_number();
2337   i::Handle<i::Object> undefined = isolate->factory()->undefined_value();
2338   i::Handle<i::Object> args[] = {self};
2339   i::Handle<i::Object> result;
2340   has_pending_exception =
2341       !i::Execution::Call(isolate, fun, undefined, arraysize(args), args)
2342            .ToHandle(&result);
2343   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(int);
2344   int start = self->start_position();
2345   int end = self->end_position();
2346   return Just(static_cast<int>(result->Number()) + (end - start));
2347 }
2348
2349
2350 int Message::GetEndColumn() const {
2351   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
2352   const int default_value = kNoColumnInfo;
2353   return GetEndColumn(context).FromMaybe(default_value);
2354 }
2355
2356
2357 bool Message::IsSharedCrossOrigin() const {
2358   i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate();
2359   ENTER_V8(isolate);
2360   auto self = Utils::OpenHandle(this);
2361   auto script = i::Handle<i::JSValue>::cast(
2362       i::Handle<i::Object>(self->script(), isolate));
2363   return i::Script::cast(script->value())
2364       ->origin_options()
2365       .IsSharedCrossOrigin();
2366 }
2367
2368 bool Message::IsOpaque() const {
2369   i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate();
2370   ENTER_V8(isolate);
2371   auto self = Utils::OpenHandle(this);
2372   auto script = i::Handle<i::JSValue>::cast(
2373       i::Handle<i::Object>(self->script(), isolate));
2374   return i::Script::cast(script->value())->origin_options().IsOpaque();
2375 }
2376
2377
2378 MaybeLocal<String> Message::GetSourceLine(Local<Context> context) const {
2379   PREPARE_FOR_EXECUTION(context, "v8::Message::GetSourceLine()", String);
2380   i::Handle<i::JSFunction> fun = isolate->message_get_source_line();
2381   i::Handle<i::Object> undefined = isolate->factory()->undefined_value();
2382   i::Handle<i::Object> args[] = {Utils::OpenHandle(this)};
2383   i::Handle<i::Object> result;
2384   has_pending_exception =
2385       !i::Execution::Call(isolate, fun, undefined, arraysize(args), args)
2386            .ToHandle(&result);
2387   RETURN_ON_FAILED_EXECUTION(String);
2388   Local<String> str;
2389   if (result->IsString()) {
2390     str = Utils::ToLocal(i::Handle<i::String>::cast(result));
2391   }
2392   RETURN_ESCAPED(str);
2393 }
2394
2395
2396 Local<String> Message::GetSourceLine() const {
2397   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
2398   RETURN_TO_LOCAL_UNCHECKED(GetSourceLine(context), String)
2399 }
2400
2401
2402 void Message::PrintCurrentStackTrace(Isolate* isolate, FILE* out) {
2403   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
2404   ENTER_V8(i_isolate);
2405   i_isolate->PrintCurrentStackTrace(out);
2406 }
2407
2408
2409 // --- S t a c k T r a c e ---
2410
2411 Local<StackFrame> StackTrace::GetFrame(uint32_t index) const {
2412   i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate();
2413   ENTER_V8(isolate);
2414   EscapableHandleScope scope(reinterpret_cast<Isolate*>(isolate));
2415   auto self = Utils::OpenHandle(this);
2416   auto obj = i::Object::GetElement(isolate, self, index).ToHandleChecked();
2417   auto jsobj = i::Handle<i::JSObject>::cast(obj);
2418   return scope.Escape(Utils::StackFrameToLocal(jsobj));
2419 }
2420
2421
2422 int StackTrace::GetFrameCount() const {
2423   return i::Smi::cast(Utils::OpenHandle(this)->length())->value();
2424 }
2425
2426
2427 Local<Array> StackTrace::AsArray() {
2428   return Utils::ToLocal(Utils::OpenHandle(this));
2429 }
2430
2431
2432 Local<StackTrace> StackTrace::CurrentStackTrace(
2433     Isolate* isolate,
2434     int frame_limit,
2435     StackTraceOptions options) {
2436   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
2437   ENTER_V8(i_isolate);
2438   // TODO(dcarney): remove when ScriptDebugServer is fixed.
2439   options = static_cast<StackTraceOptions>(
2440       static_cast<int>(options) | kExposeFramesAcrossSecurityOrigins);
2441   i::Handle<i::JSArray> stackTrace =
2442       i_isolate->CaptureCurrentStackTrace(frame_limit, options);
2443   return Utils::StackTraceToLocal(stackTrace);
2444 }
2445
2446
2447 // --- S t a c k F r a m e ---
2448
2449 static int getIntProperty(const StackFrame* f, const char* propertyName,
2450                           int defaultValue) {
2451   i::Isolate* isolate = Utils::OpenHandle(f)->GetIsolate();
2452   ENTER_V8(isolate);
2453   i::HandleScope scope(isolate);
2454   i::Handle<i::JSObject> self = Utils::OpenHandle(f);
2455   i::Handle<i::Object> obj =
2456       i::Object::GetProperty(isolate, self, propertyName).ToHandleChecked();
2457   return obj->IsSmi() ? i::Smi::cast(*obj)->value() : defaultValue;
2458 }
2459
2460
2461 int StackFrame::GetLineNumber() const {
2462   return getIntProperty(this, "lineNumber", Message::kNoLineNumberInfo);
2463 }
2464
2465
2466 int StackFrame::GetColumn() const {
2467   return getIntProperty(this, "column", Message::kNoColumnInfo);
2468 }
2469
2470
2471 int StackFrame::GetScriptId() const {
2472   return getIntProperty(this, "scriptId", Message::kNoScriptIdInfo);
2473 }
2474
2475
2476 static Local<String> getStringProperty(const StackFrame* f,
2477                                        const char* propertyName) {
2478   i::Isolate* isolate = Utils::OpenHandle(f)->GetIsolate();
2479   ENTER_V8(isolate);
2480   EscapableHandleScope scope(reinterpret_cast<Isolate*>(isolate));
2481   i::Handle<i::JSObject> self = Utils::OpenHandle(f);
2482   i::Handle<i::Object> obj =
2483       i::Object::GetProperty(isolate, self, propertyName).ToHandleChecked();
2484   return obj->IsString()
2485              ? scope.Escape(Local<String>::Cast(Utils::ToLocal(obj)))
2486              : Local<String>();
2487 }
2488
2489
2490 Local<String> StackFrame::GetScriptName() const {
2491   return getStringProperty(this, "scriptName");
2492 }
2493
2494
2495 Local<String> StackFrame::GetScriptNameOrSourceURL() const {
2496   return getStringProperty(this, "scriptNameOrSourceURL");
2497 }
2498
2499
2500 Local<String> StackFrame::GetFunctionName() const {
2501   return getStringProperty(this, "functionName");
2502 }
2503
2504
2505 static bool getBoolProperty(const StackFrame* f, const char* propertyName) {
2506   i::Isolate* isolate = Utils::OpenHandle(f)->GetIsolate();
2507   ENTER_V8(isolate);
2508   i::HandleScope scope(isolate);
2509   i::Handle<i::JSObject> self = Utils::OpenHandle(f);
2510   i::Handle<i::Object> obj =
2511       i::Object::GetProperty(isolate, self, propertyName).ToHandleChecked();
2512   return obj->IsTrue();
2513 }
2514
2515 bool StackFrame::IsEval() const { return getBoolProperty(this, "isEval"); }
2516
2517
2518 bool StackFrame::IsConstructor() const {
2519   return getBoolProperty(this, "isConstructor");
2520 }
2521
2522
2523 // --- N a t i v e W e a k M a p ---
2524
2525 Local<NativeWeakMap> NativeWeakMap::New(Isolate* v8_isolate) {
2526   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(v8_isolate);
2527   ENTER_V8(isolate);
2528   i::Handle<i::JSWeakMap> weakmap = isolate->factory()->NewJSWeakMap();
2529   i::JSWeakCollection::Initialize(weakmap, isolate);
2530   return Utils::NativeWeakMapToLocal(weakmap);
2531 }
2532
2533
2534 void NativeWeakMap::Set(Local<Value> v8_key, Local<Value> v8_value) {
2535   i::Handle<i::JSWeakMap> weak_collection = Utils::OpenHandle(this);
2536   i::Isolate* isolate = weak_collection->GetIsolate();
2537   ENTER_V8(isolate);
2538   i::HandleScope scope(isolate);
2539   i::Handle<i::Object> key = Utils::OpenHandle(*v8_key);
2540   i::Handle<i::Object> value = Utils::OpenHandle(*v8_value);
2541   if (!key->IsJSReceiver() && !key->IsSymbol()) {
2542     DCHECK(false);
2543     return;
2544   }
2545   i::Handle<i::ObjectHashTable> table(
2546       i::ObjectHashTable::cast(weak_collection->table()));
2547   if (!table->IsKey(*key)) {
2548     DCHECK(false);
2549     return;
2550   }
2551   int32_t hash = i::Object::GetOrCreateHash(isolate, key)->value();
2552   i::JSWeakCollection::Set(weak_collection, key, value, hash);
2553 }
2554
2555
2556 Local<Value> NativeWeakMap::Get(Local<Value> v8_key) {
2557   i::Handle<i::JSWeakMap> weak_collection = Utils::OpenHandle(this);
2558   i::Isolate* isolate = weak_collection->GetIsolate();
2559   ENTER_V8(isolate);
2560   i::Handle<i::Object> key = Utils::OpenHandle(*v8_key);
2561   if (!key->IsJSReceiver() && !key->IsSymbol()) {
2562     DCHECK(false);
2563     return v8::Undefined(reinterpret_cast<v8::Isolate*>(isolate));
2564   }
2565   i::Handle<i::ObjectHashTable> table(
2566       i::ObjectHashTable::cast(weak_collection->table()));
2567   if (!table->IsKey(*key)) {
2568     DCHECK(false);
2569     return v8::Undefined(reinterpret_cast<v8::Isolate*>(isolate));
2570   }
2571   i::Handle<i::Object> lookup(table->Lookup(key), isolate);
2572   if (lookup->IsTheHole())
2573     return v8::Undefined(reinterpret_cast<v8::Isolate*>(isolate));
2574   return Utils::ToLocal(lookup);
2575 }
2576
2577
2578 bool NativeWeakMap::Has(Local<Value> v8_key) {
2579   i::Handle<i::JSWeakMap> weak_collection = Utils::OpenHandle(this);
2580   i::Isolate* isolate = weak_collection->GetIsolate();
2581   ENTER_V8(isolate);
2582   i::HandleScope scope(isolate);
2583   i::Handle<i::Object> key = Utils::OpenHandle(*v8_key);
2584   if (!key->IsJSReceiver() && !key->IsSymbol()) {
2585     DCHECK(false);
2586     return false;
2587   }
2588   i::Handle<i::ObjectHashTable> table(
2589       i::ObjectHashTable::cast(weak_collection->table()));
2590   if (!table->IsKey(*key)) {
2591     DCHECK(false);
2592     return false;
2593   }
2594   i::Handle<i::Object> lookup(table->Lookup(key), isolate);
2595   return !lookup->IsTheHole();
2596 }
2597
2598
2599 bool NativeWeakMap::Delete(Local<Value> v8_key) {
2600   i::Handle<i::JSWeakMap> weak_collection = Utils::OpenHandle(this);
2601   i::Isolate* isolate = weak_collection->GetIsolate();
2602   ENTER_V8(isolate);
2603   i::HandleScope scope(isolate);
2604   i::Handle<i::Object> key = Utils::OpenHandle(*v8_key);
2605   if (!key->IsJSReceiver() && !key->IsSymbol()) {
2606     DCHECK(false);
2607     return false;
2608   }
2609   i::Handle<i::ObjectHashTable> table(
2610       i::ObjectHashTable::cast(weak_collection->table()));
2611   if (!table->IsKey(*key)) {
2612     DCHECK(false);
2613     return false;
2614   }
2615   int32_t hash = i::Object::GetOrCreateHash(isolate, key)->value();
2616   return i::JSWeakCollection::Delete(weak_collection, key, hash);
2617 }
2618
2619
2620 // --- J S O N ---
2621
2622 MaybeLocal<Value> JSON::Parse(Isolate* v8_isolate, Local<String> json_string) {
2623   auto isolate = reinterpret_cast<i::Isolate*>(v8_isolate);
2624   PREPARE_FOR_EXECUTION_WITH_ISOLATE(isolate, "JSON::Parse", Value);
2625   i::Handle<i::String> string = Utils::OpenHandle(*json_string);
2626   i::Handle<i::String> source = i::String::Flatten(string);
2627   auto maybe = source->IsSeqOneByteString()
2628                    ? i::JsonParser<true>::Parse(source)
2629                    : i::JsonParser<false>::Parse(source);
2630   Local<Value> result;
2631   has_pending_exception = !ToLocal<Value>(maybe, &result);
2632   RETURN_ON_FAILED_EXECUTION(Value);
2633   RETURN_ESCAPED(result);
2634 }
2635
2636
2637 Local<Value> JSON::Parse(Local<String> json_string) {
2638   auto isolate = reinterpret_cast<v8::Isolate*>(
2639       Utils::OpenHandle(*json_string)->GetIsolate());
2640   RETURN_TO_LOCAL_UNCHECKED(Parse(isolate, json_string), Value);
2641 }
2642
2643
2644 // --- D a t a ---
2645
2646 bool Value::FullIsUndefined() const {
2647   bool result = Utils::OpenHandle(this)->IsUndefined();
2648   DCHECK_EQ(result, QuickIsUndefined());
2649   return result;
2650 }
2651
2652
2653 bool Value::FullIsNull() const {
2654   bool result = Utils::OpenHandle(this)->IsNull();
2655   DCHECK_EQ(result, QuickIsNull());
2656   return result;
2657 }
2658
2659
2660 bool Value::IsTrue() const {
2661   return Utils::OpenHandle(this)->IsTrue();
2662 }
2663
2664
2665 bool Value::IsFalse() const {
2666   return Utils::OpenHandle(this)->IsFalse();
2667 }
2668
2669
2670 bool Value::IsFunction() const {
2671   return Utils::OpenHandle(this)->IsJSFunction();
2672 }
2673
2674
2675 bool Value::IsName() const {
2676   return Utils::OpenHandle(this)->IsName();
2677 }
2678
2679
2680 bool Value::FullIsString() const {
2681   bool result = Utils::OpenHandle(this)->IsString();
2682   DCHECK_EQ(result, QuickIsString());
2683   return result;
2684 }
2685
2686
2687 bool Value::IsSymbol() const {
2688   return Utils::OpenHandle(this)->IsSymbol();
2689 }
2690
2691
2692 bool Value::IsArray() const {
2693   return Utils::OpenHandle(this)->IsJSArray();
2694 }
2695
2696
2697 bool Value::IsArrayBuffer() const {
2698   i::Handle<i::Object> obj = Utils::OpenHandle(this);
2699   return obj->IsJSArrayBuffer() && !i::JSArrayBuffer::cast(*obj)->is_shared();
2700 }
2701
2702
2703 bool Value::IsArrayBufferView() const {
2704   return Utils::OpenHandle(this)->IsJSArrayBufferView();
2705 }
2706
2707
2708 bool Value::IsTypedArray() const {
2709   return Utils::OpenHandle(this)->IsJSTypedArray();
2710 }
2711
2712
2713 #define VALUE_IS_TYPED_ARRAY(Type, typeName, TYPE, ctype, size)              \
2714   bool Value::Is##Type##Array() const {                                      \
2715     i::Handle<i::Object> obj = Utils::OpenHandle(this);                      \
2716     return obj->IsJSTypedArray() &&                                          \
2717            i::JSTypedArray::cast(*obj)->type() == i::kExternal##Type##Array; \
2718   }
2719
2720
2721 TYPED_ARRAYS(VALUE_IS_TYPED_ARRAY)
2722
2723 #undef VALUE_IS_TYPED_ARRAY
2724
2725
2726 bool Value::IsDataView() const {
2727   return Utils::OpenHandle(this)->IsJSDataView();
2728 }
2729
2730
2731 bool Value::IsSharedArrayBuffer() const {
2732   i::Handle<i::Object> obj = Utils::OpenHandle(this);
2733   return obj->IsJSArrayBuffer() && i::JSArrayBuffer::cast(*obj)->is_shared();
2734 }
2735
2736
2737 bool Value::IsObject() const {
2738   return Utils::OpenHandle(this)->IsJSObject();
2739 }
2740
2741
2742 bool Value::IsNumber() const {
2743   return Utils::OpenHandle(this)->IsNumber();
2744 }
2745
2746
2747 #define VALUE_IS_SPECIFIC_TYPE(Type, Class)                            \
2748   bool Value::Is##Type() const {                                       \
2749     i::Handle<i::Object> obj = Utils::OpenHandle(this);                \
2750     if (!obj->IsHeapObject()) return false;                            \
2751     i::Isolate* isolate = i::HeapObject::cast(*obj)->GetIsolate();     \
2752     return obj->HasSpecificClassOf(isolate->heap()->Class##_string()); \
2753   }
2754
2755 VALUE_IS_SPECIFIC_TYPE(ArgumentsObject, Arguments)
2756 VALUE_IS_SPECIFIC_TYPE(BooleanObject, Boolean)
2757 VALUE_IS_SPECIFIC_TYPE(NumberObject, Number)
2758 VALUE_IS_SPECIFIC_TYPE(StringObject, String)
2759 VALUE_IS_SPECIFIC_TYPE(SymbolObject, Symbol)
2760 VALUE_IS_SPECIFIC_TYPE(Date, Date)
2761 VALUE_IS_SPECIFIC_TYPE(Map, Map)
2762 VALUE_IS_SPECIFIC_TYPE(Set, Set)
2763 VALUE_IS_SPECIFIC_TYPE(WeakMap, WeakMap)
2764 VALUE_IS_SPECIFIC_TYPE(WeakSet, WeakSet)
2765
2766 #undef VALUE_IS_SPECIFIC_TYPE
2767
2768
2769 bool Value::IsBoolean() const {
2770   return Utils::OpenHandle(this)->IsBoolean();
2771 }
2772
2773
2774 bool Value::IsExternal() const {
2775   return Utils::OpenHandle(this)->IsExternal();
2776 }
2777
2778
2779 bool Value::IsInt32() const {
2780   i::Handle<i::Object> obj = Utils::OpenHandle(this);
2781   if (obj->IsSmi()) return true;
2782   if (obj->IsNumber()) {
2783     return i::IsInt32Double(obj->Number());
2784   }
2785   return false;
2786 }
2787
2788
2789 bool Value::IsUint32() const {
2790   i::Handle<i::Object> obj = Utils::OpenHandle(this);
2791   if (obj->IsSmi()) return i::Smi::cast(*obj)->value() >= 0;
2792   if (obj->IsNumber()) {
2793     double value = obj->Number();
2794     return !i::IsMinusZero(value) &&
2795         value >= 0 &&
2796         value <= i::kMaxUInt32 &&
2797         value == i::FastUI2D(i::FastD2UI(value));
2798   }
2799   return false;
2800 }
2801
2802
2803 bool Value::IsNativeError() const {
2804   i::Handle<i::Object> obj = Utils::OpenHandle(this);
2805   if (!obj->IsJSObject()) return false;
2806   i::Handle<i::JSObject> js_obj = i::Handle<i::JSObject>::cast(obj);
2807   i::Isolate* isolate = js_obj->GetIsolate();
2808   i::Handle<i::Object> constructor(js_obj->map()->GetConstructor(), isolate);
2809   if (!constructor->IsJSFunction()) return false;
2810   i::Handle<i::JSFunction> function =
2811       i::Handle<i::JSFunction>::cast(constructor);
2812   if (!function->shared()->native()) return false;
2813   return function.is_identical_to(isolate->error_function()) ||
2814          function.is_identical_to(isolate->eval_error_function()) ||
2815          function.is_identical_to(isolate->range_error_function()) ||
2816          function.is_identical_to(isolate->reference_error_function()) ||
2817          function.is_identical_to(isolate->syntax_error_function()) ||
2818          function.is_identical_to(isolate->type_error_function()) ||
2819          function.is_identical_to(isolate->uri_error_function());
2820 }
2821
2822
2823 bool Value::IsRegExp() const {
2824   i::Handle<i::Object> obj = Utils::OpenHandle(this);
2825   return obj->IsJSRegExp();
2826 }
2827
2828
2829 bool Value::IsGeneratorFunction() const {
2830   i::Handle<i::Object> obj = Utils::OpenHandle(this);
2831   if (!obj->IsJSFunction()) return false;
2832   i::Handle<i::JSFunction> func = i::Handle<i::JSFunction>::cast(obj);
2833   return func->shared()->is_generator();
2834 }
2835
2836
2837 bool Value::IsGeneratorObject() const {
2838   return Utils::OpenHandle(this)->IsJSGeneratorObject();
2839 }
2840
2841
2842 bool Value::IsMapIterator() const {
2843   return Utils::OpenHandle(this)->IsJSMapIterator();
2844 }
2845
2846
2847 bool Value::IsSetIterator() const {
2848   return Utils::OpenHandle(this)->IsJSSetIterator();
2849 }
2850
2851
2852 MaybeLocal<String> Value::ToString(Local<Context> context) const {
2853   auto obj = Utils::OpenHandle(this);
2854   if (obj->IsString()) return ToApiHandle<String>(obj);
2855   PREPARE_FOR_EXECUTION(context, "ToString", String);
2856   Local<String> result;
2857   has_pending_exception =
2858       !ToLocal<String>(i::Object::ToString(isolate, obj), &result);
2859   RETURN_ON_FAILED_EXECUTION(String);
2860   RETURN_ESCAPED(result);
2861 }
2862
2863
2864 Local<String> Value::ToString(Isolate* isolate) const {
2865   RETURN_TO_LOCAL_UNCHECKED(ToString(isolate->GetCurrentContext()), String);
2866 }
2867
2868
2869 MaybeLocal<String> Value::ToDetailString(Local<Context> context) const {
2870   auto obj = Utils::OpenHandle(this);
2871   if (obj->IsString()) return ToApiHandle<String>(obj);
2872   PREPARE_FOR_EXECUTION(context, "ToDetailString", String);
2873   Local<String> result;
2874   has_pending_exception =
2875       !ToLocal<String>(i::Execution::ToDetailString(isolate, obj), &result);
2876   RETURN_ON_FAILED_EXECUTION(String);
2877   RETURN_ESCAPED(result);
2878 }
2879
2880
2881 Local<String> Value::ToDetailString(Isolate* isolate) const {
2882   RETURN_TO_LOCAL_UNCHECKED(ToDetailString(isolate->GetCurrentContext()),
2883                             String);
2884 }
2885
2886
2887 MaybeLocal<Object> Value::ToObject(Local<Context> context) const {
2888   auto obj = Utils::OpenHandle(this);
2889   if (obj->IsJSObject()) return ToApiHandle<Object>(obj);
2890   PREPARE_FOR_EXECUTION(context, "ToObject", Object);
2891   Local<Object> result;
2892   has_pending_exception =
2893       !ToLocal<Object>(i::Execution::ToObject(isolate, obj), &result);
2894   RETURN_ON_FAILED_EXECUTION(Object);
2895   RETURN_ESCAPED(result);
2896 }
2897
2898
2899 Local<v8::Object> Value::ToObject(Isolate* isolate) const {
2900   RETURN_TO_LOCAL_UNCHECKED(ToObject(isolate->GetCurrentContext()), Object);
2901 }
2902
2903
2904 MaybeLocal<Boolean> Value::ToBoolean(Local<Context> context) const {
2905   auto obj = Utils::OpenHandle(this);
2906   if (obj->IsBoolean()) return ToApiHandle<Boolean>(obj);
2907   auto isolate = reinterpret_cast<i::Isolate*>(context->GetIsolate());
2908   auto val = isolate->factory()->ToBoolean(obj->BooleanValue());
2909   return ToApiHandle<Boolean>(val);
2910 }
2911
2912
2913 Local<Boolean> Value::ToBoolean(Isolate* v8_isolate) const {
2914   return ToBoolean(v8_isolate->GetCurrentContext()).ToLocalChecked();
2915 }
2916
2917
2918 MaybeLocal<Number> Value::ToNumber(Local<Context> context) const {
2919   auto obj = Utils::OpenHandle(this);
2920   if (obj->IsNumber()) return ToApiHandle<Number>(obj);
2921   PREPARE_FOR_EXECUTION(context, "ToNumber", Number);
2922   Local<Number> result;
2923   has_pending_exception = !ToLocal<Number>(i::Object::ToNumber(obj), &result);
2924   RETURN_ON_FAILED_EXECUTION(Number);
2925   RETURN_ESCAPED(result);
2926 }
2927
2928
2929 Local<Number> Value::ToNumber(Isolate* isolate) const {
2930   RETURN_TO_LOCAL_UNCHECKED(ToNumber(isolate->GetCurrentContext()), Number);
2931 }
2932
2933
2934 MaybeLocal<Integer> Value::ToInteger(Local<Context> context) const {
2935   auto obj = Utils::OpenHandle(this);
2936   if (obj->IsSmi()) return ToApiHandle<Integer>(obj);
2937   PREPARE_FOR_EXECUTION(context, "ToInteger", Integer);
2938   Local<Integer> result;
2939   has_pending_exception =
2940       !ToLocal<Integer>(i::Execution::ToInteger(isolate, obj), &result);
2941   RETURN_ON_FAILED_EXECUTION(Integer);
2942   RETURN_ESCAPED(result);
2943 }
2944
2945
2946 Local<Integer> Value::ToInteger(Isolate* isolate) const {
2947   RETURN_TO_LOCAL_UNCHECKED(ToInteger(isolate->GetCurrentContext()), Integer);
2948 }
2949
2950
2951 MaybeLocal<Int32> Value::ToInt32(Local<Context> context) const {
2952   auto obj = Utils::OpenHandle(this);
2953   if (obj->IsSmi()) return ToApiHandle<Int32>(obj);
2954   Local<Int32> result;
2955   PREPARE_FOR_EXECUTION(context, "ToInt32", Int32);
2956   has_pending_exception =
2957       !ToLocal<Int32>(i::Execution::ToInt32(isolate, obj), &result);
2958   RETURN_ON_FAILED_EXECUTION(Int32);
2959   RETURN_ESCAPED(result);
2960 }
2961
2962
2963 Local<Int32> Value::ToInt32(Isolate* isolate) const {
2964   RETURN_TO_LOCAL_UNCHECKED(ToInt32(isolate->GetCurrentContext()), Int32);
2965 }
2966
2967
2968 MaybeLocal<Uint32> Value::ToUint32(Local<Context> context) const {
2969   auto obj = Utils::OpenHandle(this);
2970   if (obj->IsSmi()) return ToApiHandle<Uint32>(obj);
2971   Local<Uint32> result;
2972   PREPARE_FOR_EXECUTION(context, "ToUInt32", Uint32);
2973   has_pending_exception =
2974       !ToLocal<Uint32>(i::Execution::ToUint32(isolate, obj), &result);
2975   RETURN_ON_FAILED_EXECUTION(Uint32);
2976   RETURN_ESCAPED(result);
2977 }
2978
2979
2980 Local<Uint32> Value::ToUint32(Isolate* isolate) const {
2981   RETURN_TO_LOCAL_UNCHECKED(ToUint32(isolate->GetCurrentContext()), Uint32);
2982 }
2983
2984
2985 void i::Internals::CheckInitializedImpl(v8::Isolate* external_isolate) {
2986   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(external_isolate);
2987   Utils::ApiCheck(isolate != NULL &&
2988                   !isolate->IsDead(),
2989                   "v8::internal::Internals::CheckInitialized()",
2990                   "Isolate is not initialized or V8 has died");
2991 }
2992
2993
2994 void External::CheckCast(v8::Value* that) {
2995   Utils::ApiCheck(Utils::OpenHandle(that)->IsExternal(),
2996                   "v8::External::Cast()",
2997                   "Could not convert to external");
2998 }
2999
3000
3001 void v8::Object::CheckCast(Value* that) {
3002   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3003   Utils::ApiCheck(obj->IsJSObject(),
3004                   "v8::Object::Cast()",
3005                   "Could not convert to object");
3006 }
3007
3008
3009 void v8::Function::CheckCast(Value* that) {
3010   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3011   Utils::ApiCheck(obj->IsJSFunction(),
3012                   "v8::Function::Cast()",
3013                   "Could not convert to function");
3014 }
3015
3016
3017 void v8::Boolean::CheckCast(v8::Value* that) {
3018   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3019   Utils::ApiCheck(obj->IsBoolean(),
3020                   "v8::Boolean::Cast()",
3021                   "Could not convert to boolean");
3022 }
3023
3024
3025 void v8::Name::CheckCast(v8::Value* that) {
3026   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3027   Utils::ApiCheck(obj->IsName(),
3028                   "v8::Name::Cast()",
3029                   "Could not convert to name");
3030 }
3031
3032
3033 void v8::String::CheckCast(v8::Value* that) {
3034   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3035   Utils::ApiCheck(obj->IsString(),
3036                   "v8::String::Cast()",
3037                   "Could not convert to string");
3038 }
3039
3040
3041 void v8::Symbol::CheckCast(v8::Value* that) {
3042   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3043   Utils::ApiCheck(obj->IsSymbol(),
3044                   "v8::Symbol::Cast()",
3045                   "Could not convert to symbol");
3046 }
3047
3048
3049 void v8::Number::CheckCast(v8::Value* that) {
3050   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3051   Utils::ApiCheck(obj->IsNumber(),
3052                   "v8::Number::Cast()",
3053                   "Could not convert to number");
3054 }
3055
3056
3057 void v8::Integer::CheckCast(v8::Value* that) {
3058   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3059   Utils::ApiCheck(obj->IsNumber(),
3060                   "v8::Integer::Cast()",
3061                   "Could not convert to number");
3062 }
3063
3064
3065 void v8::Int32::CheckCast(v8::Value* that) {
3066   Utils::ApiCheck(that->IsInt32(), "v8::Int32::Cast()",
3067                   "Could not convert to 32-bit signed integer");
3068 }
3069
3070
3071 void v8::Uint32::CheckCast(v8::Value* that) {
3072   Utils::ApiCheck(that->IsUint32(), "v8::Uint32::Cast()",
3073                   "Could not convert to 32-bit unsigned integer");
3074 }
3075
3076
3077 void v8::Array::CheckCast(Value* that) {
3078   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3079   Utils::ApiCheck(obj->IsJSArray(),
3080                   "v8::Array::Cast()",
3081                   "Could not convert to array");
3082 }
3083
3084
3085 void v8::Map::CheckCast(Value* that) {
3086   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3087   Utils::ApiCheck(obj->IsJSMap(), "v8::Map::Cast()",
3088                   "Could not convert to Map");
3089 }
3090
3091
3092 void v8::Set::CheckCast(Value* that) {
3093   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3094   Utils::ApiCheck(obj->IsJSSet(), "v8::Set::Cast()",
3095                   "Could not convert to Set");
3096 }
3097
3098
3099 void v8::Promise::CheckCast(Value* that) {
3100   Utils::ApiCheck(that->IsPromise(),
3101                   "v8::Promise::Cast()",
3102                   "Could not convert to promise");
3103 }
3104
3105
3106 void v8::Promise::Resolver::CheckCast(Value* that) {
3107   Utils::ApiCheck(that->IsPromise(),
3108                   "v8::Promise::Resolver::Cast()",
3109                   "Could not convert to promise resolver");
3110 }
3111
3112
3113 void v8::ArrayBuffer::CheckCast(Value* that) {
3114   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3115   Utils::ApiCheck(
3116       obj->IsJSArrayBuffer() && !i::JSArrayBuffer::cast(*obj)->is_shared(),
3117       "v8::ArrayBuffer::Cast()", "Could not convert to ArrayBuffer");
3118 }
3119
3120
3121 void v8::ArrayBufferView::CheckCast(Value* that) {
3122   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3123   Utils::ApiCheck(obj->IsJSArrayBufferView(),
3124                   "v8::ArrayBufferView::Cast()",
3125                   "Could not convert to ArrayBufferView");
3126 }
3127
3128
3129 void v8::TypedArray::CheckCast(Value* that) {
3130   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3131   Utils::ApiCheck(obj->IsJSTypedArray(),
3132                   "v8::TypedArray::Cast()",
3133                   "Could not convert to TypedArray");
3134 }
3135
3136
3137 #define CHECK_TYPED_ARRAY_CAST(Type, typeName, TYPE, ctype, size)             \
3138   void v8::Type##Array::CheckCast(Value* that) {                              \
3139     i::Handle<i::Object> obj = Utils::OpenHandle(that);                       \
3140     Utils::ApiCheck(                                                          \
3141         obj->IsJSTypedArray() &&                                              \
3142             i::JSTypedArray::cast(*obj)->type() == i::kExternal##Type##Array, \
3143         "v8::" #Type "Array::Cast()", "Could not convert to " #Type "Array"); \
3144   }
3145
3146
3147 TYPED_ARRAYS(CHECK_TYPED_ARRAY_CAST)
3148
3149 #undef CHECK_TYPED_ARRAY_CAST
3150
3151
3152 void v8::DataView::CheckCast(Value* that) {
3153   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3154   Utils::ApiCheck(obj->IsJSDataView(),
3155                   "v8::DataView::Cast()",
3156                   "Could not convert to DataView");
3157 }
3158
3159
3160 void v8::SharedArrayBuffer::CheckCast(Value* that) {
3161   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3162   Utils::ApiCheck(
3163       obj->IsJSArrayBuffer() && i::JSArrayBuffer::cast(*obj)->is_shared(),
3164       "v8::SharedArrayBuffer::Cast()",
3165       "Could not convert to SharedArrayBuffer");
3166 }
3167
3168
3169 void v8::Date::CheckCast(v8::Value* that) {
3170   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3171   i::Isolate* isolate = NULL;
3172   if (obj->IsHeapObject()) isolate = i::HeapObject::cast(*obj)->GetIsolate();
3173   Utils::ApiCheck(isolate != NULL &&
3174                   obj->HasSpecificClassOf(isolate->heap()->Date_string()),
3175                   "v8::Date::Cast()",
3176                   "Could not convert to date");
3177 }
3178
3179
3180 void v8::StringObject::CheckCast(v8::Value* that) {
3181   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3182   i::Isolate* isolate = NULL;
3183   if (obj->IsHeapObject()) isolate = i::HeapObject::cast(*obj)->GetIsolate();
3184   Utils::ApiCheck(isolate != NULL &&
3185                   obj->HasSpecificClassOf(isolate->heap()->String_string()),
3186                   "v8::StringObject::Cast()",
3187                   "Could not convert to StringObject");
3188 }
3189
3190
3191 void v8::SymbolObject::CheckCast(v8::Value* that) {
3192   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3193   i::Isolate* isolate = NULL;
3194   if (obj->IsHeapObject()) isolate = i::HeapObject::cast(*obj)->GetIsolate();
3195   Utils::ApiCheck(isolate != NULL &&
3196                   obj->HasSpecificClassOf(isolate->heap()->Symbol_string()),
3197                   "v8::SymbolObject::Cast()",
3198                   "Could not convert to SymbolObject");
3199 }
3200
3201
3202 void v8::NumberObject::CheckCast(v8::Value* that) {
3203   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3204   i::Isolate* isolate = NULL;
3205   if (obj->IsHeapObject()) isolate = i::HeapObject::cast(*obj)->GetIsolate();
3206   Utils::ApiCheck(isolate != NULL &&
3207                   obj->HasSpecificClassOf(isolate->heap()->Number_string()),
3208                   "v8::NumberObject::Cast()",
3209                   "Could not convert to NumberObject");
3210 }
3211
3212
3213 void v8::BooleanObject::CheckCast(v8::Value* that) {
3214   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3215   i::Isolate* isolate = NULL;
3216   if (obj->IsHeapObject()) isolate = i::HeapObject::cast(*obj)->GetIsolate();
3217   Utils::ApiCheck(isolate != NULL &&
3218                   obj->HasSpecificClassOf(isolate->heap()->Boolean_string()),
3219                   "v8::BooleanObject::Cast()",
3220                   "Could not convert to BooleanObject");
3221 }
3222
3223
3224 void v8::RegExp::CheckCast(v8::Value* that) {
3225   i::Handle<i::Object> obj = Utils::OpenHandle(that);
3226   Utils::ApiCheck(obj->IsJSRegExp(),
3227                   "v8::RegExp::Cast()",
3228                   "Could not convert to regular expression");
3229 }
3230
3231
3232 Maybe<bool> Value::BooleanValue(Local<Context> context) const {
3233   return Just(Utils::OpenHandle(this)->BooleanValue());
3234 }
3235
3236
3237 bool Value::BooleanValue() const {
3238   return Utils::OpenHandle(this)->BooleanValue();
3239 }
3240
3241
3242 Maybe<double> Value::NumberValue(Local<Context> context) const {
3243   auto obj = Utils::OpenHandle(this);
3244   if (obj->IsNumber()) return Just(obj->Number());
3245   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "NumberValue", double);
3246   i::Handle<i::Object> num;
3247   has_pending_exception = !i::Object::ToNumber(obj).ToHandle(&num);
3248   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(double);
3249   return Just(num->Number());
3250 }
3251
3252
3253 double Value::NumberValue() const {
3254   auto obj = Utils::OpenHandle(this);
3255   if (obj->IsNumber()) return obj->Number();
3256   return NumberValue(ContextFromHeapObject(obj))
3257       .FromMaybe(std::numeric_limits<double>::quiet_NaN());
3258 }
3259
3260
3261 Maybe<int64_t> Value::IntegerValue(Local<Context> context) const {
3262   auto obj = Utils::OpenHandle(this);
3263   i::Handle<i::Object> num;
3264   if (obj->IsNumber()) {
3265     num = obj;
3266   } else {
3267     PREPARE_FOR_EXECUTION_PRIMITIVE(context, "IntegerValue", int64_t);
3268     has_pending_exception =
3269         !i::Execution::ToInteger(isolate, obj).ToHandle(&num);
3270     RETURN_ON_FAILED_EXECUTION_PRIMITIVE(int64_t);
3271   }
3272   return Just(num->IsSmi() ? static_cast<int64_t>(i::Smi::cast(*num)->value())
3273                            : static_cast<int64_t>(num->Number()));
3274 }
3275
3276
3277 int64_t Value::IntegerValue() const {
3278   auto obj = Utils::OpenHandle(this);
3279   if (obj->IsNumber()) {
3280     if (obj->IsSmi()) {
3281       return i::Smi::cast(*obj)->value();
3282     } else {
3283       return static_cast<int64_t>(obj->Number());
3284     }
3285   }
3286   return IntegerValue(ContextFromHeapObject(obj)).FromMaybe(0);
3287 }
3288
3289
3290 Maybe<int32_t> Value::Int32Value(Local<Context> context) const {
3291   auto obj = Utils::OpenHandle(this);
3292   if (obj->IsNumber()) return Just(NumberToInt32(*obj));
3293   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "Int32Value", int32_t);
3294   i::Handle<i::Object> num;
3295   has_pending_exception = !i::Execution::ToInt32(isolate, obj).ToHandle(&num);
3296   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(int32_t);
3297   return Just(num->IsSmi() ? i::Smi::cast(*num)->value()
3298                            : static_cast<int32_t>(num->Number()));
3299 }
3300
3301
3302 int32_t Value::Int32Value() const {
3303   auto obj = Utils::OpenHandle(this);
3304   if (obj->IsNumber()) return NumberToInt32(*obj);
3305   return Int32Value(ContextFromHeapObject(obj)).FromMaybe(0);
3306 }
3307
3308
3309 Maybe<uint32_t> Value::Uint32Value(Local<Context> context) const {
3310   auto obj = Utils::OpenHandle(this);
3311   if (obj->IsNumber()) return Just(NumberToUint32(*obj));
3312   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "Uint32Value", uint32_t);
3313   i::Handle<i::Object> num;
3314   has_pending_exception = !i::Execution::ToUint32(isolate, obj).ToHandle(&num);
3315   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(uint32_t);
3316   return Just(num->IsSmi() ? static_cast<uint32_t>(i::Smi::cast(*num)->value())
3317                            : static_cast<uint32_t>(num->Number()));
3318 }
3319
3320
3321 uint32_t Value::Uint32Value() const {
3322   auto obj = Utils::OpenHandle(this);
3323   if (obj->IsNumber()) return NumberToUint32(*obj);
3324   return Uint32Value(ContextFromHeapObject(obj)).FromMaybe(0);
3325 }
3326
3327
3328 MaybeLocal<Uint32> Value::ToArrayIndex(Local<Context> context) const {
3329   auto self = Utils::OpenHandle(this);
3330   if (self->IsSmi()) {
3331     if (i::Smi::cast(*self)->value() >= 0) return Utils::Uint32ToLocal(self);
3332     return Local<Uint32>();
3333   }
3334   PREPARE_FOR_EXECUTION(context, "ToArrayIndex", Uint32);
3335   i::Handle<i::Object> string_obj;
3336   has_pending_exception =
3337       !i::Object::ToString(isolate, self).ToHandle(&string_obj);
3338   RETURN_ON_FAILED_EXECUTION(Uint32);
3339   i::Handle<i::String> str = i::Handle<i::String>::cast(string_obj);
3340   uint32_t index;
3341   if (str->AsArrayIndex(&index)) {
3342     i::Handle<i::Object> value;
3343     if (index <= static_cast<uint32_t>(i::Smi::kMaxValue)) {
3344       value = i::Handle<i::Object>(i::Smi::FromInt(index), isolate);
3345     } else {
3346       value = isolate->factory()->NewNumber(index);
3347     }
3348     RETURN_ESCAPED(Utils::Uint32ToLocal(value));
3349   }
3350   return Local<Uint32>();
3351 }
3352
3353
3354 Local<Uint32> Value::ToArrayIndex() const {
3355   auto self = Utils::OpenHandle(this);
3356   if (self->IsSmi()) {
3357     if (i::Smi::cast(*self)->value() >= 0) return Utils::Uint32ToLocal(self);
3358     return Local<Uint32>();
3359   }
3360   auto context = ContextFromHeapObject(self);
3361   RETURN_TO_LOCAL_UNCHECKED(ToArrayIndex(context), Uint32);
3362 }
3363
3364
3365 Maybe<bool> Value::Equals(Local<Context> context, Local<Value> that) const {
3366   auto self = Utils::OpenHandle(this);
3367   auto other = Utils::OpenHandle(*that);
3368   return i::Object::Equals(self, other);
3369 }
3370
3371
3372 bool Value::Equals(Local<Value> that) const {
3373   auto self = Utils::OpenHandle(this);
3374   auto other = Utils::OpenHandle(*that);
3375   if (self->IsSmi() && other->IsSmi()) {
3376     return self->Number() == other->Number();
3377   }
3378   if (self->IsJSObject() && other->IsJSObject()) {
3379     return *self == *other;
3380   }
3381   auto heap_object = self->IsSmi() ? other : self;
3382   auto context = ContextFromHeapObject(heap_object);
3383   return Equals(context, that).FromMaybe(false);
3384 }
3385
3386
3387 bool Value::StrictEquals(Local<Value> that) const {
3388   auto self = Utils::OpenHandle(this);
3389   auto other = Utils::OpenHandle(*that);
3390   return self->StrictEquals(*other);
3391 }
3392
3393
3394 bool Value::SameValue(Local<Value> that) const {
3395   auto self = Utils::OpenHandle(this);
3396   auto other = Utils::OpenHandle(*that);
3397   return self->SameValue(*other);
3398 }
3399
3400
3401 Maybe<bool> v8::Object::Set(v8::Local<v8::Context> context,
3402                             v8::Local<Value> key, v8::Local<Value> value) {
3403   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "v8::Object::Set()", bool);
3404   auto self = Utils::OpenHandle(this);
3405   auto key_obj = Utils::OpenHandle(*key);
3406   auto value_obj = Utils::OpenHandle(*value);
3407   has_pending_exception =
3408       i::Runtime::SetObjectProperty(isolate, self, key_obj, value_obj,
3409                                     i::SLOPPY).is_null();
3410   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
3411   return Just(true);
3412 }
3413
3414
3415 bool v8::Object::Set(v8::Local<Value> key, v8::Local<Value> value) {
3416   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
3417   return Set(context, key, value).FromMaybe(false);
3418 }
3419
3420
3421 Maybe<bool> v8::Object::Set(v8::Local<v8::Context> context, uint32_t index,
3422                             v8::Local<Value> value) {
3423   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "v8::Object::Set()", bool);
3424   auto self = Utils::OpenHandle(this);
3425   auto value_obj = Utils::OpenHandle(*value);
3426   has_pending_exception = i::Object::SetElement(isolate, self, index, value_obj,
3427                                                 i::SLOPPY).is_null();
3428   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
3429   return Just(true);
3430 }
3431
3432
3433 bool v8::Object::Set(uint32_t index, v8::Local<Value> value) {
3434   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
3435   return Set(context, index, value).FromMaybe(false);
3436 }
3437
3438
3439 Maybe<bool> v8::Object::CreateDataProperty(v8::Local<v8::Context> context,
3440                                            v8::Local<Name> key,
3441                                            v8::Local<Value> value) {
3442   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "v8::Object::CreateDataProperty()",
3443                                   bool);
3444   i::Handle<i::JSObject> self = Utils::OpenHandle(this);
3445   i::Handle<i::Name> key_obj = Utils::OpenHandle(*key);
3446   i::Handle<i::Object> value_obj = Utils::OpenHandle(*value);
3447
3448   i::LookupIterator it = i::LookupIterator::PropertyOrElement(
3449       isolate, self, key_obj, i::LookupIterator::OWN);
3450   Maybe<bool> result = i::JSObject::CreateDataProperty(&it, value_obj);
3451   has_pending_exception = result.IsNothing();
3452   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
3453   return result;
3454 }
3455
3456
3457 Maybe<bool> v8::Object::CreateDataProperty(v8::Local<v8::Context> context,
3458                                            uint32_t index,
3459                                            v8::Local<Value> value) {
3460   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "v8::Object::CreateDataProperty()",
3461                                   bool);
3462   i::Handle<i::JSObject> self = Utils::OpenHandle(this);
3463   i::Handle<i::Object> value_obj = Utils::OpenHandle(*value);
3464
3465   i::LookupIterator it(isolate, self, index, i::LookupIterator::OWN);
3466   Maybe<bool> result = i::JSObject::CreateDataProperty(&it, value_obj);
3467   has_pending_exception = result.IsNothing();
3468   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
3469   return result;
3470 }
3471
3472
3473 Maybe<bool> v8::Object::DefineOwnProperty(v8::Local<v8::Context> context,
3474                                           v8::Local<Name> key,
3475                                           v8::Local<Value> value,
3476                                           v8::PropertyAttribute attributes) {
3477   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "v8::Object::DefineOwnProperty()",
3478                                   bool);
3479   auto self = Utils::OpenHandle(this);
3480   auto key_obj = Utils::OpenHandle(*key);
3481   auto value_obj = Utils::OpenHandle(*value);
3482
3483   if (self->IsAccessCheckNeeded() && !isolate->MayAccess(self)) {
3484     isolate->ReportFailedAccessCheck(self);
3485     return Nothing<bool>();
3486   }
3487
3488   i::Handle<i::FixedArray> desc = isolate->factory()->NewFixedArray(3);
3489   desc->set(0, isolate->heap()->ToBoolean(!(attributes & v8::ReadOnly)));
3490   desc->set(1, isolate->heap()->ToBoolean(!(attributes & v8::DontEnum)));
3491   desc->set(2, isolate->heap()->ToBoolean(!(attributes & v8::DontDelete)));
3492   i::Handle<i::JSArray> desc_array =
3493       isolate->factory()->NewJSArrayWithElements(desc, i::FAST_ELEMENTS, 3);
3494   i::Handle<i::Object> args[] = {self, key_obj, value_obj, desc_array};
3495   i::Handle<i::Object> undefined = isolate->factory()->undefined_value();
3496   i::Handle<i::JSFunction> fun = isolate->object_define_own_property();
3497   i::Handle<i::Object> result;
3498   has_pending_exception =
3499       !i::Execution::Call(isolate, fun, undefined, arraysize(args), args)
3500            .ToHandle(&result);
3501   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
3502   return Just(result->BooleanValue());
3503 }
3504
3505
3506 MUST_USE_RESULT
3507 static i::MaybeHandle<i::Object> DefineObjectProperty(
3508     i::Handle<i::JSObject> js_object, i::Handle<i::Object> key,
3509     i::Handle<i::Object> value, PropertyAttributes attrs) {
3510   i::Isolate* isolate = js_object->GetIsolate();
3511   // Check if the given key is an array index.
3512   uint32_t index = 0;
3513   if (key->ToArrayIndex(&index)) {
3514     return i::JSObject::SetOwnElementIgnoreAttributes(js_object, index, value,
3515                                                       attrs);
3516   }
3517
3518   i::Handle<i::Name> name;
3519   ASSIGN_RETURN_ON_EXCEPTION_VALUE(isolate, name,
3520                                    i::Object::ToName(isolate, key),
3521                                    i::MaybeHandle<i::Object>());
3522
3523   return i::JSObject::DefinePropertyOrElementIgnoreAttributes(js_object, name,
3524                                                               value, attrs);
3525 }
3526
3527
3528 Maybe<bool> v8::Object::ForceSet(v8::Local<v8::Context> context,
3529                                  v8::Local<Value> key, v8::Local<Value> value,
3530                                  v8::PropertyAttribute attribs) {
3531   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "v8::Object::Set()", bool);
3532   auto self = Utils::OpenHandle(this);
3533   auto key_obj = Utils::OpenHandle(*key);
3534   auto value_obj = Utils::OpenHandle(*value);
3535   has_pending_exception =
3536       DefineObjectProperty(self, key_obj, value_obj,
3537                            static_cast<PropertyAttributes>(attribs)).is_null();
3538   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
3539   return Just(true);
3540 }
3541
3542
3543 bool v8::Object::ForceSet(v8::Local<Value> key, v8::Local<Value> value,
3544                           v8::PropertyAttribute attribs) {
3545   i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate();
3546   PREPARE_FOR_EXECUTION_GENERIC(isolate, Local<Context>(),
3547                                 "v8::Object::ForceSet", false, i::HandleScope,
3548                                 false);
3549   i::Handle<i::JSObject> self = Utils::OpenHandle(this);
3550   i::Handle<i::Object> key_obj = Utils::OpenHandle(*key);
3551   i::Handle<i::Object> value_obj = Utils::OpenHandle(*value);
3552   has_pending_exception =
3553       DefineObjectProperty(self, key_obj, value_obj,
3554                            static_cast<PropertyAttributes>(attribs)).is_null();
3555   EXCEPTION_BAILOUT_CHECK_SCOPED(isolate, false);
3556   return true;
3557 }
3558
3559
3560 MaybeLocal<Value> v8::Object::Get(Local<v8::Context> context,
3561                                   Local<Value> key) {
3562   PREPARE_FOR_EXECUTION(context, "v8::Object::Get()", Value);
3563   auto self = Utils::OpenHandle(this);
3564   auto key_obj = Utils::OpenHandle(*key);
3565   i::Handle<i::Object> result;
3566   has_pending_exception =
3567       !i::Runtime::GetObjectProperty(isolate, self, key_obj).ToHandle(&result);
3568   RETURN_ON_FAILED_EXECUTION(Value);
3569   RETURN_ESCAPED(Utils::ToLocal(result));
3570 }
3571
3572
3573 Local<Value> v8::Object::Get(v8::Local<Value> key) {
3574   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
3575   RETURN_TO_LOCAL_UNCHECKED(Get(context, key), Value);
3576 }
3577
3578
3579 MaybeLocal<Value> v8::Object::Get(Local<Context> context, uint32_t index) {
3580   PREPARE_FOR_EXECUTION(context, "v8::Object::Get()", Value);
3581   auto self = Utils::OpenHandle(this);
3582   i::Handle<i::Object> result;
3583   has_pending_exception =
3584       !i::Object::GetElement(isolate, self, index).ToHandle(&result);
3585   RETURN_ON_FAILED_EXECUTION(Value);
3586   RETURN_ESCAPED(Utils::ToLocal(result));
3587 }
3588
3589
3590 Local<Value> v8::Object::Get(uint32_t index) {
3591   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
3592   RETURN_TO_LOCAL_UNCHECKED(Get(context, index), Value);
3593 }
3594
3595
3596 Maybe<PropertyAttribute> v8::Object::GetPropertyAttributes(
3597     Local<Context> context, Local<Value> key) {
3598   PREPARE_FOR_EXECUTION_PRIMITIVE(
3599       context, "v8::Object::GetPropertyAttributes()", PropertyAttribute);
3600   auto self = Utils::OpenHandle(this);
3601   auto key_obj = Utils::OpenHandle(*key);
3602   if (!key_obj->IsName()) {
3603     has_pending_exception =
3604         !i::Object::ToString(isolate, key_obj).ToHandle(&key_obj);
3605     RETURN_ON_FAILED_EXECUTION_PRIMITIVE(PropertyAttribute);
3606   }
3607   auto key_name = i::Handle<i::Name>::cast(key_obj);
3608   auto result = i::JSReceiver::GetPropertyAttributes(self, key_name);
3609   has_pending_exception = result.IsNothing();
3610   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(PropertyAttribute);
3611   if (result.FromJust() == ABSENT) {
3612     return Just(static_cast<PropertyAttribute>(NONE));
3613   }
3614   return Just(static_cast<PropertyAttribute>(result.FromJust()));
3615 }
3616
3617
3618 PropertyAttribute v8::Object::GetPropertyAttributes(v8::Local<Value> key) {
3619   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
3620   return GetPropertyAttributes(context, key)
3621       .FromMaybe(static_cast<PropertyAttribute>(NONE));
3622 }
3623
3624
3625 MaybeLocal<Value> v8::Object::GetOwnPropertyDescriptor(Local<Context> context,
3626                                                        Local<String> key) {
3627   PREPARE_FOR_EXECUTION(context, "v8::Object::GetOwnPropertyDescriptor()",
3628                         Value);
3629   auto obj = Utils::OpenHandle(this);
3630   auto key_name = Utils::OpenHandle(*key);
3631   i::Handle<i::Object> args[] = { obj, key_name };
3632   i::Handle<i::JSFunction> fun = isolate->object_get_own_property_descriptor();
3633   i::Handle<i::Object> undefined = isolate->factory()->undefined_value();
3634   i::Handle<i::Object> result;
3635   has_pending_exception =
3636       !i::Execution::Call(isolate, fun, undefined, arraysize(args), args)
3637            .ToHandle(&result);
3638   RETURN_ON_FAILED_EXECUTION(Value);
3639   RETURN_ESCAPED(Utils::ToLocal(result));
3640 }
3641
3642
3643 Local<Value> v8::Object::GetOwnPropertyDescriptor(Local<String> key) {
3644   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
3645   RETURN_TO_LOCAL_UNCHECKED(GetOwnPropertyDescriptor(context, key), Value);
3646 }
3647
3648
3649 Local<Value> v8::Object::GetPrototype() {
3650   auto isolate = Utils::OpenHandle(this)->GetIsolate();
3651   auto self = Utils::OpenHandle(this);
3652   i::PrototypeIterator iter(isolate, self);
3653   return Utils::ToLocal(i::PrototypeIterator::GetCurrent(iter));
3654 }
3655
3656
3657 Maybe<bool> v8::Object::SetPrototype(Local<Context> context,
3658                                      Local<Value> value) {
3659   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "v8::Object::SetPrototype()", bool);
3660   auto self = Utils::OpenHandle(this);
3661   auto value_obj = Utils::OpenHandle(*value);
3662   // We do not allow exceptions thrown while setting the prototype
3663   // to propagate outside.
3664   TryCatch try_catch(reinterpret_cast<v8::Isolate*>(isolate));
3665   auto result = i::JSObject::SetPrototype(self, value_obj, false);
3666   has_pending_exception = result.is_null();
3667   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
3668   return Just(true);
3669 }
3670
3671
3672 bool v8::Object::SetPrototype(Local<Value> value) {
3673   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
3674   return SetPrototype(context, value).FromMaybe(false);
3675 }
3676
3677
3678 Local<Object> v8::Object::FindInstanceInPrototypeChain(
3679     v8::Local<FunctionTemplate> tmpl) {
3680   auto isolate = Utils::OpenHandle(this)->GetIsolate();
3681   i::PrototypeIterator iter(isolate, *Utils::OpenHandle(this),
3682                             i::PrototypeIterator::START_AT_RECEIVER);
3683   auto tmpl_info = *Utils::OpenHandle(*tmpl);
3684   while (!tmpl_info->IsTemplateFor(iter.GetCurrent())) {
3685     iter.Advance();
3686     if (iter.IsAtEnd()) {
3687       return Local<Object>();
3688     }
3689   }
3690   return Utils::ToLocal(i::handle(iter.GetCurrent<i::JSObject>(), isolate));
3691 }
3692
3693
3694 MaybeLocal<Array> v8::Object::GetPropertyNames(Local<Context> context) {
3695   PREPARE_FOR_EXECUTION(context, "v8::Object::GetPropertyNames()", Array);
3696   auto self = Utils::OpenHandle(this);
3697   i::Handle<i::FixedArray> value;
3698   has_pending_exception = !i::JSReceiver::GetKeys(
3699       self, i::JSReceiver::INCLUDE_PROTOS).ToHandle(&value);
3700   RETURN_ON_FAILED_EXECUTION(Array);
3701   // Because we use caching to speed up enumeration it is important
3702   // to never change the result of the basic enumeration function so
3703   // we clone the result.
3704   auto elms = isolate->factory()->CopyFixedArray(value);
3705   auto result = isolate->factory()->NewJSArrayWithElements(elms);
3706   RETURN_ESCAPED(Utils::ToLocal(result));
3707 }
3708
3709
3710 Local<Array> v8::Object::GetPropertyNames() {
3711   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
3712   RETURN_TO_LOCAL_UNCHECKED(GetPropertyNames(context), Array);
3713 }
3714
3715
3716 MaybeLocal<Array> v8::Object::GetOwnPropertyNames(Local<Context> context) {
3717   PREPARE_FOR_EXECUTION(context, "v8::Object::GetOwnPropertyNames()", Array);
3718   auto self = Utils::OpenHandle(this);
3719   i::Handle<i::FixedArray> value;
3720   has_pending_exception = !i::JSReceiver::GetKeys(
3721       self, i::JSReceiver::OWN_ONLY).ToHandle(&value);
3722   RETURN_ON_FAILED_EXECUTION(Array);
3723   // Because we use caching to speed up enumeration it is important
3724   // to never change the result of the basic enumeration function so
3725   // we clone the result.
3726   auto elms = isolate->factory()->CopyFixedArray(value);
3727   auto result = isolate->factory()->NewJSArrayWithElements(elms);
3728   RETURN_ESCAPED(Utils::ToLocal(result));
3729 }
3730
3731
3732 Local<Array> v8::Object::GetOwnPropertyNames() {
3733   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
3734   RETURN_TO_LOCAL_UNCHECKED(GetOwnPropertyNames(context), Array);
3735 }
3736
3737
3738 MaybeLocal<String> v8::Object::ObjectProtoToString(Local<Context> context) {
3739   auto self = Utils::OpenHandle(this);
3740   auto isolate = self->GetIsolate();
3741   auto v8_isolate = reinterpret_cast<v8::Isolate*>(isolate);
3742   i::Handle<i::Object> name(self->class_name(), isolate);
3743   i::Handle<i::Object> tag;
3744
3745   // Native implementation of Object.prototype.toString (v8natives.js):
3746   //   var c = %_ClassOf(this);
3747   //   if (c === 'Arguments') c  = 'Object';
3748   //   return "[object " + c + "]";
3749
3750   if (!name->IsString()) {
3751     return v8::String::NewFromUtf8(v8_isolate, "[object ]",
3752                                    NewStringType::kNormal);
3753   }
3754   auto class_name = i::Handle<i::String>::cast(name);
3755   if (i::String::Equals(class_name, isolate->factory()->Arguments_string())) {
3756     return v8::String::NewFromUtf8(v8_isolate, "[object Object]",
3757                                    NewStringType::kNormal);
3758   }
3759   if (internal::FLAG_harmony_tostring) {
3760     PREPARE_FOR_EXECUTION(context, "v8::Object::ObjectProtoToString()", String);
3761     auto toStringTag = isolate->factory()->to_string_tag_symbol();
3762     has_pending_exception = !i::Runtime::GetObjectProperty(
3763                                  isolate, self, toStringTag).ToHandle(&tag);
3764     RETURN_ON_FAILED_EXECUTION(String);
3765     if (tag->IsString()) {
3766       class_name = Utils::OpenHandle(*handle_scope.Escape(
3767           Utils::ToLocal(i::Handle<i::String>::cast(tag))));
3768     }
3769   }
3770   const char* prefix = "[object ";
3771   Local<String> str = Utils::ToLocal(class_name);
3772   const char* postfix = "]";
3773
3774   int prefix_len = i::StrLength(prefix);
3775   int str_len = str->Utf8Length();
3776   int postfix_len = i::StrLength(postfix);
3777
3778   int buf_len = prefix_len + str_len + postfix_len;
3779   i::ScopedVector<char> buf(buf_len);
3780
3781   // Write prefix.
3782   char* ptr = buf.start();
3783   i::MemCopy(ptr, prefix, prefix_len * v8::internal::kCharSize);
3784   ptr += prefix_len;
3785
3786   // Write real content.
3787   str->WriteUtf8(ptr, str_len);
3788   ptr += str_len;
3789
3790   // Write postfix.
3791   i::MemCopy(ptr, postfix, postfix_len * v8::internal::kCharSize);
3792
3793   // Copy the buffer into a heap-allocated string and return it.
3794   return v8::String::NewFromUtf8(v8_isolate, buf.start(),
3795                                  NewStringType::kNormal, buf_len);
3796 }
3797
3798
3799 Local<String> v8::Object::ObjectProtoToString() {
3800   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
3801   RETURN_TO_LOCAL_UNCHECKED(ObjectProtoToString(context), String);
3802 }
3803
3804
3805 Local<String> v8::Object::GetConstructorName() {
3806   auto self = Utils::OpenHandle(this);
3807   i::Handle<i::String> name(self->constructor_name());
3808   return Utils::ToLocal(name);
3809 }
3810
3811
3812 Maybe<bool> v8::Object::Delete(Local<Context> context, Local<Value> key) {
3813   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "v8::Object::Delete()", bool);
3814   auto self = Utils::OpenHandle(this);
3815   auto key_obj = Utils::OpenHandle(*key);
3816   i::Handle<i::Object> obj;
3817   has_pending_exception =
3818       !i::Runtime::DeleteObjectProperty(isolate, self, key_obj, i::SLOPPY)
3819            .ToHandle(&obj);
3820   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
3821   return Just(obj->IsTrue());
3822 }
3823
3824
3825 bool v8::Object::Delete(v8::Local<Value> key) {
3826   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
3827   return Delete(context, key).FromMaybe(false);
3828 }
3829
3830
3831 Maybe<bool> v8::Object::Has(Local<Context> context, Local<Value> key) {
3832   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "v8::Object::Get()", bool);
3833   auto self = Utils::OpenHandle(this);
3834   auto key_obj = Utils::OpenHandle(*key);
3835   Maybe<bool> maybe = Nothing<bool>();
3836   // Check if the given key is an array index.
3837   uint32_t index = 0;
3838   if (key_obj->ToArrayIndex(&index)) {
3839     maybe = i::JSReceiver::HasElement(self, index);
3840   } else {
3841     // Convert the key to a name - possibly by calling back into JavaScript.
3842     i::Handle<i::Name> name;
3843     if (i::Object::ToName(isolate, key_obj).ToHandle(&name)) {
3844       maybe = i::JSReceiver::HasProperty(self, name);
3845     }
3846   }
3847   has_pending_exception = maybe.IsNothing();
3848   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
3849   return maybe;
3850 }
3851
3852
3853 bool v8::Object::Has(v8::Local<Value> key) {
3854   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
3855   return Has(context, key).FromMaybe(false);
3856 }
3857
3858
3859 Maybe<bool> v8::Object::Delete(Local<Context> context, uint32_t index) {
3860   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "v8::Object::DeleteProperty()",
3861                                   bool);
3862   auto self = Utils::OpenHandle(this);
3863   i::Handle<i::Object> obj;
3864   has_pending_exception =
3865       !i::JSReceiver::DeleteElement(self, index).ToHandle(&obj);
3866   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
3867   return Just(obj->IsTrue());
3868 }
3869
3870
3871 bool v8::Object::Delete(uint32_t index) {
3872   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
3873   return Delete(context, index).FromMaybe(false);
3874 }
3875
3876
3877 Maybe<bool> v8::Object::Has(Local<Context> context, uint32_t index) {
3878   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "v8::Object::Get()", bool);
3879   auto self = Utils::OpenHandle(this);
3880   auto maybe = i::JSReceiver::HasElement(self, index);
3881   has_pending_exception = maybe.IsNothing();
3882   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
3883   return maybe;
3884 }
3885
3886
3887 bool v8::Object::Has(uint32_t index) {
3888   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
3889   return Has(context, index).FromMaybe(false);
3890 }
3891
3892
3893 template <typename Getter, typename Setter, typename Data>
3894 static Maybe<bool> ObjectSetAccessor(Local<Context> context, Object* obj,
3895                                      Local<Name> name, Getter getter,
3896                                      Setter setter, Data data,
3897                                      AccessControl settings,
3898                                      PropertyAttribute attributes) {
3899   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "v8::Object::SetAccessor()", bool);
3900   v8::Local<AccessorSignature> signature;
3901   auto info = MakeAccessorInfo(name, getter, setter, data, settings, attributes,
3902                                signature);
3903   if (info.is_null()) return Nothing<bool>();
3904   bool fast = Utils::OpenHandle(obj)->HasFastProperties();
3905   i::Handle<i::Object> result;
3906   has_pending_exception =
3907       !i::JSObject::SetAccessor(Utils::OpenHandle(obj), info).ToHandle(&result);
3908   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
3909   if (result->IsUndefined()) return Nothing<bool>();
3910   if (fast) {
3911     i::JSObject::MigrateSlowToFast(Utils::OpenHandle(obj), 0, "APISetAccessor");
3912   }
3913   return Just(true);
3914 }
3915
3916
3917 Maybe<bool> Object::SetAccessor(Local<Context> context, Local<Name> name,
3918                                 AccessorNameGetterCallback getter,
3919                                 AccessorNameSetterCallback setter,
3920                                 MaybeLocal<Value> data, AccessControl settings,
3921                                 PropertyAttribute attribute) {
3922   return ObjectSetAccessor(context, this, name, getter, setter,
3923                            data.FromMaybe(Local<Value>()), settings, attribute);
3924 }
3925
3926
3927 bool Object::SetAccessor(Local<String> name, AccessorGetterCallback getter,
3928                          AccessorSetterCallback setter, v8::Local<Value> data,
3929                          AccessControl settings, PropertyAttribute attributes) {
3930   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
3931   return ObjectSetAccessor(context, this, name, getter, setter, data, settings,
3932                            attributes).FromMaybe(false);
3933 }
3934
3935
3936 bool Object::SetAccessor(Local<Name> name, AccessorNameGetterCallback getter,
3937                          AccessorNameSetterCallback setter,
3938                          v8::Local<Value> data, AccessControl settings,
3939                          PropertyAttribute attributes) {
3940   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
3941   return ObjectSetAccessor(context, this, name, getter, setter, data, settings,
3942                            attributes).FromMaybe(false);
3943 }
3944
3945
3946 void Object::SetAccessorProperty(Local<Name> name, Local<Function> getter,
3947                                  Local<Function> setter,
3948                                  PropertyAttribute attribute,
3949                                  AccessControl settings) {
3950   // TODO(verwaest): Remove |settings|.
3951   DCHECK_EQ(v8::DEFAULT, settings);
3952   i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate();
3953   ENTER_V8(isolate);
3954   i::HandleScope scope(isolate);
3955   i::Handle<i::Object> getter_i = v8::Utils::OpenHandle(*getter);
3956   i::Handle<i::Object> setter_i = v8::Utils::OpenHandle(*setter, true);
3957   if (setter_i.is_null()) setter_i = isolate->factory()->null_value();
3958   i::JSObject::DefineAccessor(v8::Utils::OpenHandle(this),
3959                               v8::Utils::OpenHandle(*name),
3960                               getter_i,
3961                               setter_i,
3962                               static_cast<PropertyAttributes>(attribute));
3963 }
3964
3965
3966 Maybe<bool> v8::Object::HasOwnProperty(Local<Context> context,
3967                                        Local<Name> key) {
3968   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "v8::Object::HasOwnProperty()",
3969                                   bool);
3970   auto self = Utils::OpenHandle(this);
3971   auto key_val = Utils::OpenHandle(*key);
3972   auto result = i::JSReceiver::HasOwnProperty(self, key_val);
3973   has_pending_exception = result.IsNothing();
3974   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
3975   return result;
3976 }
3977
3978
3979 bool v8::Object::HasOwnProperty(Local<String> key) {
3980   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
3981   return HasOwnProperty(context, key).FromMaybe(false);
3982 }
3983
3984
3985 Maybe<bool> v8::Object::HasRealNamedProperty(Local<Context> context,
3986                                              Local<Name> key) {
3987   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "v8::Object::HasRealNamedProperty()",
3988                                   bool);
3989   auto self = Utils::OpenHandle(this);
3990   auto key_val = Utils::OpenHandle(*key);
3991   auto result = i::JSObject::HasRealNamedProperty(self, key_val);
3992   has_pending_exception = result.IsNothing();
3993   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
3994   return result;
3995 }
3996
3997
3998 bool v8::Object::HasRealNamedProperty(Local<String> key) {
3999   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
4000   return HasRealNamedProperty(context, key).FromMaybe(false);
4001 }
4002
4003
4004 Maybe<bool> v8::Object::HasRealIndexedProperty(Local<Context> context,
4005                                                uint32_t index) {
4006   PREPARE_FOR_EXECUTION_PRIMITIVE(context,
4007                                   "v8::Object::HasRealIndexedProperty()", bool);
4008   auto self = Utils::OpenHandle(this);
4009   auto result = i::JSObject::HasRealElementProperty(self, index);
4010   has_pending_exception = result.IsNothing();
4011   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
4012   return result;
4013 }
4014
4015
4016 bool v8::Object::HasRealIndexedProperty(uint32_t index) {
4017   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
4018   return HasRealIndexedProperty(context, index).FromMaybe(false);
4019 }
4020
4021
4022 Maybe<bool> v8::Object::HasRealNamedCallbackProperty(Local<Context> context,
4023                                                      Local<Name> key) {
4024   PREPARE_FOR_EXECUTION_PRIMITIVE(
4025       context, "v8::Object::HasRealNamedCallbackProperty()", bool);
4026   auto self = Utils::OpenHandle(this);
4027   auto key_val = Utils::OpenHandle(*key);
4028   auto result = i::JSObject::HasRealNamedCallbackProperty(self, key_val);
4029   has_pending_exception = result.IsNothing();
4030   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
4031   return result;
4032 }
4033
4034
4035 bool v8::Object::HasRealNamedCallbackProperty(Local<String> key) {
4036   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
4037   return HasRealNamedCallbackProperty(context, key).FromMaybe(false);
4038 }
4039
4040
4041 bool v8::Object::HasNamedLookupInterceptor() {
4042   auto self = Utils::OpenHandle(this);
4043   return self->HasNamedInterceptor();
4044 }
4045
4046
4047 bool v8::Object::HasIndexedLookupInterceptor() {
4048   auto self = Utils::OpenHandle(this);
4049   return self->HasIndexedInterceptor();
4050 }
4051
4052
4053 MaybeLocal<Value> v8::Object::GetRealNamedPropertyInPrototypeChain(
4054     Local<Context> context, Local<Name> key) {
4055   PREPARE_FOR_EXECUTION(
4056       context, "v8::Object::GetRealNamedPropertyInPrototypeChain()", Value);
4057   auto self = Utils::OpenHandle(this);
4058   auto key_obj = Utils::OpenHandle(*key);
4059   i::PrototypeIterator iter(isolate, self);
4060   if (iter.IsAtEnd()) return MaybeLocal<Value>();
4061   auto proto = i::PrototypeIterator::GetCurrent(iter);
4062   i::LookupIterator it = i::LookupIterator::PropertyOrElement(
4063       isolate, self, key_obj, i::Handle<i::JSReceiver>::cast(proto),
4064       i::LookupIterator::PROTOTYPE_CHAIN_SKIP_INTERCEPTOR);
4065   Local<Value> result;
4066   has_pending_exception = !ToLocal<Value>(i::Object::GetProperty(&it), &result);
4067   RETURN_ON_FAILED_EXECUTION(Value);
4068   if (!it.IsFound()) return MaybeLocal<Value>();
4069   RETURN_ESCAPED(result);
4070 }
4071
4072
4073 Local<Value> v8::Object::GetRealNamedPropertyInPrototypeChain(
4074     Local<String> key) {
4075   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
4076   RETURN_TO_LOCAL_UNCHECKED(GetRealNamedPropertyInPrototypeChain(context, key),
4077                             Value);
4078 }
4079
4080
4081 Maybe<PropertyAttribute>
4082 v8::Object::GetRealNamedPropertyAttributesInPrototypeChain(
4083     Local<Context> context, Local<Name> key) {
4084   PREPARE_FOR_EXECUTION_PRIMITIVE(
4085       context, "v8::Object::GetRealNamedPropertyAttributesInPrototypeChain()",
4086       PropertyAttribute);
4087   auto self = Utils::OpenHandle(this);
4088   auto key_obj = Utils::OpenHandle(*key);
4089   i::PrototypeIterator iter(isolate, self);
4090   if (iter.IsAtEnd()) return Nothing<PropertyAttribute>();
4091   auto proto = i::PrototypeIterator::GetCurrent(iter);
4092   i::LookupIterator it = i::LookupIterator::PropertyOrElement(
4093       isolate, self, key_obj, i::Handle<i::JSReceiver>::cast(proto),
4094       i::LookupIterator::PROTOTYPE_CHAIN_SKIP_INTERCEPTOR);
4095   auto result = i::JSReceiver::GetPropertyAttributes(&it);
4096   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(PropertyAttribute);
4097   if (!it.IsFound()) return Nothing<PropertyAttribute>();
4098   if (result.FromJust() == ABSENT) {
4099     return Just(static_cast<PropertyAttribute>(NONE));
4100   }
4101   return Just<PropertyAttribute>(
4102       static_cast<PropertyAttribute>(result.FromJust()));
4103 }
4104
4105
4106 Maybe<PropertyAttribute>
4107 v8::Object::GetRealNamedPropertyAttributesInPrototypeChain(Local<String> key) {
4108   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
4109   return GetRealNamedPropertyAttributesInPrototypeChain(context, key);
4110 }
4111
4112
4113 MaybeLocal<Value> v8::Object::GetRealNamedProperty(Local<Context> context,
4114                                                    Local<Name> key) {
4115   PREPARE_FOR_EXECUTION(context, "v8::Object::GetRealNamedProperty()", Value);
4116   auto self = Utils::OpenHandle(this);
4117   auto key_obj = Utils::OpenHandle(*key);
4118   i::LookupIterator it = i::LookupIterator::PropertyOrElement(
4119       isolate, self, key_obj,
4120       i::LookupIterator::PROTOTYPE_CHAIN_SKIP_INTERCEPTOR);
4121   Local<Value> result;
4122   has_pending_exception = !ToLocal<Value>(i::Object::GetProperty(&it), &result);
4123   RETURN_ON_FAILED_EXECUTION(Value);
4124   if (!it.IsFound()) return MaybeLocal<Value>();
4125   RETURN_ESCAPED(result);
4126 }
4127
4128
4129 Local<Value> v8::Object::GetRealNamedProperty(Local<String> key) {
4130   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
4131   RETURN_TO_LOCAL_UNCHECKED(GetRealNamedProperty(context, key), Value);
4132 }
4133
4134
4135 Maybe<PropertyAttribute> v8::Object::GetRealNamedPropertyAttributes(
4136     Local<Context> context, Local<Name> key) {
4137   PREPARE_FOR_EXECUTION_PRIMITIVE(
4138       context, "v8::Object::GetRealNamedPropertyAttributes()",
4139       PropertyAttribute);
4140   auto self = Utils::OpenHandle(this);
4141   auto key_obj = Utils::OpenHandle(*key);
4142   i::LookupIterator it = i::LookupIterator::PropertyOrElement(
4143       isolate, self, key_obj,
4144       i::LookupIterator::PROTOTYPE_CHAIN_SKIP_INTERCEPTOR);
4145   auto result = i::JSReceiver::GetPropertyAttributes(&it);
4146   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(PropertyAttribute);
4147   if (!it.IsFound()) return Nothing<PropertyAttribute>();
4148   if (result.FromJust() == ABSENT) {
4149     return Just(static_cast<PropertyAttribute>(NONE));
4150   }
4151   return Just<PropertyAttribute>(
4152       static_cast<PropertyAttribute>(result.FromJust()));
4153 }
4154
4155
4156 Maybe<PropertyAttribute> v8::Object::GetRealNamedPropertyAttributes(
4157     Local<String> key) {
4158   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
4159   return GetRealNamedPropertyAttributes(context, key);
4160 }
4161
4162
4163 Local<v8::Object> v8::Object::Clone() {
4164   auto self = Utils::OpenHandle(this);
4165   auto isolate = self->GetIsolate();
4166   ENTER_V8(isolate);
4167   auto result = isolate->factory()->CopyJSObject(self);
4168   CHECK(!result.is_null());
4169   return Utils::ToLocal(result);
4170 }
4171
4172
4173 Local<v8::Context> v8::Object::CreationContext() {
4174   auto self = Utils::OpenHandle(this);
4175   auto context = handle(self->GetCreationContext());
4176   return Utils::ToLocal(context);
4177 }
4178
4179
4180 int v8::Object::GetIdentityHash() {
4181   auto isolate = Utils::OpenHandle(this)->GetIsolate();
4182   i::HandleScope scope(isolate);
4183   auto self = Utils::OpenHandle(this);
4184   return i::JSReceiver::GetOrCreateIdentityHash(self)->value();
4185 }
4186
4187
4188 bool v8::Object::SetHiddenValue(v8::Local<v8::String> key,
4189                                 v8::Local<v8::Value> value) {
4190   i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate();
4191   if (value.IsEmpty()) return DeleteHiddenValue(key);
4192   ENTER_V8(isolate);
4193   i::HandleScope scope(isolate);
4194   i::Handle<i::JSObject> self = Utils::OpenHandle(this);
4195   i::Handle<i::String> key_obj = Utils::OpenHandle(*key);
4196   i::Handle<i::String> key_string =
4197       isolate->factory()->InternalizeString(key_obj);
4198   i::Handle<i::Object> value_obj = Utils::OpenHandle(*value);
4199   i::Handle<i::Object> result =
4200       i::JSObject::SetHiddenProperty(self, key_string, value_obj);
4201   return *result == *self;
4202 }
4203
4204
4205 v8::Local<v8::Value> v8::Object::GetHiddenValue(v8::Local<v8::String> key) {
4206   i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate();
4207   ENTER_V8(isolate);
4208   i::Handle<i::JSObject> self = Utils::OpenHandle(this);
4209   i::Handle<i::String> key_obj = Utils::OpenHandle(*key);
4210   i::Handle<i::String> key_string =
4211       isolate->factory()->InternalizeString(key_obj);
4212   i::Handle<i::Object> result(self->GetHiddenProperty(key_string), isolate);
4213   if (result->IsTheHole()) return v8::Local<v8::Value>();
4214   return Utils::ToLocal(result);
4215 }
4216
4217
4218 bool v8::Object::DeleteHiddenValue(v8::Local<v8::String> key) {
4219   i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate();
4220   ENTER_V8(isolate);
4221   i::HandleScope scope(isolate);
4222   i::Handle<i::JSObject> self = Utils::OpenHandle(this);
4223   i::Handle<i::String> key_obj = Utils::OpenHandle(*key);
4224   i::Handle<i::String> key_string =
4225       isolate->factory()->InternalizeString(key_obj);
4226   i::JSObject::DeleteHiddenProperty(self, key_string);
4227   return true;
4228 }
4229
4230
4231 bool v8::Object::IsCallable() {
4232   auto self = Utils::OpenHandle(this);
4233   return self->IsCallable();
4234 }
4235
4236
4237 MaybeLocal<Value> Object::CallAsFunction(Local<Context> context,
4238                                          Local<Value> recv, int argc,
4239                                          Local<Value> argv[]) {
4240   PREPARE_FOR_EXECUTION_WITH_CALLBACK(context, "v8::Object::CallAsFunction()",
4241                                       Value);
4242   i::TimerEventScope<i::TimerEventExecute> timer_scope(isolate);
4243   auto self = Utils::OpenHandle(this);
4244   auto recv_obj = Utils::OpenHandle(*recv);
4245   STATIC_ASSERT(sizeof(v8::Local<v8::Value>) == sizeof(i::Object**));
4246   i::Handle<i::Object>* args = reinterpret_cast<i::Handle<i::Object>*>(argv);
4247   i::Handle<i::JSFunction> fun;
4248   if (self->IsJSFunction()) {
4249     fun = i::Handle<i::JSFunction>::cast(self);
4250   } else {
4251     has_pending_exception =
4252         !i::Execution::GetFunctionDelegate(isolate, self).ToHandle(&fun);
4253     RETURN_ON_FAILED_EXECUTION(Value);
4254     recv_obj = self;
4255   }
4256   Local<Value> result;
4257   has_pending_exception = !ToLocal<Value>(
4258       i::Execution::Call(isolate, fun, recv_obj, argc, args), &result);
4259   RETURN_ON_FAILED_EXECUTION(Value);
4260   RETURN_ESCAPED(result);
4261 }
4262
4263
4264 Local<v8::Value> Object::CallAsFunction(v8::Local<v8::Value> recv, int argc,
4265                                         v8::Local<v8::Value> argv[]) {
4266   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
4267   Local<Value>* argv_cast = reinterpret_cast<Local<Value>*>(argv);
4268   RETURN_TO_LOCAL_UNCHECKED(CallAsFunction(context, recv, argc, argv_cast),
4269                             Value);
4270 }
4271
4272
4273 MaybeLocal<Value> Object::CallAsConstructor(Local<Context> context, int argc,
4274                                             Local<Value> argv[]) {
4275   PREPARE_FOR_EXECUTION_WITH_CALLBACK(context,
4276                                       "v8::Object::CallAsConstructor()", Value);
4277   i::TimerEventScope<i::TimerEventExecute> timer_scope(isolate);
4278   auto self = Utils::OpenHandle(this);
4279   STATIC_ASSERT(sizeof(v8::Local<v8::Value>) == sizeof(i::Object**));
4280   i::Handle<i::Object>* args = reinterpret_cast<i::Handle<i::Object>*>(argv);
4281   if (self->IsJSFunction()) {
4282     auto fun = i::Handle<i::JSFunction>::cast(self);
4283     Local<Value> result;
4284     has_pending_exception =
4285         !ToLocal<Value>(i::Execution::New(fun, argc, args), &result);
4286     RETURN_ON_FAILED_EXECUTION(Value);
4287     RETURN_ESCAPED(result);
4288   }
4289   i::Handle<i::JSFunction> fun;
4290   has_pending_exception =
4291       !i::Execution::GetConstructorDelegate(isolate, self).ToHandle(&fun);
4292   RETURN_ON_FAILED_EXECUTION(Value);
4293   Local<Value> result;
4294   has_pending_exception = !ToLocal<Value>(
4295       i::Execution::Call(isolate, fun, self, argc, args), &result);
4296   RETURN_ON_FAILED_EXECUTION(Value);
4297   RETURN_ESCAPED(result);
4298 }
4299
4300
4301 Local<v8::Value> Object::CallAsConstructor(int argc,
4302                                            v8::Local<v8::Value> argv[]) {
4303   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
4304   Local<Value>* argv_cast = reinterpret_cast<Local<Value>*>(argv);
4305   RETURN_TO_LOCAL_UNCHECKED(CallAsConstructor(context, argc, argv_cast), Value);
4306 }
4307
4308
4309 MaybeLocal<Function> Function::New(Local<Context> context,
4310                                    FunctionCallback callback, Local<Value> data,
4311                                    int length) {
4312   i::Isolate* isolate = Utils::OpenHandle(*context)->GetIsolate();
4313   LOG_API(isolate, "Function::New");
4314   ENTER_V8(isolate);
4315   return FunctionTemplateNew(isolate, callback, data, Local<Signature>(),
4316                              length, true)->GetFunction(context);
4317 }
4318
4319
4320 Local<Function> Function::New(Isolate* v8_isolate, FunctionCallback callback,
4321                               Local<Value> data, int length) {
4322   return Function::New(v8_isolate->GetCurrentContext(), callback, data, length)
4323       .FromMaybe(Local<Function>());
4324 }
4325
4326
4327 Local<v8::Object> Function::NewInstance() const {
4328   return NewInstance(Isolate::GetCurrent()->GetCurrentContext(), 0, NULL)
4329       .FromMaybe(Local<Object>());
4330 }
4331
4332
4333 MaybeLocal<Object> Function::NewInstance(Local<Context> context, int argc,
4334                                          v8::Local<v8::Value> argv[]) const {
4335   PREPARE_FOR_EXECUTION_WITH_CALLBACK(context, "v8::Function::NewInstance()",
4336                                       Object);
4337   i::TimerEventScope<i::TimerEventExecute> timer_scope(isolate);
4338   auto self = Utils::OpenHandle(this);
4339   STATIC_ASSERT(sizeof(v8::Local<v8::Value>) == sizeof(i::Object**));
4340   i::Handle<i::Object>* args = reinterpret_cast<i::Handle<i::Object>*>(argv);
4341   Local<Object> result;
4342   has_pending_exception =
4343       !ToLocal<Object>(i::Execution::New(self, argc, args), &result);
4344   RETURN_ON_FAILED_EXECUTION(Object);
4345   RETURN_ESCAPED(result);
4346 }
4347
4348
4349 Local<v8::Object> Function::NewInstance(int argc,
4350                                         v8::Local<v8::Value> argv[]) const {
4351   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
4352   RETURN_TO_LOCAL_UNCHECKED(NewInstance(context, argc, argv), Object);
4353 }
4354
4355
4356 MaybeLocal<v8::Value> Function::Call(Local<Context> context,
4357                                      v8::Local<v8::Value> recv, int argc,
4358                                      v8::Local<v8::Value> argv[]) {
4359   PREPARE_FOR_EXECUTION_WITH_CALLBACK(context, "v8::Function::Call()", Value);
4360   i::TimerEventScope<i::TimerEventExecute> timer_scope(isolate);
4361   auto self = Utils::OpenHandle(this);
4362   i::Handle<i::Object> recv_obj = Utils::OpenHandle(*recv);
4363   STATIC_ASSERT(sizeof(v8::Local<v8::Value>) == sizeof(i::Object**));
4364   i::Handle<i::Object>* args = reinterpret_cast<i::Handle<i::Object>*>(argv);
4365   Local<Value> result;
4366   has_pending_exception = !ToLocal<Value>(
4367       i::Execution::Call(isolate, self, recv_obj, argc, args), &result);
4368   RETURN_ON_FAILED_EXECUTION(Value);
4369   RETURN_ESCAPED(result);
4370 }
4371
4372
4373 Local<v8::Value> Function::Call(v8::Local<v8::Value> recv, int argc,
4374                                 v8::Local<v8::Value> argv[]) {
4375   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
4376   RETURN_TO_LOCAL_UNCHECKED(Call(context, recv, argc, argv), Value);
4377 }
4378
4379
4380 void Function::SetName(v8::Local<v8::String> name) {
4381   i::Handle<i::JSFunction> func = Utils::OpenHandle(this);
4382   func->shared()->set_name(*Utils::OpenHandle(*name));
4383 }
4384
4385
4386 Local<Value> Function::GetName() const {
4387   i::Handle<i::JSFunction> func = Utils::OpenHandle(this);
4388   return Utils::ToLocal(i::Handle<i::Object>(func->shared()->name(),
4389                                              func->GetIsolate()));
4390 }
4391
4392
4393 Local<Value> Function::GetInferredName() const {
4394   i::Handle<i::JSFunction> func = Utils::OpenHandle(this);
4395   return Utils::ToLocal(i::Handle<i::Object>(func->shared()->inferred_name(),
4396                                              func->GetIsolate()));
4397 }
4398
4399
4400 Local<Value> Function::GetDisplayName() const {
4401   i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate();
4402   ENTER_V8(isolate);
4403   i::Handle<i::JSFunction> func = Utils::OpenHandle(this);
4404   i::Handle<i::String> property_name =
4405       isolate->factory()->NewStringFromStaticChars("displayName");
4406   i::Handle<i::Object> value =
4407       i::JSReceiver::GetDataProperty(func, property_name);
4408   if (value->IsString()) {
4409     i::Handle<i::String> name = i::Handle<i::String>::cast(value);
4410     if (name->length() > 0) return Utils::ToLocal(name);
4411   }
4412   return ToApiHandle<Primitive>(isolate->factory()->undefined_value());
4413 }
4414
4415
4416 ScriptOrigin Function::GetScriptOrigin() const {
4417   i::Handle<i::JSFunction> func = Utils::OpenHandle(this);
4418   if (func->shared()->script()->IsScript()) {
4419     i::Handle<i::Script> script(i::Script::cast(func->shared()->script()));
4420     return GetScriptOriginForScript(func->GetIsolate(), script);
4421   }
4422   return v8::ScriptOrigin(Local<Value>());
4423 }
4424
4425
4426 const int Function::kLineOffsetNotFound = -1;
4427
4428
4429 int Function::GetScriptLineNumber() const {
4430   i::Handle<i::JSFunction> func = Utils::OpenHandle(this);
4431   if (func->shared()->script()->IsScript()) {
4432     i::Handle<i::Script> script(i::Script::cast(func->shared()->script()));
4433     return i::Script::GetLineNumber(script, func->shared()->start_position());
4434   }
4435   return kLineOffsetNotFound;
4436 }
4437
4438
4439 int Function::GetScriptColumnNumber() const {
4440   i::Handle<i::JSFunction> func = Utils::OpenHandle(this);
4441   if (func->shared()->script()->IsScript()) {
4442     i::Handle<i::Script> script(i::Script::cast(func->shared()->script()));
4443     return i::Script::GetColumnNumber(script, func->shared()->start_position());
4444   }
4445   return kLineOffsetNotFound;
4446 }
4447
4448
4449 bool Function::IsBuiltin() const {
4450   i::Handle<i::JSFunction> func = Utils::OpenHandle(this);
4451   return func->IsBuiltin();
4452 }
4453
4454
4455 int Function::ScriptId() const {
4456   i::Handle<i::JSFunction> func = Utils::OpenHandle(this);
4457   if (!func->shared()->script()->IsScript()) {
4458     return v8::UnboundScript::kNoScriptId;
4459   }
4460   i::Handle<i::Script> script(i::Script::cast(func->shared()->script()));
4461   return script->id()->value();
4462 }
4463
4464
4465 Local<v8::Value> Function::GetBoundFunction() const {
4466   i::Handle<i::JSFunction> func = Utils::OpenHandle(this);
4467   if (!func->shared()->bound()) {
4468     return v8::Undefined(reinterpret_cast<v8::Isolate*>(func->GetIsolate()));
4469   }
4470   i::Handle<i::FixedArray> bound_args = i::Handle<i::FixedArray>(
4471       i::FixedArray::cast(func->function_bindings()));
4472   i::Handle<i::Object> original(
4473       bound_args->get(i::JSFunction::kBoundFunctionIndex),
4474       func->GetIsolate());
4475   return Utils::ToLocal(i::Handle<i::JSFunction>::cast(original));
4476 }
4477
4478
4479 int Name::GetIdentityHash() {
4480   auto self = Utils::OpenHandle(this);
4481   return static_cast<int>(self->Hash());
4482 }
4483
4484
4485 int String::Length() const {
4486   i::Handle<i::String> str = Utils::OpenHandle(this);
4487   return str->length();
4488 }
4489
4490
4491 bool String::IsOneByte() const {
4492   i::Handle<i::String> str = Utils::OpenHandle(this);
4493   return str->HasOnlyOneByteChars();
4494 }
4495
4496
4497 // Helpers for ContainsOnlyOneByteHelper
4498 template<size_t size> struct OneByteMask;
4499 template<> struct OneByteMask<4> {
4500   static const uint32_t value = 0xFF00FF00;
4501 };
4502 template<> struct OneByteMask<8> {
4503   static const uint64_t value = V8_2PART_UINT64_C(0xFF00FF00, FF00FF00);
4504 };
4505 static const uintptr_t kOneByteMask = OneByteMask<sizeof(uintptr_t)>::value;
4506 static const uintptr_t kAlignmentMask = sizeof(uintptr_t) - 1;
4507 static inline bool Unaligned(const uint16_t* chars) {
4508   return reinterpret_cast<const uintptr_t>(chars) & kAlignmentMask;
4509 }
4510
4511
4512 static inline const uint16_t* Align(const uint16_t* chars) {
4513   return reinterpret_cast<uint16_t*>(
4514       reinterpret_cast<uintptr_t>(chars) & ~kAlignmentMask);
4515 }
4516
4517 class ContainsOnlyOneByteHelper {
4518  public:
4519   ContainsOnlyOneByteHelper() : is_one_byte_(true) {}
4520   bool Check(i::String* string) {
4521     i::ConsString* cons_string = i::String::VisitFlat(this, string, 0);
4522     if (cons_string == NULL) return is_one_byte_;
4523     return CheckCons(cons_string);
4524   }
4525   void VisitOneByteString(const uint8_t* chars, int length) {
4526     // Nothing to do.
4527   }
4528   void VisitTwoByteString(const uint16_t* chars, int length) {
4529     // Accumulated bits.
4530     uintptr_t acc = 0;
4531     // Align to uintptr_t.
4532     const uint16_t* end = chars + length;
4533     while (Unaligned(chars) && chars != end) {
4534       acc |= *chars++;
4535     }
4536     // Read word aligned in blocks,
4537     // checking the return value at the end of each block.
4538     const uint16_t* aligned_end = Align(end);
4539     const int increment = sizeof(uintptr_t)/sizeof(uint16_t);
4540     const int inner_loops = 16;
4541     while (chars + inner_loops*increment < aligned_end) {
4542       for (int i = 0; i < inner_loops; i++) {
4543         acc |= *reinterpret_cast<const uintptr_t*>(chars);
4544         chars += increment;
4545       }
4546       // Check for early return.
4547       if ((acc & kOneByteMask) != 0) {
4548         is_one_byte_ = false;
4549         return;
4550       }
4551     }
4552     // Read the rest.
4553     while (chars != end) {
4554       acc |= *chars++;
4555     }
4556     // Check result.
4557     if ((acc & kOneByteMask) != 0) is_one_byte_ = false;
4558   }
4559
4560  private:
4561   bool CheckCons(i::ConsString* cons_string) {
4562     while (true) {
4563       // Check left side if flat.
4564       i::String* left = cons_string->first();
4565       i::ConsString* left_as_cons =
4566           i::String::VisitFlat(this, left, 0);
4567       if (!is_one_byte_) return false;
4568       // Check right side if flat.
4569       i::String* right = cons_string->second();
4570       i::ConsString* right_as_cons =
4571           i::String::VisitFlat(this, right, 0);
4572       if (!is_one_byte_) return false;
4573       // Standard recurse/iterate trick.
4574       if (left_as_cons != NULL && right_as_cons != NULL) {
4575         if (left->length() < right->length()) {
4576           CheckCons(left_as_cons);
4577           cons_string = right_as_cons;
4578         } else {
4579           CheckCons(right_as_cons);
4580           cons_string = left_as_cons;
4581         }
4582         // Check fast return.
4583         if (!is_one_byte_) return false;
4584         continue;
4585       }
4586       // Descend left in place.
4587       if (left_as_cons != NULL) {
4588         cons_string = left_as_cons;
4589         continue;
4590       }
4591       // Descend right in place.
4592       if (right_as_cons != NULL) {
4593         cons_string = right_as_cons;
4594         continue;
4595       }
4596       // Terminate.
4597       break;
4598     }
4599     return is_one_byte_;
4600   }
4601   bool is_one_byte_;
4602   DISALLOW_COPY_AND_ASSIGN(ContainsOnlyOneByteHelper);
4603 };
4604
4605
4606 bool String::ContainsOnlyOneByte() const {
4607   i::Handle<i::String> str = Utils::OpenHandle(this);
4608   if (str->HasOnlyOneByteChars()) return true;
4609   ContainsOnlyOneByteHelper helper;
4610   return helper.Check(*str);
4611 }
4612
4613
4614 class Utf8LengthHelper : public i::AllStatic {
4615  public:
4616   enum State {
4617     kEndsWithLeadingSurrogate = 1 << 0,
4618     kStartsWithTrailingSurrogate = 1 << 1,
4619     kLeftmostEdgeIsCalculated = 1 << 2,
4620     kRightmostEdgeIsCalculated = 1 << 3,
4621     kLeftmostEdgeIsSurrogate = 1 << 4,
4622     kRightmostEdgeIsSurrogate = 1 << 5
4623   };
4624
4625   static const uint8_t kInitialState = 0;
4626
4627   static inline bool EndsWithSurrogate(uint8_t state) {
4628     return state & kEndsWithLeadingSurrogate;
4629   }
4630
4631   static inline bool StartsWithSurrogate(uint8_t state) {
4632     return state & kStartsWithTrailingSurrogate;
4633   }
4634
4635   class Visitor {
4636    public:
4637     Visitor() : utf8_length_(0), state_(kInitialState) {}
4638
4639     void VisitOneByteString(const uint8_t* chars, int length) {
4640       int utf8_length = 0;
4641       // Add in length 1 for each non-Latin1 character.
4642       for (int i = 0; i < length; i++) {
4643         utf8_length += *chars++ >> 7;
4644       }
4645       // Add in length 1 for each character.
4646       utf8_length_ = utf8_length + length;
4647       state_ = kInitialState;
4648     }
4649
4650     void VisitTwoByteString(const uint16_t* chars, int length) {
4651       int utf8_length = 0;
4652       int last_character = unibrow::Utf16::kNoPreviousCharacter;
4653       for (int i = 0; i < length; i++) {
4654         uint16_t c = chars[i];
4655         utf8_length += unibrow::Utf8::Length(c, last_character);
4656         last_character = c;
4657       }
4658       utf8_length_ = utf8_length;
4659       uint8_t state = 0;
4660       if (unibrow::Utf16::IsTrailSurrogate(chars[0])) {
4661         state |= kStartsWithTrailingSurrogate;
4662       }
4663       if (unibrow::Utf16::IsLeadSurrogate(chars[length-1])) {
4664         state |= kEndsWithLeadingSurrogate;
4665       }
4666       state_ = state;
4667     }
4668
4669     static i::ConsString* VisitFlat(i::String* string,
4670                                     int* length,
4671                                     uint8_t* state) {
4672       Visitor visitor;
4673       i::ConsString* cons_string = i::String::VisitFlat(&visitor, string);
4674       *length = visitor.utf8_length_;
4675       *state = visitor.state_;
4676       return cons_string;
4677     }
4678
4679    private:
4680     int utf8_length_;
4681     uint8_t state_;
4682     DISALLOW_COPY_AND_ASSIGN(Visitor);
4683   };
4684
4685   static inline void MergeLeafLeft(int* length,
4686                                    uint8_t* state,
4687                                    uint8_t leaf_state) {
4688     bool edge_surrogate = StartsWithSurrogate(leaf_state);
4689     if (!(*state & kLeftmostEdgeIsCalculated)) {
4690       DCHECK(!(*state & kLeftmostEdgeIsSurrogate));
4691       *state |= kLeftmostEdgeIsCalculated
4692           | (edge_surrogate ? kLeftmostEdgeIsSurrogate : 0);
4693     } else if (EndsWithSurrogate(*state) && edge_surrogate) {
4694       *length -= unibrow::Utf8::kBytesSavedByCombiningSurrogates;
4695     }
4696     if (EndsWithSurrogate(leaf_state)) {
4697       *state |= kEndsWithLeadingSurrogate;
4698     } else {
4699       *state &= ~kEndsWithLeadingSurrogate;
4700     }
4701   }
4702
4703   static inline void MergeLeafRight(int* length,
4704                                     uint8_t* state,
4705                                     uint8_t leaf_state) {
4706     bool edge_surrogate = EndsWithSurrogate(leaf_state);
4707     if (!(*state & kRightmostEdgeIsCalculated)) {
4708       DCHECK(!(*state & kRightmostEdgeIsSurrogate));
4709       *state |= (kRightmostEdgeIsCalculated
4710                  | (edge_surrogate ? kRightmostEdgeIsSurrogate : 0));
4711     } else if (edge_surrogate && StartsWithSurrogate(*state)) {
4712       *length -= unibrow::Utf8::kBytesSavedByCombiningSurrogates;
4713     }
4714     if (StartsWithSurrogate(leaf_state)) {
4715       *state |= kStartsWithTrailingSurrogate;
4716     } else {
4717       *state &= ~kStartsWithTrailingSurrogate;
4718     }
4719   }
4720
4721   static inline void MergeTerminal(int* length,
4722                                    uint8_t state,
4723                                    uint8_t* state_out) {
4724     DCHECK((state & kLeftmostEdgeIsCalculated) &&
4725            (state & kRightmostEdgeIsCalculated));
4726     if (EndsWithSurrogate(state) && StartsWithSurrogate(state)) {
4727       *length -= unibrow::Utf8::kBytesSavedByCombiningSurrogates;
4728     }
4729     *state_out = kInitialState |
4730         (state & kLeftmostEdgeIsSurrogate ? kStartsWithTrailingSurrogate : 0) |
4731         (state & kRightmostEdgeIsSurrogate ? kEndsWithLeadingSurrogate : 0);
4732   }
4733
4734   static int Calculate(i::ConsString* current, uint8_t* state_out) {
4735     using namespace internal;
4736     int total_length = 0;
4737     uint8_t state = kInitialState;
4738     while (true) {
4739       i::String* left = current->first();
4740       i::String* right = current->second();
4741       uint8_t right_leaf_state;
4742       uint8_t left_leaf_state;
4743       int leaf_length;
4744       ConsString* left_as_cons =
4745           Visitor::VisitFlat(left, &leaf_length, &left_leaf_state);
4746       if (left_as_cons == NULL) {
4747         total_length += leaf_length;
4748         MergeLeafLeft(&total_length, &state, left_leaf_state);
4749       }
4750       ConsString* right_as_cons =
4751           Visitor::VisitFlat(right, &leaf_length, &right_leaf_state);
4752       if (right_as_cons == NULL) {
4753         total_length += leaf_length;
4754         MergeLeafRight(&total_length, &state, right_leaf_state);
4755         if (left_as_cons != NULL) {
4756           // 1 Leaf node. Descend in place.
4757           current = left_as_cons;
4758           continue;
4759         } else {
4760           // Terminal node.
4761           MergeTerminal(&total_length, state, state_out);
4762           return total_length;
4763         }
4764       } else if (left_as_cons == NULL) {
4765         // 1 Leaf node. Descend in place.
4766         current = right_as_cons;
4767         continue;
4768       }
4769       // Both strings are ConsStrings.
4770       // Recurse on smallest.
4771       if (left->length() < right->length()) {
4772         total_length += Calculate(left_as_cons, &left_leaf_state);
4773         MergeLeafLeft(&total_length, &state, left_leaf_state);
4774         current = right_as_cons;
4775       } else {
4776         total_length += Calculate(right_as_cons, &right_leaf_state);
4777         MergeLeafRight(&total_length, &state, right_leaf_state);
4778         current = left_as_cons;
4779       }
4780     }
4781     UNREACHABLE();
4782     return 0;
4783   }
4784
4785   static inline int Calculate(i::ConsString* current) {
4786     uint8_t state = kInitialState;
4787     return Calculate(current, &state);
4788   }
4789
4790  private:
4791   DISALLOW_IMPLICIT_CONSTRUCTORS(Utf8LengthHelper);
4792 };
4793
4794
4795 static int Utf8Length(i::String* str, i::Isolate* isolate) {
4796   int length = str->length();
4797   if (length == 0) return 0;
4798   uint8_t state;
4799   i::ConsString* cons_string =
4800       Utf8LengthHelper::Visitor::VisitFlat(str, &length, &state);
4801   if (cons_string == NULL) return length;
4802   return Utf8LengthHelper::Calculate(cons_string);
4803 }
4804
4805
4806 int String::Utf8Length() const {
4807   i::Handle<i::String> str = Utils::OpenHandle(this);
4808   i::Isolate* isolate = str->GetIsolate();
4809   return v8::Utf8Length(*str, isolate);
4810 }
4811
4812
4813 class Utf8WriterVisitor {
4814  public:
4815   Utf8WriterVisitor(
4816       char* buffer,
4817       int capacity,
4818       bool skip_capacity_check,
4819       bool replace_invalid_utf8)
4820     : early_termination_(false),
4821       last_character_(unibrow::Utf16::kNoPreviousCharacter),
4822       buffer_(buffer),
4823       start_(buffer),
4824       capacity_(capacity),
4825       skip_capacity_check_(capacity == -1 || skip_capacity_check),
4826       replace_invalid_utf8_(replace_invalid_utf8),
4827       utf16_chars_read_(0) {
4828   }
4829
4830   static int WriteEndCharacter(uint16_t character,
4831                                int last_character,
4832                                int remaining,
4833                                char* const buffer,
4834                                bool replace_invalid_utf8) {
4835     using namespace unibrow;
4836     DCHECK(remaining > 0);
4837     // We can't use a local buffer here because Encode needs to modify
4838     // previous characters in the stream.  We know, however, that
4839     // exactly one character will be advanced.
4840     if (Utf16::IsSurrogatePair(last_character, character)) {
4841       int written = Utf8::Encode(buffer,
4842                                  character,
4843                                  last_character,
4844                                  replace_invalid_utf8);
4845       DCHECK(written == 1);
4846       return written;
4847     }
4848     // Use a scratch buffer to check the required characters.
4849     char temp_buffer[Utf8::kMaxEncodedSize];
4850     // Can't encode using last_character as gcc has array bounds issues.
4851     int written = Utf8::Encode(temp_buffer,
4852                                character,
4853                                Utf16::kNoPreviousCharacter,
4854                                replace_invalid_utf8);
4855     // Won't fit.
4856     if (written > remaining) return 0;
4857     // Copy over the character from temp_buffer.
4858     for (int j = 0; j < written; j++) {
4859       buffer[j] = temp_buffer[j];
4860     }
4861     return written;
4862   }
4863
4864   // Visit writes out a group of code units (chars) of a v8::String to the
4865   // internal buffer_. This is done in two phases. The first phase calculates a
4866   // pesimistic estimate (writable_length) on how many code units can be safely
4867   // written without exceeding the buffer capacity and without writing the last
4868   // code unit (it could be a lead surrogate). The estimated number of code
4869   // units is then written out in one go, and the reported byte usage is used
4870   // to correct the estimate. This is repeated until the estimate becomes <= 0
4871   // or all code units have been written out. The second phase writes out code
4872   // units until the buffer capacity is reached, would be exceeded by the next
4873   // unit, or all units have been written out.
4874   template<typename Char>
4875   void Visit(const Char* chars, const int length) {
4876     using namespace unibrow;
4877     DCHECK(!early_termination_);
4878     if (length == 0) return;
4879     // Copy state to stack.
4880     char* buffer = buffer_;
4881     int last_character =
4882         sizeof(Char) == 1 ? Utf16::kNoPreviousCharacter : last_character_;
4883     int i = 0;
4884     // Do a fast loop where there is no exit capacity check.
4885     while (true) {
4886       int fast_length;
4887       if (skip_capacity_check_) {
4888         fast_length = length;
4889       } else {
4890         int remaining_capacity = capacity_ - static_cast<int>(buffer - start_);
4891         // Need enough space to write everything but one character.
4892         STATIC_ASSERT(Utf16::kMaxExtraUtf8BytesForOneUtf16CodeUnit == 3);
4893         int max_size_per_char =  sizeof(Char) == 1 ? 2 : 3;
4894         int writable_length =
4895             (remaining_capacity - max_size_per_char)/max_size_per_char;
4896         // Need to drop into slow loop.
4897         if (writable_length <= 0) break;
4898         fast_length = i + writable_length;
4899         if (fast_length > length) fast_length = length;
4900       }
4901       // Write the characters to the stream.
4902       if (sizeof(Char) == 1) {
4903         for (; i < fast_length; i++) {
4904           buffer +=
4905               Utf8::EncodeOneByte(buffer, static_cast<uint8_t>(*chars++));
4906           DCHECK(capacity_ == -1 || (buffer - start_) <= capacity_);
4907         }
4908       } else {
4909         for (; i < fast_length; i++) {
4910           uint16_t character = *chars++;
4911           buffer += Utf8::Encode(buffer,
4912                                  character,
4913                                  last_character,
4914                                  replace_invalid_utf8_);
4915           last_character = character;
4916           DCHECK(capacity_ == -1 || (buffer - start_) <= capacity_);
4917         }
4918       }
4919       // Array is fully written. Exit.
4920       if (fast_length == length) {
4921         // Write state back out to object.
4922         last_character_ = last_character;
4923         buffer_ = buffer;
4924         utf16_chars_read_ += length;
4925         return;
4926       }
4927     }
4928     DCHECK(!skip_capacity_check_);
4929     // Slow loop. Must check capacity on each iteration.
4930     int remaining_capacity = capacity_ - static_cast<int>(buffer - start_);
4931     DCHECK(remaining_capacity >= 0);
4932     for (; i < length && remaining_capacity > 0; i++) {
4933       uint16_t character = *chars++;
4934       // remaining_capacity is <= 3 bytes at this point, so we do not write out
4935       // an umatched lead surrogate.
4936       if (replace_invalid_utf8_ && Utf16::IsLeadSurrogate(character)) {
4937         early_termination_ = true;
4938         break;
4939       }
4940       int written = WriteEndCharacter(character,
4941                                       last_character,
4942                                       remaining_capacity,
4943                                       buffer,
4944                                       replace_invalid_utf8_);
4945       if (written == 0) {
4946         early_termination_ = true;
4947         break;
4948       }
4949       buffer += written;
4950       remaining_capacity -= written;
4951       last_character = character;
4952     }
4953     // Write state back out to object.
4954     last_character_ = last_character;
4955     buffer_ = buffer;
4956     utf16_chars_read_ += i;
4957   }
4958
4959   inline bool IsDone() {
4960     return early_termination_;
4961   }
4962
4963   inline void VisitOneByteString(const uint8_t* chars, int length) {
4964     Visit(chars, length);
4965   }
4966
4967   inline void VisitTwoByteString(const uint16_t* chars, int length) {
4968     Visit(chars, length);
4969   }
4970
4971   int CompleteWrite(bool write_null, int* utf16_chars_read_out) {
4972     // Write out number of utf16 characters written to the stream.
4973     if (utf16_chars_read_out != NULL) {
4974       *utf16_chars_read_out = utf16_chars_read_;
4975     }
4976     // Only null terminate if all of the string was written and there's space.
4977     if (write_null &&
4978         !early_termination_ &&
4979         (capacity_ == -1 || (buffer_ - start_) < capacity_)) {
4980       *buffer_++ = '\0';
4981     }
4982     return static_cast<int>(buffer_ - start_);
4983   }
4984
4985  private:
4986   bool early_termination_;
4987   int last_character_;
4988   char* buffer_;
4989   char* const start_;
4990   int capacity_;
4991   bool const skip_capacity_check_;
4992   bool const replace_invalid_utf8_;
4993   int utf16_chars_read_;
4994   DISALLOW_IMPLICIT_CONSTRUCTORS(Utf8WriterVisitor);
4995 };
4996
4997
4998 static bool RecursivelySerializeToUtf8(i::String* current,
4999                                        Utf8WriterVisitor* writer,
5000                                        int recursion_budget) {
5001   while (!writer->IsDone()) {
5002     i::ConsString* cons_string = i::String::VisitFlat(writer, current);
5003     if (cons_string == NULL) return true;  // Leaf node.
5004     if (recursion_budget <= 0) return false;
5005     // Must write the left branch first.
5006     i::String* first = cons_string->first();
5007     bool success = RecursivelySerializeToUtf8(first,
5008                                               writer,
5009                                               recursion_budget - 1);
5010     if (!success) return false;
5011     // Inline tail recurse for right branch.
5012     current = cons_string->second();
5013   }
5014   return true;
5015 }
5016
5017
5018 int String::WriteUtf8(char* buffer,
5019                       int capacity,
5020                       int* nchars_ref,
5021                       int options) const {
5022   i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate();
5023   LOG_API(isolate, "String::WriteUtf8");
5024   ENTER_V8(isolate);
5025   i::Handle<i::String> str = Utils::OpenHandle(this);
5026   if (options & HINT_MANY_WRITES_EXPECTED) {
5027     str = i::String::Flatten(str);  // Flatten the string for efficiency.
5028   }
5029   const int string_length = str->length();
5030   bool write_null = !(options & NO_NULL_TERMINATION);
5031   bool replace_invalid_utf8 = (options & REPLACE_INVALID_UTF8);
5032   int max16BitCodeUnitSize = unibrow::Utf8::kMax16BitCodeUnitSize;
5033   // First check if we can just write the string without checking capacity.
5034   if (capacity == -1 || capacity / max16BitCodeUnitSize >= string_length) {
5035     Utf8WriterVisitor writer(buffer, capacity, true, replace_invalid_utf8);
5036     const int kMaxRecursion = 100;
5037     bool success = RecursivelySerializeToUtf8(*str, &writer, kMaxRecursion);
5038     if (success) return writer.CompleteWrite(write_null, nchars_ref);
5039   } else if (capacity >= string_length) {
5040     // First check that the buffer is large enough.
5041     int utf8_bytes = v8::Utf8Length(*str, str->GetIsolate());
5042     if (utf8_bytes <= capacity) {
5043       // one-byte fast path.
5044       if (utf8_bytes == string_length) {
5045         WriteOneByte(reinterpret_cast<uint8_t*>(buffer), 0, capacity, options);
5046         if (nchars_ref != NULL) *nchars_ref = string_length;
5047         if (write_null && (utf8_bytes+1 <= capacity)) {
5048           return string_length + 1;
5049         }
5050         return string_length;
5051       }
5052       if (write_null && (utf8_bytes+1 > capacity)) {
5053         options |= NO_NULL_TERMINATION;
5054       }
5055       // Recurse once without a capacity limit.
5056       // This will get into the first branch above.
5057       // TODO(dcarney) Check max left rec. in Utf8Length and fall through.
5058       return WriteUtf8(buffer, -1, nchars_ref, options);
5059     }
5060   }
5061   // Recursive slow path can potentially be unreasonable slow. Flatten.
5062   str = i::String::Flatten(str);
5063   Utf8WriterVisitor writer(buffer, capacity, false, replace_invalid_utf8);
5064   i::String::VisitFlat(&writer, *str);
5065   return writer.CompleteWrite(write_null, nchars_ref);
5066 }
5067
5068
5069 template<typename CharType>
5070 static inline int WriteHelper(const String* string,
5071                               CharType* buffer,
5072                               int start,
5073                               int length,
5074                               int options) {
5075   i::Isolate* isolate = Utils::OpenHandle(string)->GetIsolate();
5076   LOG_API(isolate, "String::Write");
5077   ENTER_V8(isolate);
5078   DCHECK(start >= 0 && length >= -1);
5079   i::Handle<i::String> str = Utils::OpenHandle(string);
5080   if (options & String::HINT_MANY_WRITES_EXPECTED) {
5081     // Flatten the string for efficiency.  This applies whether we are
5082     // using StringCharacterStream or Get(i) to access the characters.
5083     str = i::String::Flatten(str);
5084   }
5085   int end = start + length;
5086   if ((length == -1) || (length > str->length() - start) )
5087     end = str->length();
5088   if (end < 0) return 0;
5089   i::String::WriteToFlat(*str, buffer, start, end);
5090   if (!(options & String::NO_NULL_TERMINATION) &&
5091       (length == -1 || end - start < length)) {
5092     buffer[end - start] = '\0';
5093   }
5094   return end - start;
5095 }
5096
5097
5098 int String::WriteOneByte(uint8_t* buffer,
5099                          int start,
5100                          int length,
5101                          int options) const {
5102   return WriteHelper(this, buffer, start, length, options);
5103 }
5104
5105
5106 int String::Write(uint16_t* buffer,
5107                   int start,
5108                   int length,
5109                   int options) const {
5110   return WriteHelper(this, buffer, start, length, options);
5111 }
5112
5113
5114 bool v8::String::IsExternal() const {
5115   i::Handle<i::String> str = Utils::OpenHandle(this);
5116   return i::StringShape(*str).IsExternalTwoByte();
5117 }
5118
5119
5120 bool v8::String::IsExternalOneByte() const {
5121   i::Handle<i::String> str = Utils::OpenHandle(this);
5122   return i::StringShape(*str).IsExternalOneByte();
5123 }
5124
5125
5126 void v8::String::VerifyExternalStringResource(
5127     v8::String::ExternalStringResource* value) const {
5128   i::Handle<i::String> str = Utils::OpenHandle(this);
5129   const v8::String::ExternalStringResource* expected;
5130   if (i::StringShape(*str).IsExternalTwoByte()) {
5131     const void* resource =
5132         i::Handle<i::ExternalTwoByteString>::cast(str)->resource();
5133     expected = reinterpret_cast<const ExternalStringResource*>(resource);
5134   } else {
5135     expected = NULL;
5136   }
5137   CHECK_EQ(expected, value);
5138 }
5139
5140 void v8::String::VerifyExternalStringResourceBase(
5141     v8::String::ExternalStringResourceBase* value, Encoding encoding) const {
5142   i::Handle<i::String> str = Utils::OpenHandle(this);
5143   const v8::String::ExternalStringResourceBase* expected;
5144   Encoding expectedEncoding;
5145   if (i::StringShape(*str).IsExternalOneByte()) {
5146     const void* resource =
5147         i::Handle<i::ExternalOneByteString>::cast(str)->resource();
5148     expected = reinterpret_cast<const ExternalStringResourceBase*>(resource);
5149     expectedEncoding = ONE_BYTE_ENCODING;
5150   } else if (i::StringShape(*str).IsExternalTwoByte()) {
5151     const void* resource =
5152         i::Handle<i::ExternalTwoByteString>::cast(str)->resource();
5153     expected = reinterpret_cast<const ExternalStringResourceBase*>(resource);
5154     expectedEncoding = TWO_BYTE_ENCODING;
5155   } else {
5156     expected = NULL;
5157     expectedEncoding =
5158         str->IsOneByteRepresentation() ? ONE_BYTE_ENCODING : TWO_BYTE_ENCODING;
5159   }
5160   CHECK_EQ(expected, value);
5161   CHECK_EQ(expectedEncoding, encoding);
5162 }
5163
5164 const v8::String::ExternalOneByteStringResource*
5165 v8::String::GetExternalOneByteStringResource() const {
5166   i::Handle<i::String> str = Utils::OpenHandle(this);
5167   if (i::StringShape(*str).IsExternalOneByte()) {
5168     const void* resource =
5169         i::Handle<i::ExternalOneByteString>::cast(str)->resource();
5170     return reinterpret_cast<const ExternalOneByteStringResource*>(resource);
5171   } else {
5172     return NULL;
5173   }
5174 }
5175
5176
5177 Local<Value> Symbol::Name() const {
5178   i::Handle<i::Symbol> sym = Utils::OpenHandle(this);
5179   i::Handle<i::Object> name(sym->name(), sym->GetIsolate());
5180   return Utils::ToLocal(name);
5181 }
5182
5183
5184 double Number::Value() const {
5185   i::Handle<i::Object> obj = Utils::OpenHandle(this);
5186   return obj->Number();
5187 }
5188
5189
5190 bool Boolean::Value() const {
5191   i::Handle<i::Object> obj = Utils::OpenHandle(this);
5192   return obj->IsTrue();
5193 }
5194
5195
5196 int64_t Integer::Value() const {
5197   i::Handle<i::Object> obj = Utils::OpenHandle(this);
5198   if (obj->IsSmi()) {
5199     return i::Smi::cast(*obj)->value();
5200   } else {
5201     return static_cast<int64_t>(obj->Number());
5202   }
5203 }
5204
5205
5206 int32_t Int32::Value() const {
5207   i::Handle<i::Object> obj = Utils::OpenHandle(this);
5208   if (obj->IsSmi()) {
5209     return i::Smi::cast(*obj)->value();
5210   } else {
5211     return static_cast<int32_t>(obj->Number());
5212   }
5213 }
5214
5215
5216 uint32_t Uint32::Value() const {
5217   i::Handle<i::Object> obj = Utils::OpenHandle(this);
5218   if (obj->IsSmi()) {
5219     return i::Smi::cast(*obj)->value();
5220   } else {
5221     return static_cast<uint32_t>(obj->Number());
5222   }
5223 }
5224
5225
5226 int v8::Object::InternalFieldCount() {
5227   i::Handle<i::JSObject> obj = Utils::OpenHandle(this);
5228   return obj->GetInternalFieldCount();
5229 }
5230
5231
5232 static bool InternalFieldOK(i::Handle<i::JSObject> obj,
5233                             int index,
5234                             const char* location) {
5235   return Utils::ApiCheck(index < obj->GetInternalFieldCount(),
5236                          location,
5237                          "Internal field out of bounds");
5238 }
5239
5240
5241 Local<Value> v8::Object::SlowGetInternalField(int index) {
5242   i::Handle<i::JSObject> obj = Utils::OpenHandle(this);
5243   const char* location = "v8::Object::GetInternalField()";
5244   if (!InternalFieldOK(obj, index, location)) return Local<Value>();
5245   i::Handle<i::Object> value(obj->GetInternalField(index), obj->GetIsolate());
5246   return Utils::ToLocal(value);
5247 }
5248
5249
5250 void v8::Object::SetInternalField(int index, v8::Local<Value> value) {
5251   i::Handle<i::JSObject> obj = Utils::OpenHandle(this);
5252   const char* location = "v8::Object::SetInternalField()";
5253   if (!InternalFieldOK(obj, index, location)) return;
5254   i::Handle<i::Object> val = Utils::OpenHandle(*value);
5255   obj->SetInternalField(index, *val);
5256 }
5257
5258
5259 void* v8::Object::SlowGetAlignedPointerFromInternalField(int index) {
5260   i::Handle<i::JSObject> obj = Utils::OpenHandle(this);
5261   const char* location = "v8::Object::GetAlignedPointerFromInternalField()";
5262   if (!InternalFieldOK(obj, index, location)) return NULL;
5263   return DecodeSmiToAligned(obj->GetInternalField(index), location);
5264 }
5265
5266
5267 void v8::Object::SetAlignedPointerInInternalField(int index, void* value) {
5268   i::Handle<i::JSObject> obj = Utils::OpenHandle(this);
5269   const char* location = "v8::Object::SetAlignedPointerInInternalField()";
5270   if (!InternalFieldOK(obj, index, location)) return;
5271   obj->SetInternalField(index, EncodeAlignedAsSmi(value, location));
5272   DCHECK_EQ(value, GetAlignedPointerFromInternalField(index));
5273 }
5274
5275
5276 static void* ExternalValue(i::Object* obj) {
5277   // Obscure semantics for undefined, but somehow checked in our unit tests...
5278   if (obj->IsUndefined()) return NULL;
5279   i::Object* foreign = i::JSObject::cast(obj)->GetInternalField(0);
5280   return i::Foreign::cast(foreign)->foreign_address();
5281 }
5282
5283
5284 // --- E n v i r o n m e n t ---
5285
5286
5287 void v8::V8::InitializePlatform(Platform* platform) {
5288   i::V8::InitializePlatform(platform);
5289 }
5290
5291
5292 void v8::V8::ShutdownPlatform() {
5293   i::V8::ShutdownPlatform();
5294 }
5295
5296
5297 bool v8::V8::Initialize() {
5298   i::V8::Initialize();
5299 #ifdef V8_USE_EXTERNAL_STARTUP_DATA
5300   i::ReadNatives();
5301 #endif
5302   return true;
5303 }
5304
5305
5306 void v8::V8::SetEntropySource(EntropySource entropy_source) {
5307   base::RandomNumberGenerator::SetEntropySource(entropy_source);
5308 }
5309
5310
5311 void v8::V8::SetReturnAddressLocationResolver(
5312     ReturnAddressLocationResolver return_address_resolver) {
5313   i::StackFrame::SetReturnAddressLocationResolver(return_address_resolver);
5314 }
5315
5316
5317 bool v8::V8::Dispose() {
5318   i::V8::TearDown();
5319 #ifdef V8_USE_EXTERNAL_STARTUP_DATA
5320   i::DisposeNatives();
5321 #endif
5322   return true;
5323 }
5324
5325
5326 HeapStatistics::HeapStatistics(): total_heap_size_(0),
5327                                   total_heap_size_executable_(0),
5328                                   total_physical_size_(0),
5329                                   used_heap_size_(0),
5330                                   heap_size_limit_(0) { }
5331
5332
5333 HeapSpaceStatistics::HeapSpaceStatistics(): space_name_(0),
5334                                             space_size_(0),
5335                                             space_used_size_(0),
5336                                             space_available_size_(0),
5337                                             physical_space_size_(0) { }
5338
5339
5340 HeapObjectStatistics::HeapObjectStatistics()
5341     : object_type_(nullptr),
5342       object_sub_type_(nullptr),
5343       object_count_(0),
5344       object_size_(0) {}
5345
5346
5347 bool v8::V8::InitializeICU(const char* icu_data_file) {
5348   return i::InitializeICU(icu_data_file);
5349 }
5350
5351
5352 void v8::V8::InitializeExternalStartupData(const char* directory_path) {
5353   i::InitializeExternalStartupData(directory_path);
5354 }
5355
5356
5357 void v8::V8::InitializeExternalStartupData(const char* natives_blob,
5358                                            const char* snapshot_blob) {
5359   i::InitializeExternalStartupData(natives_blob, snapshot_blob);
5360 }
5361
5362
5363 const char* v8::V8::GetVersion() {
5364   return i::Version::GetVersion();
5365 }
5366
5367
5368 static i::Handle<i::Context> CreateEnvironment(
5369     i::Isolate* isolate, v8::ExtensionConfiguration* extensions,
5370     v8::Local<ObjectTemplate> global_template,
5371     v8::Local<Value> maybe_global_proxy) {
5372   i::Handle<i::Context> env;
5373
5374   // Enter V8 via an ENTER_V8 scope.
5375   {
5376     ENTER_V8(isolate);
5377     v8::Local<ObjectTemplate> proxy_template = global_template;
5378     i::Handle<i::FunctionTemplateInfo> proxy_constructor;
5379     i::Handle<i::FunctionTemplateInfo> global_constructor;
5380
5381     if (!global_template.IsEmpty()) {
5382       // Make sure that the global_template has a constructor.
5383       global_constructor = EnsureConstructor(isolate, *global_template);
5384
5385       // Create a fresh template for the global proxy object.
5386       proxy_template = ObjectTemplate::New(
5387           reinterpret_cast<v8::Isolate*>(isolate));
5388       proxy_constructor = EnsureConstructor(isolate, *proxy_template);
5389
5390       // Set the global template to be the prototype template of
5391       // global proxy template.
5392       proxy_constructor->set_prototype_template(
5393           *Utils::OpenHandle(*global_template));
5394
5395       // Migrate security handlers from global_template to
5396       // proxy_template.  Temporarily removing access check
5397       // information from the global template.
5398       if (!global_constructor->access_check_info()->IsUndefined()) {
5399         proxy_constructor->set_access_check_info(
5400             global_constructor->access_check_info());
5401         proxy_constructor->set_needs_access_check(
5402             global_constructor->needs_access_check());
5403         global_constructor->set_needs_access_check(false);
5404         global_constructor->set_access_check_info(
5405             isolate->heap()->undefined_value());
5406       }
5407     }
5408
5409     i::Handle<i::Object> proxy = Utils::OpenHandle(*maybe_global_proxy, true);
5410     i::MaybeHandle<i::JSGlobalProxy> maybe_proxy;
5411     if (!proxy.is_null()) {
5412       maybe_proxy = i::Handle<i::JSGlobalProxy>::cast(proxy);
5413     }
5414     // Create the environment.
5415     env = isolate->bootstrapper()->CreateEnvironment(
5416         maybe_proxy, proxy_template, extensions);
5417
5418     // Restore the access check info on the global template.
5419     if (!global_template.IsEmpty()) {
5420       DCHECK(!global_constructor.is_null());
5421       DCHECK(!proxy_constructor.is_null());
5422       global_constructor->set_access_check_info(
5423           proxy_constructor->access_check_info());
5424       global_constructor->set_needs_access_check(
5425           proxy_constructor->needs_access_check());
5426     }
5427   }
5428   // Leave V8.
5429
5430   return env;
5431 }
5432
5433 Local<Context> v8::Context::New(v8::Isolate* external_isolate,
5434                                 v8::ExtensionConfiguration* extensions,
5435                                 v8::Local<ObjectTemplate> global_template,
5436                                 v8::Local<Value> global_object) {
5437   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(external_isolate);
5438   LOG_API(isolate, "Context::New");
5439   i::HandleScope scope(isolate);
5440   ExtensionConfiguration no_extensions;
5441   if (extensions == NULL) extensions = &no_extensions;
5442   i::Handle<i::Context> env =
5443       CreateEnvironment(isolate, extensions, global_template, global_object);
5444   if (env.is_null()) {
5445     if (isolate->has_pending_exception()) {
5446       isolate->OptionalRescheduleException(true);
5447     }
5448     return Local<Context>();
5449   }
5450   return Utils::ToLocal(scope.CloseAndEscape(env));
5451 }
5452
5453
5454 void v8::Context::SetSecurityToken(Local<Value> token) {
5455   i::Handle<i::Context> env = Utils::OpenHandle(this);
5456   i::Handle<i::Object> token_handle = Utils::OpenHandle(*token);
5457   env->set_security_token(*token_handle);
5458 }
5459
5460
5461 void v8::Context::UseDefaultSecurityToken() {
5462   i::Handle<i::Context> env = Utils::OpenHandle(this);
5463   env->set_security_token(env->global_object());
5464 }
5465
5466
5467 Local<Value> v8::Context::GetSecurityToken() {
5468   i::Handle<i::Context> env = Utils::OpenHandle(this);
5469   i::Isolate* isolate = env->GetIsolate();
5470   i::Object* security_token = env->security_token();
5471   i::Handle<i::Object> token_handle(security_token, isolate);
5472   return Utils::ToLocal(token_handle);
5473 }
5474
5475
5476 v8::Isolate* Context::GetIsolate() {
5477   i::Handle<i::Context> env = Utils::OpenHandle(this);
5478   return reinterpret_cast<Isolate*>(env->GetIsolate());
5479 }
5480
5481
5482 v8::Local<v8::Object> Context::Global() {
5483   i::Handle<i::Context> context = Utils::OpenHandle(this);
5484   i::Isolate* isolate = context->GetIsolate();
5485   i::Handle<i::Object> global(context->global_proxy(), isolate);
5486   // TODO(dcarney): This should always return the global proxy
5487   // but can't presently as calls to GetProtoype will return the wrong result.
5488   if (i::Handle<i::JSGlobalProxy>::cast(
5489           global)->IsDetachedFrom(context->global_object())) {
5490     global = i::Handle<i::Object>(context->global_object(), isolate);
5491   }
5492   return Utils::ToLocal(i::Handle<i::JSObject>::cast(global));
5493 }
5494
5495
5496 void Context::DetachGlobal() {
5497   i::Handle<i::Context> context = Utils::OpenHandle(this);
5498   i::Isolate* isolate = context->GetIsolate();
5499   ENTER_V8(isolate);
5500   isolate->bootstrapper()->DetachGlobal(context);
5501 }
5502
5503
5504 Local<v8::Object> Context::GetExtrasBindingObject() {
5505   i::Handle<i::Context> context = Utils::OpenHandle(this);
5506   i::Isolate* isolate = context->GetIsolate();
5507   i::Handle<i::JSObject> binding(context->extras_binding_object(), isolate);
5508   return Utils::ToLocal(binding);
5509 }
5510
5511
5512 void Context::AllowCodeGenerationFromStrings(bool allow) {
5513   i::Handle<i::Context> context = Utils::OpenHandle(this);
5514   i::Isolate* isolate = context->GetIsolate();
5515   ENTER_V8(isolate);
5516   context->set_allow_code_gen_from_strings(
5517       allow ? isolate->heap()->true_value() : isolate->heap()->false_value());
5518 }
5519
5520
5521 bool Context::IsCodeGenerationFromStringsAllowed() {
5522   i::Handle<i::Context> context = Utils::OpenHandle(this);
5523   return !context->allow_code_gen_from_strings()->IsFalse();
5524 }
5525
5526
5527 void Context::SetErrorMessageForCodeGenerationFromStrings(Local<String> error) {
5528   i::Handle<i::Context> context = Utils::OpenHandle(this);
5529   i::Handle<i::String> error_handle = Utils::OpenHandle(*error);
5530   context->set_error_message_for_code_gen_from_strings(*error_handle);
5531 }
5532
5533
5534 size_t Context::EstimatedSize() {
5535   return static_cast<size_t>(
5536       i::ContextMeasure(*Utils::OpenHandle(this)).Size());
5537 }
5538
5539
5540 MaybeLocal<v8::Object> ObjectTemplate::NewInstance(Local<Context> context) {
5541   PREPARE_FOR_EXECUTION(context, "v8::ObjectTemplate::NewInstance()", Object);
5542   auto self = Utils::OpenHandle(this);
5543   Local<Object> result;
5544   has_pending_exception =
5545       !ToLocal<Object>(i::ApiNatives::InstantiateObject(self), &result);
5546   RETURN_ON_FAILED_EXECUTION(Object);
5547   RETURN_ESCAPED(result);
5548 }
5549
5550
5551 Local<v8::Object> ObjectTemplate::NewInstance() {
5552   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
5553   RETURN_TO_LOCAL_UNCHECKED(NewInstance(context), Object);
5554 }
5555
5556
5557 MaybeLocal<v8::Function> FunctionTemplate::GetFunction(Local<Context> context) {
5558   PREPARE_FOR_EXECUTION(context, "v8::FunctionTemplate::GetFunction()",
5559                         Function);
5560   auto self = Utils::OpenHandle(this);
5561   Local<Function> result;
5562   has_pending_exception =
5563       !ToLocal<Function>(i::ApiNatives::InstantiateFunction(self), &result);
5564   RETURN_ON_FAILED_EXECUTION(Function);
5565   RETURN_ESCAPED(result);
5566 }
5567
5568
5569 Local<v8::Function> FunctionTemplate::GetFunction() {
5570   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
5571   RETURN_TO_LOCAL_UNCHECKED(GetFunction(context), Function);
5572 }
5573
5574
5575 bool FunctionTemplate::HasInstance(v8::Local<v8::Value> value) {
5576   auto self = Utils::OpenHandle(this);
5577   auto obj = Utils::OpenHandle(*value);
5578   return self->IsTemplateFor(*obj);
5579 }
5580
5581
5582 Local<External> v8::External::New(Isolate* isolate, void* value) {
5583   STATIC_ASSERT(sizeof(value) == sizeof(i::Address));
5584   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
5585   LOG_API(i_isolate, "External::New");
5586   ENTER_V8(i_isolate);
5587   i::Handle<i::JSObject> external = i_isolate->factory()->NewExternal(value);
5588   return Utils::ExternalToLocal(external);
5589 }
5590
5591
5592 void* External::Value() const {
5593   return ExternalValue(*Utils::OpenHandle(this));
5594 }
5595
5596
5597 // anonymous namespace for string creation helper functions
5598 namespace {
5599
5600 inline int StringLength(const char* string) {
5601   return i::StrLength(string);
5602 }
5603
5604
5605 inline int StringLength(const uint8_t* string) {
5606   return i::StrLength(reinterpret_cast<const char*>(string));
5607 }
5608
5609
5610 inline int StringLength(const uint16_t* string) {
5611   int length = 0;
5612   while (string[length] != '\0')
5613     length++;
5614   return length;
5615 }
5616
5617
5618 MUST_USE_RESULT
5619 inline i::MaybeHandle<i::String> NewString(i::Factory* factory,
5620                                            v8::NewStringType type,
5621                                            i::Vector<const char> string) {
5622   if (type == v8::NewStringType::kInternalized) {
5623     return factory->InternalizeUtf8String(string);
5624   }
5625   return factory->NewStringFromUtf8(string);
5626 }
5627
5628
5629 MUST_USE_RESULT
5630 inline i::MaybeHandle<i::String> NewString(i::Factory* factory,
5631                                            v8::NewStringType type,
5632                                            i::Vector<const uint8_t> string) {
5633   if (type == v8::NewStringType::kInternalized) {
5634     return factory->InternalizeOneByteString(string);
5635   }
5636   return factory->NewStringFromOneByte(string);
5637 }
5638
5639
5640 MUST_USE_RESULT
5641 inline i::MaybeHandle<i::String> NewString(i::Factory* factory,
5642                                            v8::NewStringType type,
5643                                            i::Vector<const uint16_t> string) {
5644   if (type == v8::NewStringType::kInternalized) {
5645     return factory->InternalizeTwoByteString(string);
5646   }
5647   return factory->NewStringFromTwoByte(string);
5648 }
5649
5650
5651 STATIC_ASSERT(v8::String::kMaxLength == i::String::kMaxLength);
5652
5653
5654 template <typename Char>
5655 inline MaybeLocal<String> NewString(Isolate* v8_isolate, const char* location,
5656                                     const char* env, const Char* data,
5657                                     v8::NewStringType type, int length) {
5658   i::Isolate* isolate = reinterpret_cast<internal::Isolate*>(v8_isolate);
5659   if (length == 0) return String::Empty(v8_isolate);
5660   // TODO(dcarney): throw a context free exception.
5661   if (length > i::String::kMaxLength) return MaybeLocal<String>();
5662   ENTER_V8(isolate);
5663   LOG_API(isolate, env);
5664   if (length < 0) length = StringLength(data);
5665   i::Handle<i::String> result =
5666       NewString(isolate->factory(), type, i::Vector<const Char>(data, length))
5667           .ToHandleChecked();
5668   return Utils::ToLocal(result);
5669 }
5670
5671 }  // anonymous namespace
5672
5673
5674 Local<String> String::NewFromUtf8(Isolate* isolate,
5675                                   const char* data,
5676                                   NewStringType type,
5677                                   int length) {
5678   RETURN_TO_LOCAL_UNCHECKED(
5679       NewString(isolate, "v8::String::NewFromUtf8()", "String::NewFromUtf8",
5680                 data, static_cast<v8::NewStringType>(type), length),
5681       String);
5682 }
5683
5684
5685 MaybeLocal<String> String::NewFromUtf8(Isolate* isolate, const char* data,
5686                                        v8::NewStringType type, int length) {
5687   return NewString(isolate, "v8::String::NewFromUtf8()", "String::NewFromUtf8",
5688                    data, type, length);
5689 }
5690
5691
5692 Local<String> String::NewFromOneByte(Isolate* isolate,
5693                                      const uint8_t* data,
5694                                      NewStringType type,
5695                                      int length) {
5696   RETURN_TO_LOCAL_UNCHECKED(
5697       NewString(isolate, "v8::String::NewFromOneByte()",
5698                 "String::NewFromOneByte", data,
5699                 static_cast<v8::NewStringType>(type), length),
5700       String);
5701 }
5702
5703
5704 MaybeLocal<String> String::NewFromOneByte(Isolate* isolate, const uint8_t* data,
5705                                           v8::NewStringType type, int length) {
5706   return NewString(isolate, "v8::String::NewFromOneByte()",
5707                    "String::NewFromOneByte", data, type, length);
5708 }
5709
5710
5711 Local<String> String::NewFromTwoByte(Isolate* isolate,
5712                                      const uint16_t* data,
5713                                      NewStringType type,
5714                                      int length) {
5715   RETURN_TO_LOCAL_UNCHECKED(
5716       NewString(isolate, "v8::String::NewFromTwoByte()",
5717                 "String::NewFromTwoByte", data,
5718                 static_cast<v8::NewStringType>(type), length),
5719       String);
5720 }
5721
5722
5723 MaybeLocal<String> String::NewFromTwoByte(Isolate* isolate,
5724                                           const uint16_t* data,
5725                                           v8::NewStringType type, int length) {
5726   return NewString(isolate, "v8::String::NewFromTwoByte()",
5727                    "String::NewFromTwoByte", data, type, length);
5728 }
5729
5730
5731 Local<String> v8::String::Concat(Local<String> left, Local<String> right) {
5732   i::Handle<i::String> left_string = Utils::OpenHandle(*left);
5733   i::Isolate* isolate = left_string->GetIsolate();
5734   ENTER_V8(isolate);
5735   LOG_API(isolate, "v8::String::Concat");
5736   i::Handle<i::String> right_string = Utils::OpenHandle(*right);
5737   // If we are steering towards a range error, do not wait for the error to be
5738   // thrown, and return the null handle instead.
5739   if (left_string->length() + right_string->length() > i::String::kMaxLength) {
5740     return Local<String>();
5741   }
5742   i::Handle<i::String> result = isolate->factory()->NewConsString(
5743       left_string, right_string).ToHandleChecked();
5744   return Utils::ToLocal(result);
5745 }
5746
5747
5748 MaybeLocal<String> v8::String::NewExternalTwoByte(
5749     Isolate* isolate, v8::String::ExternalStringResource* resource) {
5750   CHECK(resource && resource->data());
5751   // TODO(dcarney): throw a context free exception.
5752   if (resource->length() > static_cast<size_t>(i::String::kMaxLength)) {
5753     return MaybeLocal<String>();
5754   }
5755   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
5756   ENTER_V8(i_isolate);
5757   LOG_API(i_isolate, "String::NewExternalTwoByte");
5758   i::Handle<i::String> string = i_isolate->factory()
5759                                     ->NewExternalStringFromTwoByte(resource)
5760                                     .ToHandleChecked();
5761   i_isolate->heap()->RegisterExternalString(*string);
5762   return Utils::ToLocal(string);
5763 }
5764
5765
5766 Local<String> v8::String::NewExternal(
5767     Isolate* isolate, v8::String::ExternalStringResource* resource) {
5768   RETURN_TO_LOCAL_UNCHECKED(NewExternalTwoByte(isolate, resource), String);
5769 }
5770
5771
5772 MaybeLocal<String> v8::String::NewExternalOneByte(
5773     Isolate* isolate, v8::String::ExternalOneByteStringResource* resource) {
5774   CHECK(resource && resource->data());
5775   // TODO(dcarney): throw a context free exception.
5776   if (resource->length() > static_cast<size_t>(i::String::kMaxLength)) {
5777     return MaybeLocal<String>();
5778   }
5779   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
5780   ENTER_V8(i_isolate);
5781   LOG_API(i_isolate, "String::NewExternalOneByte");
5782   i::Handle<i::String> string = i_isolate->factory()
5783                                     ->NewExternalStringFromOneByte(resource)
5784                                     .ToHandleChecked();
5785   i_isolate->heap()->RegisterExternalString(*string);
5786   return Utils::ToLocal(string);
5787 }
5788
5789
5790 Local<String> v8::String::NewExternal(
5791     Isolate* isolate, v8::String::ExternalOneByteStringResource* resource) {
5792   RETURN_TO_LOCAL_UNCHECKED(NewExternalOneByte(isolate, resource), String);
5793 }
5794
5795
5796 bool v8::String::MakeExternal(v8::String::ExternalStringResource* resource) {
5797   i::Handle<i::String> obj = Utils::OpenHandle(this);
5798   i::Isolate* isolate = obj->GetIsolate();
5799   if (i::StringShape(*obj).IsExternal()) {
5800     return false;  // Already an external string.
5801   }
5802   ENTER_V8(isolate);
5803   if (isolate->heap()->IsInGCPostProcessing()) {
5804     return false;
5805   }
5806   CHECK(resource && resource->data());
5807
5808   bool result = obj->MakeExternal(resource);
5809   // Assert that if CanMakeExternal(), then externalizing actually succeeds.
5810   DCHECK(!CanMakeExternal() || result);
5811   if (result) {
5812     DCHECK(obj->IsExternalString());
5813     isolate->heap()->RegisterExternalString(*obj);
5814   }
5815   return result;
5816 }
5817
5818
5819 bool v8::String::MakeExternal(
5820     v8::String::ExternalOneByteStringResource* resource) {
5821   i::Handle<i::String> obj = Utils::OpenHandle(this);
5822   i::Isolate* isolate = obj->GetIsolate();
5823   if (i::StringShape(*obj).IsExternal()) {
5824     return false;  // Already an external string.
5825   }
5826   ENTER_V8(isolate);
5827   if (isolate->heap()->IsInGCPostProcessing()) {
5828     return false;
5829   }
5830   CHECK(resource && resource->data());
5831
5832   bool result = obj->MakeExternal(resource);
5833   // Assert that if CanMakeExternal(), then externalizing actually succeeds.
5834   DCHECK(!CanMakeExternal() || result);
5835   if (result) {
5836     DCHECK(obj->IsExternalString());
5837     isolate->heap()->RegisterExternalString(*obj);
5838   }
5839   return result;
5840 }
5841
5842
5843 bool v8::String::CanMakeExternal() {
5844   i::Handle<i::String> obj = Utils::OpenHandle(this);
5845   i::Isolate* isolate = obj->GetIsolate();
5846
5847   // Old space strings should be externalized.
5848   if (!isolate->heap()->new_space()->Contains(*obj)) return true;
5849   int size = obj->Size();  // Byte size of the original string.
5850   if (size <= i::ExternalString::kShortSize) return false;
5851   i::StringShape shape(*obj);
5852   return !shape.IsExternal();
5853 }
5854
5855
5856 Isolate* v8::Object::GetIsolate() {
5857   i::Isolate* i_isolate = Utils::OpenHandle(this)->GetIsolate();
5858   return reinterpret_cast<Isolate*>(i_isolate);
5859 }
5860
5861
5862 Local<v8::Object> v8::Object::New(Isolate* isolate) {
5863   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
5864   LOG_API(i_isolate, "Object::New");
5865   ENTER_V8(i_isolate);
5866   i::Handle<i::JSObject> obj =
5867       i_isolate->factory()->NewJSObject(i_isolate->object_function());
5868   return Utils::ToLocal(obj);
5869 }
5870
5871
5872 Local<v8::Value> v8::NumberObject::New(Isolate* isolate, double value) {
5873   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
5874   LOG_API(i_isolate, "NumberObject::New");
5875   ENTER_V8(i_isolate);
5876   i::Handle<i::Object> number = i_isolate->factory()->NewNumber(value);
5877   i::Handle<i::Object> obj =
5878       i::Object::ToObject(i_isolate, number).ToHandleChecked();
5879   return Utils::ToLocal(obj);
5880 }
5881
5882
5883 double v8::NumberObject::ValueOf() const {
5884   i::Handle<i::Object> obj = Utils::OpenHandle(this);
5885   i::Handle<i::JSValue> jsvalue = i::Handle<i::JSValue>::cast(obj);
5886   i::Isolate* isolate = jsvalue->GetIsolate();
5887   LOG_API(isolate, "NumberObject::NumberValue");
5888   return jsvalue->value()->Number();
5889 }
5890
5891
5892 Local<v8::Value> v8::BooleanObject::New(bool value) {
5893   i::Isolate* isolate = i::Isolate::Current();
5894   LOG_API(isolate, "BooleanObject::New");
5895   ENTER_V8(isolate);
5896   i::Handle<i::Object> boolean(value
5897                                ? isolate->heap()->true_value()
5898                                : isolate->heap()->false_value(),
5899                                isolate);
5900   i::Handle<i::Object> obj =
5901       i::Object::ToObject(isolate, boolean).ToHandleChecked();
5902   return Utils::ToLocal(obj);
5903 }
5904
5905
5906 bool v8::BooleanObject::ValueOf() const {
5907   i::Handle<i::Object> obj = Utils::OpenHandle(this);
5908   i::Handle<i::JSValue> jsvalue = i::Handle<i::JSValue>::cast(obj);
5909   i::Isolate* isolate = jsvalue->GetIsolate();
5910   LOG_API(isolate, "BooleanObject::BooleanValue");
5911   return jsvalue->value()->IsTrue();
5912 }
5913
5914
5915 Local<v8::Value> v8::StringObject::New(Local<String> value) {
5916   i::Handle<i::String> string = Utils::OpenHandle(*value);
5917   i::Isolate* isolate = string->GetIsolate();
5918   LOG_API(isolate, "StringObject::New");
5919   ENTER_V8(isolate);
5920   i::Handle<i::Object> obj =
5921       i::Object::ToObject(isolate, string).ToHandleChecked();
5922   return Utils::ToLocal(obj);
5923 }
5924
5925
5926 Local<v8::String> v8::StringObject::ValueOf() const {
5927   i::Handle<i::Object> obj = Utils::OpenHandle(this);
5928   i::Handle<i::JSValue> jsvalue = i::Handle<i::JSValue>::cast(obj);
5929   i::Isolate* isolate = jsvalue->GetIsolate();
5930   LOG_API(isolate, "StringObject::StringValue");
5931   return Utils::ToLocal(
5932       i::Handle<i::String>(i::String::cast(jsvalue->value())));
5933 }
5934
5935
5936 Local<v8::Value> v8::SymbolObject::New(Isolate* isolate, Local<Symbol> value) {
5937   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
5938   LOG_API(i_isolate, "SymbolObject::New");
5939   ENTER_V8(i_isolate);
5940   i::Handle<i::Object> obj = i::Object::ToObject(
5941       i_isolate, Utils::OpenHandle(*value)).ToHandleChecked();
5942   return Utils::ToLocal(obj);
5943 }
5944
5945
5946 Local<v8::Symbol> v8::SymbolObject::ValueOf() const {
5947   i::Handle<i::Object> obj = Utils::OpenHandle(this);
5948   i::Handle<i::JSValue> jsvalue = i::Handle<i::JSValue>::cast(obj);
5949   i::Isolate* isolate = jsvalue->GetIsolate();
5950   LOG_API(isolate, "SymbolObject::SymbolValue");
5951   return Utils::ToLocal(
5952       i::Handle<i::Symbol>(i::Symbol::cast(jsvalue->value())));
5953 }
5954
5955
5956 MaybeLocal<v8::Value> v8::Date::New(Local<Context> context, double time) {
5957   if (std::isnan(time)) {
5958     // Introduce only canonical NaN value into the VM, to avoid signaling NaNs.
5959     time = std::numeric_limits<double>::quiet_NaN();
5960   }
5961   PREPARE_FOR_EXECUTION(context, "Date::New", Value);
5962   Local<Value> result;
5963   has_pending_exception =
5964       !ToLocal<Value>(i::Execution::NewDate(isolate, time), &result);
5965   RETURN_ON_FAILED_EXECUTION(Value);
5966   RETURN_ESCAPED(result);
5967 }
5968
5969
5970 Local<v8::Value> v8::Date::New(Isolate* isolate, double time) {
5971   auto context = isolate->GetCurrentContext();
5972   RETURN_TO_LOCAL_UNCHECKED(New(context, time), Value);
5973 }
5974
5975
5976 double v8::Date::ValueOf() const {
5977   i::Handle<i::Object> obj = Utils::OpenHandle(this);
5978   i::Handle<i::JSDate> jsdate = i::Handle<i::JSDate>::cast(obj);
5979   i::Isolate* isolate = jsdate->GetIsolate();
5980   LOG_API(isolate, "Date::NumberValue");
5981   return jsdate->value()->Number();
5982 }
5983
5984
5985 void v8::Date::DateTimeConfigurationChangeNotification(Isolate* isolate) {
5986   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
5987   LOG_API(i_isolate, "Date::DateTimeConfigurationChangeNotification");
5988   ENTER_V8(i_isolate);
5989   i_isolate->date_cache()->ResetDateCache();
5990   if (!i_isolate->eternal_handles()->Exists(
5991           i::EternalHandles::DATE_CACHE_VERSION)) {
5992     return;
5993   }
5994   i::Handle<i::FixedArray> date_cache_version =
5995       i::Handle<i::FixedArray>::cast(i_isolate->eternal_handles()->GetSingleton(
5996           i::EternalHandles::DATE_CACHE_VERSION));
5997   DCHECK_EQ(1, date_cache_version->length());
5998   CHECK(date_cache_version->get(0)->IsSmi());
5999   date_cache_version->set(
6000       0,
6001       i::Smi::FromInt(i::Smi::cast(date_cache_version->get(0))->value() + 1));
6002 }
6003
6004
6005 static i::Handle<i::String> RegExpFlagsToString(RegExp::Flags flags) {
6006   i::Isolate* isolate = i::Isolate::Current();
6007   uint8_t flags_buf[3];
6008   int num_flags = 0;
6009   if ((flags & RegExp::kGlobal) != 0) flags_buf[num_flags++] = 'g';
6010   if ((flags & RegExp::kMultiline) != 0) flags_buf[num_flags++] = 'm';
6011   if ((flags & RegExp::kIgnoreCase) != 0) flags_buf[num_flags++] = 'i';
6012   DCHECK(num_flags <= static_cast<int>(arraysize(flags_buf)));
6013   return isolate->factory()->InternalizeOneByteString(
6014       i::Vector<const uint8_t>(flags_buf, num_flags));
6015 }
6016
6017
6018 MaybeLocal<v8::RegExp> v8::RegExp::New(Local<Context> context,
6019                                        Local<String> pattern, Flags flags) {
6020   PREPARE_FOR_EXECUTION(context, "RegExp::New", RegExp);
6021   Local<v8::RegExp> result;
6022   has_pending_exception =
6023       !ToLocal<RegExp>(i::Execution::NewJSRegExp(Utils::OpenHandle(*pattern),
6024                                                  RegExpFlagsToString(flags)),
6025                        &result);
6026   RETURN_ON_FAILED_EXECUTION(RegExp);
6027   RETURN_ESCAPED(result);
6028 }
6029
6030
6031 Local<v8::RegExp> v8::RegExp::New(Local<String> pattern, Flags flags) {
6032   auto isolate =
6033       reinterpret_cast<Isolate*>(Utils::OpenHandle(*pattern)->GetIsolate());
6034   auto context = isolate->GetCurrentContext();
6035   RETURN_TO_LOCAL_UNCHECKED(New(context, pattern, flags), RegExp);
6036 }
6037
6038
6039 Local<v8::String> v8::RegExp::GetSource() const {
6040   i::Handle<i::JSRegExp> obj = Utils::OpenHandle(this);
6041   return Utils::ToLocal(i::Handle<i::String>(obj->Pattern()));
6042 }
6043
6044
6045 // Assert that the static flags cast in GetFlags is valid.
6046 #define REGEXP_FLAG_ASSERT_EQ(api_flag, internal_flag)          \
6047   STATIC_ASSERT(static_cast<int>(v8::RegExp::api_flag) ==       \
6048                 static_cast<int>(i::JSRegExp::internal_flag))
6049 REGEXP_FLAG_ASSERT_EQ(kNone, NONE);
6050 REGEXP_FLAG_ASSERT_EQ(kGlobal, GLOBAL);
6051 REGEXP_FLAG_ASSERT_EQ(kIgnoreCase, IGNORE_CASE);
6052 REGEXP_FLAG_ASSERT_EQ(kMultiline, MULTILINE);
6053 #undef REGEXP_FLAG_ASSERT_EQ
6054
6055 v8::RegExp::Flags v8::RegExp::GetFlags() const {
6056   i::Handle<i::JSRegExp> obj = Utils::OpenHandle(this);
6057   return static_cast<RegExp::Flags>(obj->GetFlags().value());
6058 }
6059
6060
6061 Local<v8::Array> v8::Array::New(Isolate* isolate, int length) {
6062   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
6063   LOG_API(i_isolate, "Array::New");
6064   ENTER_V8(i_isolate);
6065   int real_length = length > 0 ? length : 0;
6066   i::Handle<i::JSArray> obj = i_isolate->factory()->NewJSArray(real_length);
6067   i::Handle<i::Object> length_obj =
6068       i_isolate->factory()->NewNumberFromInt(real_length);
6069   obj->set_length(*length_obj);
6070   return Utils::ToLocal(obj);
6071 }
6072
6073
6074 uint32_t v8::Array::Length() const {
6075   i::Handle<i::JSArray> obj = Utils::OpenHandle(this);
6076   i::Object* length = obj->length();
6077   if (length->IsSmi()) {
6078     return i::Smi::cast(length)->value();
6079   } else {
6080     return static_cast<uint32_t>(length->Number());
6081   }
6082 }
6083
6084
6085 MaybeLocal<Object> Array::CloneElementAt(Local<Context> context,
6086                                          uint32_t index) {
6087   PREPARE_FOR_EXECUTION(context, "v8::Array::CloneElementAt()", Object);
6088   auto self = Utils::OpenHandle(this);
6089   if (!self->HasFastObjectElements()) return Local<Object>();
6090   i::FixedArray* elms = i::FixedArray::cast(self->elements());
6091   i::Object* paragon = elms->get(index);
6092   if (!paragon->IsJSObject()) return Local<Object>();
6093   i::Handle<i::JSObject> paragon_handle(i::JSObject::cast(paragon));
6094   Local<Object> result;
6095   has_pending_exception =
6096       !ToLocal<Object>(isolate->factory()->CopyJSObject(paragon_handle),
6097                        &result);
6098   RETURN_ON_FAILED_EXECUTION(Object);
6099   RETURN_ESCAPED(result);
6100 }
6101
6102
6103 Local<Object> Array::CloneElementAt(uint32_t index) {
6104   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
6105   RETURN_TO_LOCAL_UNCHECKED(CloneElementAt(context, index), Object);
6106 }
6107
6108
6109 Local<v8::Map> v8::Map::New(Isolate* isolate) {
6110   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
6111   LOG_API(i_isolate, "Map::New");
6112   ENTER_V8(i_isolate);
6113   i::Handle<i::JSMap> obj = i_isolate->factory()->NewJSMap();
6114   return Utils::ToLocal(obj);
6115 }
6116
6117
6118 size_t v8::Map::Size() const {
6119   i::Handle<i::JSMap> obj = Utils::OpenHandle(this);
6120   return i::OrderedHashMap::cast(obj->table())->NumberOfElements();
6121 }
6122
6123
6124 void Map::Clear() {
6125   auto self = Utils::OpenHandle(this);
6126   i::Isolate* isolate = self->GetIsolate();
6127   LOG_API(isolate, "Map::Clear");
6128   ENTER_V8(isolate);
6129   i::JSMap::Clear(self);
6130 }
6131
6132
6133 MaybeLocal<Value> Map::Get(Local<Context> context, Local<Value> key) {
6134   PREPARE_FOR_EXECUTION(context, "Map::Get", Value);
6135   auto self = Utils::OpenHandle(this);
6136   Local<Value> result;
6137   i::Handle<i::Object> argv[] = {Utils::OpenHandle(*key)};
6138   has_pending_exception =
6139       !ToLocal<Value>(i::Execution::Call(isolate, isolate->map_get(), self,
6140                                          arraysize(argv), argv),
6141                       &result);
6142   RETURN_ON_FAILED_EXECUTION(Value);
6143   RETURN_ESCAPED(result);
6144 }
6145
6146
6147 MaybeLocal<Map> Map::Set(Local<Context> context, Local<Value> key,
6148                          Local<Value> value) {
6149   PREPARE_FOR_EXECUTION(context, "Map::Set", Map);
6150   auto self = Utils::OpenHandle(this);
6151   i::Handle<i::Object> result;
6152   i::Handle<i::Object> argv[] = {Utils::OpenHandle(*key),
6153                                  Utils::OpenHandle(*value)};
6154   has_pending_exception = !i::Execution::Call(isolate, isolate->map_set(), self,
6155                                               arraysize(argv), argv)
6156                                .ToHandle(&result);
6157   RETURN_ON_FAILED_EXECUTION(Map);
6158   RETURN_ESCAPED(Local<Map>::Cast(Utils::ToLocal(result)));
6159 }
6160
6161
6162 Maybe<bool> Map::Has(Local<Context> context, Local<Value> key) {
6163   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "Map::Has", bool);
6164   auto self = Utils::OpenHandle(this);
6165   i::Handle<i::Object> result;
6166   i::Handle<i::Object> argv[] = {Utils::OpenHandle(*key)};
6167   has_pending_exception = !i::Execution::Call(isolate, isolate->map_has(), self,
6168                                               arraysize(argv), argv)
6169                                .ToHandle(&result);
6170   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
6171   return Just(result->IsTrue());
6172 }
6173
6174
6175 Maybe<bool> Map::Delete(Local<Context> context, Local<Value> key) {
6176   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "Map::Delete", bool);
6177   auto self = Utils::OpenHandle(this);
6178   i::Handle<i::Object> result;
6179   i::Handle<i::Object> argv[] = {Utils::OpenHandle(*key)};
6180   has_pending_exception = !i::Execution::Call(isolate, isolate->map_delete(),
6181                                               self, arraysize(argv), argv)
6182                                .ToHandle(&result);
6183   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
6184   return Just(result->IsTrue());
6185 }
6186
6187
6188 Local<Array> Map::AsArray() const {
6189   i::Handle<i::JSMap> obj = Utils::OpenHandle(this);
6190   i::Isolate* isolate = obj->GetIsolate();
6191   i::Factory* factory = isolate->factory();
6192   LOG_API(isolate, "Map::AsArray");
6193   ENTER_V8(isolate);
6194   i::Handle<i::OrderedHashMap> table(i::OrderedHashMap::cast(obj->table()));
6195   int size = table->NumberOfElements();
6196   int length = size * 2;
6197   i::Handle<i::FixedArray> result = factory->NewFixedArray(length);
6198   for (int i = 0; i < size; ++i) {
6199     if (table->KeyAt(i)->IsTheHole()) continue;
6200     result->set(i * 2, table->KeyAt(i));
6201     result->set(i * 2 + 1, table->ValueAt(i));
6202   }
6203   i::Handle<i::JSArray> result_array =
6204       factory->NewJSArrayWithElements(result, i::FAST_ELEMENTS, length);
6205   return Utils::ToLocal(result_array);
6206 }
6207
6208
6209 MaybeLocal<Map> Map::FromArray(Local<Context> context, Local<Array> array) {
6210   PREPARE_FOR_EXECUTION(context, "Map::FromArray", Map);
6211   if (array->Length() % 2 != 0) {
6212     return MaybeLocal<Map>();
6213   }
6214   i::Handle<i::Object> result;
6215   i::Handle<i::Object> argv[] = {Utils::OpenHandle(*array)};
6216   has_pending_exception =
6217       !i::Execution::Call(isolate, isolate->map_from_array(),
6218                           isolate->factory()->undefined_value(),
6219                           arraysize(argv), argv)
6220            .ToHandle(&result);
6221   RETURN_ON_FAILED_EXECUTION(Map);
6222   RETURN_ESCAPED(Local<Map>::Cast(Utils::ToLocal(result)));
6223 }
6224
6225
6226 Local<v8::Set> v8::Set::New(Isolate* isolate) {
6227   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
6228   LOG_API(i_isolate, "Set::New");
6229   ENTER_V8(i_isolate);
6230   i::Handle<i::JSSet> obj = i_isolate->factory()->NewJSSet();
6231   return Utils::ToLocal(obj);
6232 }
6233
6234
6235 size_t v8::Set::Size() const {
6236   i::Handle<i::JSSet> obj = Utils::OpenHandle(this);
6237   return i::OrderedHashSet::cast(obj->table())->NumberOfElements();
6238 }
6239
6240
6241 void Set::Clear() {
6242   auto self = Utils::OpenHandle(this);
6243   i::Isolate* isolate = self->GetIsolate();
6244   LOG_API(isolate, "Set::Clear");
6245   ENTER_V8(isolate);
6246   i::JSSet::Clear(self);
6247 }
6248
6249
6250 MaybeLocal<Set> Set::Add(Local<Context> context, Local<Value> key) {
6251   PREPARE_FOR_EXECUTION(context, "Set::Add", Set);
6252   auto self = Utils::OpenHandle(this);
6253   i::Handle<i::Object> result;
6254   i::Handle<i::Object> argv[] = {Utils::OpenHandle(*key)};
6255   has_pending_exception = !i::Execution::Call(isolate, isolate->set_add(), self,
6256                                               arraysize(argv), argv)
6257                                .ToHandle(&result);
6258   RETURN_ON_FAILED_EXECUTION(Set);
6259   RETURN_ESCAPED(Local<Set>::Cast(Utils::ToLocal(result)));
6260 }
6261
6262
6263 Maybe<bool> Set::Has(Local<Context> context, Local<Value> key) {
6264   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "Set::Has", bool);
6265   auto self = Utils::OpenHandle(this);
6266   i::Handle<i::Object> result;
6267   i::Handle<i::Object> argv[] = {Utils::OpenHandle(*key)};
6268   has_pending_exception = !i::Execution::Call(isolate, isolate->set_has(), self,
6269                                               arraysize(argv), argv)
6270                                .ToHandle(&result);
6271   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
6272   return Just(result->IsTrue());
6273 }
6274
6275
6276 Maybe<bool> Set::Delete(Local<Context> context, Local<Value> key) {
6277   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "Set::Delete", bool);
6278   auto self = Utils::OpenHandle(this);
6279   i::Handle<i::Object> result;
6280   i::Handle<i::Object> argv[] = {Utils::OpenHandle(*key)};
6281   has_pending_exception = !i::Execution::Call(isolate, isolate->set_delete(),
6282                                               self, arraysize(argv), argv)
6283                                .ToHandle(&result);
6284   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
6285   return Just(result->IsTrue());
6286 }
6287
6288
6289 Local<Array> Set::AsArray() const {
6290   i::Handle<i::JSSet> obj = Utils::OpenHandle(this);
6291   i::Isolate* isolate = obj->GetIsolate();
6292   i::Factory* factory = isolate->factory();
6293   LOG_API(isolate, "Set::AsArray");
6294   ENTER_V8(isolate);
6295   i::Handle<i::OrderedHashSet> table(i::OrderedHashSet::cast(obj->table()));
6296   int length = table->NumberOfElements();
6297   i::Handle<i::FixedArray> result = factory->NewFixedArray(length);
6298   for (int i = 0; i < length; ++i) {
6299     i::Object* key = table->KeyAt(i);
6300     if (!key->IsTheHole()) {
6301       result->set(i, key);
6302     }
6303   }
6304   i::Handle<i::JSArray> result_array =
6305       factory->NewJSArrayWithElements(result, i::FAST_ELEMENTS, length);
6306   return Utils::ToLocal(result_array);
6307 }
6308
6309
6310 MaybeLocal<Set> Set::FromArray(Local<Context> context, Local<Array> array) {
6311   PREPARE_FOR_EXECUTION(context, "Set::FromArray", Set);
6312   i::Handle<i::Object> result;
6313   i::Handle<i::Object> argv[] = {Utils::OpenHandle(*array)};
6314   has_pending_exception =
6315       !i::Execution::Call(isolate, isolate->set_from_array(),
6316                           isolate->factory()->undefined_value(),
6317                           arraysize(argv), argv)
6318            .ToHandle(&result);
6319   RETURN_ON_FAILED_EXECUTION(Set);
6320   RETURN_ESCAPED(Local<Set>::Cast(Utils::ToLocal(result)));
6321 }
6322
6323
6324 bool Value::IsPromise() const {
6325   auto self = Utils::OpenHandle(this);
6326   return i::Object::IsPromise(self);
6327 }
6328
6329
6330 MaybeLocal<Promise::Resolver> Promise::Resolver::New(Local<Context> context) {
6331   PREPARE_FOR_EXECUTION(context, "Promise::Resolver::New", Resolver);
6332   i::Handle<i::Object> result;
6333   has_pending_exception =
6334       !i::Execution::Call(isolate, isolate->promise_create(),
6335                           isolate->factory()->undefined_value(), 0, NULL)
6336            .ToHandle(&result);
6337   RETURN_ON_FAILED_EXECUTION(Promise::Resolver);
6338   RETURN_ESCAPED(Local<Promise::Resolver>::Cast(Utils::ToLocal(result)));
6339 }
6340
6341
6342 Local<Promise::Resolver> Promise::Resolver::New(Isolate* isolate) {
6343   RETURN_TO_LOCAL_UNCHECKED(New(isolate->GetCurrentContext()),
6344                             Promise::Resolver);
6345 }
6346
6347
6348 Local<Promise> Promise::Resolver::GetPromise() {
6349   i::Handle<i::JSObject> promise = Utils::OpenHandle(this);
6350   return Local<Promise>::Cast(Utils::ToLocal(promise));
6351 }
6352
6353
6354 Maybe<bool> Promise::Resolver::Resolve(Local<Context> context,
6355                                        Local<Value> value) {
6356   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "Promise::Resolver::Resolve", bool);
6357   auto self = Utils::OpenHandle(this);
6358   i::Handle<i::Object> argv[] = {self, Utils::OpenHandle(*value)};
6359   has_pending_exception =
6360       i::Execution::Call(isolate, isolate->promise_resolve(),
6361                          isolate->factory()->undefined_value(), arraysize(argv),
6362                          argv)
6363           .is_null();
6364   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
6365   return Just(true);
6366 }
6367
6368
6369 void Promise::Resolver::Resolve(Local<Value> value) {
6370   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
6371   USE(Resolve(context, value));
6372 }
6373
6374
6375 Maybe<bool> Promise::Resolver::Reject(Local<Context> context,
6376                                       Local<Value> value) {
6377   PREPARE_FOR_EXECUTION_PRIMITIVE(context, "Promise::Resolver::Resolve", bool);
6378   auto self = Utils::OpenHandle(this);
6379   i::Handle<i::Object> argv[] = {self, Utils::OpenHandle(*value)};
6380   has_pending_exception =
6381       i::Execution::Call(isolate, isolate->promise_reject(),
6382                          isolate->factory()->undefined_value(), arraysize(argv),
6383                          argv)
6384           .is_null();
6385   RETURN_ON_FAILED_EXECUTION_PRIMITIVE(bool);
6386   return Just(true);
6387 }
6388
6389
6390 void Promise::Resolver::Reject(Local<Value> value) {
6391   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
6392   USE(Reject(context, value));
6393 }
6394
6395
6396 MaybeLocal<Promise> Promise::Chain(Local<Context> context,
6397                                    Local<Function> handler) {
6398   PREPARE_FOR_EXECUTION(context, "Promise::Chain", Promise);
6399   auto self = Utils::OpenHandle(this);
6400   i::Handle<i::Object> argv[] = {Utils::OpenHandle(*handler)};
6401   i::Handle<i::Object> result;
6402   has_pending_exception = !i::Execution::Call(isolate, isolate->promise_chain(),
6403                                               self, arraysize(argv), argv)
6404                                .ToHandle(&result);
6405   RETURN_ON_FAILED_EXECUTION(Promise);
6406   RETURN_ESCAPED(Local<Promise>::Cast(Utils::ToLocal(result)));
6407 }
6408
6409
6410 Local<Promise> Promise::Chain(Local<Function> handler) {
6411   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
6412   RETURN_TO_LOCAL_UNCHECKED(Chain(context, handler), Promise);
6413 }
6414
6415
6416 MaybeLocal<Promise> Promise::Catch(Local<Context> context,
6417                                    Local<Function> handler) {
6418   PREPARE_FOR_EXECUTION(context, "Promise::Catch", Promise);
6419   auto self = Utils::OpenHandle(this);
6420   i::Handle<i::Object> argv[] = { Utils::OpenHandle(*handler) };
6421   i::Handle<i::Object> result;
6422   has_pending_exception = !i::Execution::Call(isolate, isolate->promise_catch(),
6423                                               self, arraysize(argv), argv)
6424                                .ToHandle(&result);
6425   RETURN_ON_FAILED_EXECUTION(Promise);
6426   RETURN_ESCAPED(Local<Promise>::Cast(Utils::ToLocal(result)));
6427 }
6428
6429
6430 Local<Promise> Promise::Catch(Local<Function> handler) {
6431   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
6432   RETURN_TO_LOCAL_UNCHECKED(Catch(context, handler), Promise);
6433 }
6434
6435
6436 MaybeLocal<Promise> Promise::Then(Local<Context> context,
6437                                   Local<Function> handler) {
6438   PREPARE_FOR_EXECUTION(context, "Promise::Then", Promise);
6439   auto self = Utils::OpenHandle(this);
6440   i::Handle<i::Object> argv[] = { Utils::OpenHandle(*handler) };
6441   i::Handle<i::Object> result;
6442   has_pending_exception = !i::Execution::Call(isolate, isolate->promise_then(),
6443                                               self, arraysize(argv), argv)
6444                                .ToHandle(&result);
6445   RETURN_ON_FAILED_EXECUTION(Promise);
6446   RETURN_ESCAPED(Local<Promise>::Cast(Utils::ToLocal(result)));
6447 }
6448
6449
6450 Local<Promise> Promise::Then(Local<Function> handler) {
6451   auto context = ContextFromHeapObject(Utils::OpenHandle(this));
6452   RETURN_TO_LOCAL_UNCHECKED(Then(context, handler), Promise);
6453 }
6454
6455
6456 bool Promise::HasHandler() {
6457   i::Handle<i::JSObject> promise = Utils::OpenHandle(this);
6458   i::Isolate* isolate = promise->GetIsolate();
6459   LOG_API(isolate, "Promise::HasRejectHandler");
6460   ENTER_V8(isolate);
6461   i::Handle<i::Symbol> key = isolate->factory()->promise_has_handler_symbol();
6462   return i::JSReceiver::GetDataProperty(promise, key)->IsTrue();
6463 }
6464
6465
6466 bool v8::ArrayBuffer::IsExternal() const {
6467   return Utils::OpenHandle(this)->is_external();
6468 }
6469
6470
6471 bool v8::ArrayBuffer::IsNeuterable() const {
6472   return Utils::OpenHandle(this)->is_neuterable();
6473 }
6474
6475
6476 v8::ArrayBuffer::Contents v8::ArrayBuffer::Externalize() {
6477   i::Handle<i::JSArrayBuffer> self = Utils::OpenHandle(this);
6478   i::Isolate* isolate = self->GetIsolate();
6479   Utils::ApiCheck(!self->is_external(), "v8::ArrayBuffer::Externalize",
6480                   "ArrayBuffer already externalized");
6481   self->set_is_external(true);
6482   isolate->heap()->UnregisterArrayBuffer(*self);
6483
6484   return GetContents();
6485 }
6486
6487
6488 v8::ArrayBuffer::Contents v8::ArrayBuffer::GetContents() {
6489   i::Handle<i::JSArrayBuffer> self = Utils::OpenHandle(this);
6490   size_t byte_length = static_cast<size_t>(self->byte_length()->Number());
6491   Contents contents;
6492   contents.data_ = self->backing_store();
6493   contents.byte_length_ = byte_length;
6494   return contents;
6495 }
6496
6497
6498 void v8::ArrayBuffer::Neuter() {
6499   i::Handle<i::JSArrayBuffer> obj = Utils::OpenHandle(this);
6500   i::Isolate* isolate = obj->GetIsolate();
6501   Utils::ApiCheck(obj->is_external(),
6502                   "v8::ArrayBuffer::Neuter",
6503                   "Only externalized ArrayBuffers can be neutered");
6504   Utils::ApiCheck(obj->is_neuterable(), "v8::ArrayBuffer::Neuter",
6505                   "Only neuterable ArrayBuffers can be neutered");
6506   LOG_API(obj->GetIsolate(), "v8::ArrayBuffer::Neuter()");
6507   ENTER_V8(isolate);
6508   obj->Neuter();
6509 }
6510
6511
6512 size_t v8::ArrayBuffer::ByteLength() const {
6513   i::Handle<i::JSArrayBuffer> obj = Utils::OpenHandle(this);
6514   return static_cast<size_t>(obj->byte_length()->Number());
6515 }
6516
6517
6518 Local<ArrayBuffer> v8::ArrayBuffer::New(Isolate* isolate, size_t byte_length) {
6519   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
6520   LOG_API(i_isolate, "v8::ArrayBuffer::New(size_t)");
6521   ENTER_V8(i_isolate);
6522   i::Handle<i::JSArrayBuffer> obj =
6523       i_isolate->factory()->NewJSArrayBuffer(i::SharedFlag::kNotShared);
6524   i::JSArrayBuffer::SetupAllocatingData(obj, i_isolate, byte_length);
6525   return Utils::ToLocal(obj);
6526 }
6527
6528
6529 Local<ArrayBuffer> v8::ArrayBuffer::New(Isolate* isolate, void* data,
6530                                         size_t byte_length,
6531                                         ArrayBufferCreationMode mode) {
6532   // Embedders must guarantee that the external backing store is valid.
6533   CHECK(byte_length == 0 || data != NULL);
6534   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
6535   LOG_API(i_isolate, "v8::ArrayBuffer::New(void*, size_t)");
6536   ENTER_V8(i_isolate);
6537   i::Handle<i::JSArrayBuffer> obj =
6538       i_isolate->factory()->NewJSArrayBuffer(i::SharedFlag::kNotShared);
6539   i::JSArrayBuffer::Setup(obj, i_isolate,
6540                           mode == ArrayBufferCreationMode::kExternalized, data,
6541                           byte_length);
6542   return Utils::ToLocal(obj);
6543 }
6544
6545
6546 Local<ArrayBuffer> v8::ArrayBufferView::Buffer() {
6547   i::Handle<i::JSArrayBufferView> obj = Utils::OpenHandle(this);
6548   i::Handle<i::JSArrayBuffer> buffer;
6549   if (obj->IsJSDataView()) {
6550     i::Handle<i::JSDataView> data_view(i::JSDataView::cast(*obj));
6551     DCHECK(data_view->buffer()->IsJSArrayBuffer());
6552     buffer = i::handle(i::JSArrayBuffer::cast(data_view->buffer()));
6553   } else {
6554     DCHECK(obj->IsJSTypedArray());
6555     buffer = i::JSTypedArray::cast(*obj)->GetBuffer();
6556   }
6557   return Utils::ToLocal(buffer);
6558 }
6559
6560
6561 size_t v8::ArrayBufferView::CopyContents(void* dest, size_t byte_length) {
6562   i::Handle<i::JSArrayBufferView> self = Utils::OpenHandle(this);
6563   i::Isolate* isolate = self->GetIsolate();
6564   size_t byte_offset = i::NumberToSize(isolate, self->byte_offset());
6565   size_t bytes_to_copy =
6566       i::Min(byte_length, i::NumberToSize(isolate, self->byte_length()));
6567   if (bytes_to_copy) {
6568     i::DisallowHeapAllocation no_gc;
6569     i::Handle<i::JSArrayBuffer> buffer(i::JSArrayBuffer::cast(self->buffer()));
6570     const char* source = reinterpret_cast<char*>(buffer->backing_store());
6571     if (source == nullptr) {
6572       DCHECK(self->IsJSTypedArray());
6573       i::Handle<i::JSTypedArray> typed_array(i::JSTypedArray::cast(*self));
6574       i::Handle<i::FixedTypedArrayBase> fixed_array(
6575           i::FixedTypedArrayBase::cast(typed_array->elements()));
6576       source = reinterpret_cast<char*>(fixed_array->DataPtr());
6577     }
6578     memcpy(dest, source + byte_offset, bytes_to_copy);
6579   }
6580   return bytes_to_copy;
6581 }
6582
6583
6584 bool v8::ArrayBufferView::HasBuffer() const {
6585   i::Handle<i::JSArrayBufferView> self = Utils::OpenHandle(this);
6586   i::Handle<i::JSArrayBuffer> buffer(i::JSArrayBuffer::cast(self->buffer()));
6587   return buffer->backing_store() != nullptr;
6588 }
6589
6590
6591 size_t v8::ArrayBufferView::ByteOffset() {
6592   i::Handle<i::JSArrayBufferView> obj = Utils::OpenHandle(this);
6593   return static_cast<size_t>(obj->byte_offset()->Number());
6594 }
6595
6596
6597 size_t v8::ArrayBufferView::ByteLength() {
6598   i::Handle<i::JSArrayBufferView> obj = Utils::OpenHandle(this);
6599   return static_cast<size_t>(obj->byte_length()->Number());
6600 }
6601
6602
6603 size_t v8::TypedArray::Length() {
6604   i::Handle<i::JSTypedArray> obj = Utils::OpenHandle(this);
6605   return static_cast<size_t>(obj->length_value());
6606 }
6607
6608
6609 #define TYPED_ARRAY_NEW(Type, type, TYPE, ctype, size)                        \
6610   Local<Type##Array> Type##Array::New(Local<ArrayBuffer> array_buffer,        \
6611                                       size_t byte_offset, size_t length) {    \
6612     i::Isolate* isolate = Utils::OpenHandle(*array_buffer)->GetIsolate();     \
6613     LOG_API(isolate,                                                          \
6614             "v8::" #Type "Array::New(Local<ArrayBuffer>, size_t, size_t)");   \
6615     ENTER_V8(isolate);                                                        \
6616     if (!Utils::ApiCheck(length <= static_cast<size_t>(i::Smi::kMaxValue),    \
6617                          "v8::" #Type                                         \
6618                          "Array::New(Local<ArrayBuffer>, size_t, size_t)",    \
6619                          "length exceeds max allowed value")) {               \
6620       return Local<Type##Array>();                                            \
6621     }                                                                         \
6622     i::Handle<i::JSArrayBuffer> buffer = Utils::OpenHandle(*array_buffer);    \
6623     i::Handle<i::JSTypedArray> obj = isolate->factory()->NewJSTypedArray(     \
6624         i::kExternal##Type##Array, buffer, byte_offset, length);              \
6625     return Utils::ToLocal##Type##Array(obj);                                  \
6626   }                                                                           \
6627   Local<Type##Array> Type##Array::New(                                        \
6628       Local<SharedArrayBuffer> shared_array_buffer, size_t byte_offset,       \
6629       size_t length) {                                                        \
6630     CHECK(i::FLAG_harmony_sharedarraybuffer);                                 \
6631     i::Isolate* isolate =                                                     \
6632         Utils::OpenHandle(*shared_array_buffer)->GetIsolate();                \
6633     LOG_API(isolate, "v8::" #Type                                             \
6634                      "Array::New(Local<SharedArrayBuffer>, size_t, size_t)"); \
6635     ENTER_V8(isolate);                                                        \
6636     if (!Utils::ApiCheck(                                                     \
6637             length <= static_cast<size_t>(i::Smi::kMaxValue),                 \
6638             "v8::" #Type                                                      \
6639             "Array::New(Local<SharedArrayBuffer>, size_t, size_t)",           \
6640             "length exceeds max allowed value")) {                            \
6641       return Local<Type##Array>();                                            \
6642     }                                                                         \
6643     i::Handle<i::JSArrayBuffer> buffer =                                      \
6644         Utils::OpenHandle(*shared_array_buffer);                              \
6645     i::Handle<i::JSTypedArray> obj = isolate->factory()->NewJSTypedArray(     \
6646         i::kExternal##Type##Array, buffer, byte_offset, length);              \
6647     return Utils::ToLocal##Type##Array(obj);                                  \
6648   }
6649
6650
6651 TYPED_ARRAYS(TYPED_ARRAY_NEW)
6652 #undef TYPED_ARRAY_NEW
6653
6654 Local<DataView> DataView::New(Local<ArrayBuffer> array_buffer,
6655                               size_t byte_offset, size_t byte_length) {
6656   i::Handle<i::JSArrayBuffer> buffer = Utils::OpenHandle(*array_buffer);
6657   i::Isolate* isolate = buffer->GetIsolate();
6658   LOG_API(isolate, "v8::DataView::New(Local<ArrayBuffer>, size_t, size_t)");
6659   ENTER_V8(isolate);
6660   i::Handle<i::JSDataView> obj =
6661       isolate->factory()->NewJSDataView(buffer, byte_offset, byte_length);
6662   return Utils::ToLocal(obj);
6663 }
6664
6665
6666 Local<DataView> DataView::New(Local<SharedArrayBuffer> shared_array_buffer,
6667                               size_t byte_offset, size_t byte_length) {
6668   CHECK(i::FLAG_harmony_sharedarraybuffer);
6669   i::Handle<i::JSArrayBuffer> buffer = Utils::OpenHandle(*shared_array_buffer);
6670   i::Isolate* isolate = buffer->GetIsolate();
6671   LOG_API(isolate,
6672           "v8::DataView::New(Local<SharedArrayBuffer>, size_t, size_t)");
6673   ENTER_V8(isolate);
6674   i::Handle<i::JSDataView> obj =
6675       isolate->factory()->NewJSDataView(buffer, byte_offset, byte_length);
6676   return Utils::ToLocal(obj);
6677 }
6678
6679
6680 bool v8::SharedArrayBuffer::IsExternal() const {
6681   return Utils::OpenHandle(this)->is_external();
6682 }
6683
6684
6685 v8::SharedArrayBuffer::Contents v8::SharedArrayBuffer::Externalize() {
6686   i::Handle<i::JSArrayBuffer> self = Utils::OpenHandle(this);
6687   i::Isolate* isolate = self->GetIsolate();
6688   Utils::ApiCheck(!self->is_external(), "v8::SharedArrayBuffer::Externalize",
6689                   "SharedArrayBuffer already externalized");
6690   self->set_is_external(true);
6691   isolate->heap()->UnregisterArrayBuffer(*self);
6692   return GetContents();
6693 }
6694
6695
6696 v8::SharedArrayBuffer::Contents v8::SharedArrayBuffer::GetContents() {
6697   i::Handle<i::JSArrayBuffer> self = Utils::OpenHandle(this);
6698   size_t byte_length = static_cast<size_t>(self->byte_length()->Number());
6699   Contents contents;
6700   contents.data_ = self->backing_store();
6701   contents.byte_length_ = byte_length;
6702   return contents;
6703 }
6704
6705
6706 size_t v8::SharedArrayBuffer::ByteLength() const {
6707   i::Handle<i::JSArrayBuffer> obj = Utils::OpenHandle(this);
6708   return static_cast<size_t>(obj->byte_length()->Number());
6709 }
6710
6711
6712 Local<SharedArrayBuffer> v8::SharedArrayBuffer::New(Isolate* isolate,
6713                                                     size_t byte_length) {
6714   CHECK(i::FLAG_harmony_sharedarraybuffer);
6715   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
6716   LOG_API(i_isolate, "v8::SharedArrayBuffer::New(size_t)");
6717   ENTER_V8(i_isolate);
6718   i::Handle<i::JSArrayBuffer> obj =
6719       i_isolate->factory()->NewJSArrayBuffer(i::SharedFlag::kShared);
6720   i::JSArrayBuffer::SetupAllocatingData(obj, i_isolate, byte_length, true,
6721                                         i::SharedFlag::kShared);
6722   return Utils::ToLocalShared(obj);
6723 }
6724
6725
6726 Local<SharedArrayBuffer> v8::SharedArrayBuffer::New(
6727     Isolate* isolate, void* data, size_t byte_length,
6728     ArrayBufferCreationMode mode) {
6729   CHECK(i::FLAG_harmony_sharedarraybuffer);
6730   // Embedders must guarantee that the external backing store is valid.
6731   CHECK(byte_length == 0 || data != NULL);
6732   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
6733   LOG_API(i_isolate, "v8::SharedArrayBuffer::New(void*, size_t)");
6734   ENTER_V8(i_isolate);
6735   i::Handle<i::JSArrayBuffer> obj =
6736       i_isolate->factory()->NewJSArrayBuffer(i::SharedFlag::kShared);
6737   i::JSArrayBuffer::Setup(obj, i_isolate,
6738                           mode == ArrayBufferCreationMode::kExternalized, data,
6739                           byte_length, i::SharedFlag::kShared);
6740   return Utils::ToLocalShared(obj);
6741 }
6742
6743
6744 Local<Symbol> v8::Symbol::New(Isolate* isolate, Local<String> name) {
6745   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
6746   LOG_API(i_isolate, "Symbol::New()");
6747   ENTER_V8(i_isolate);
6748   i::Handle<i::Symbol> result = i_isolate->factory()->NewSymbol();
6749   if (!name.IsEmpty()) result->set_name(*Utils::OpenHandle(*name));
6750   return Utils::ToLocal(result);
6751 }
6752
6753
6754 static i::Handle<i::Symbol> SymbolFor(i::Isolate* isolate,
6755                                       i::Handle<i::String> name,
6756                                       i::Handle<i::String> part) {
6757   i::Handle<i::JSObject> registry = isolate->GetSymbolRegistry();
6758   i::Handle<i::JSObject> symbols =
6759       i::Handle<i::JSObject>::cast(
6760           i::Object::GetPropertyOrElement(registry, part).ToHandleChecked());
6761   i::Handle<i::Object> symbol =
6762       i::Object::GetPropertyOrElement(symbols, name).ToHandleChecked();
6763   if (!symbol->IsSymbol()) {
6764     DCHECK(symbol->IsUndefined());
6765     symbol = isolate->factory()->NewSymbol();
6766     i::Handle<i::Symbol>::cast(symbol)->set_name(*name);
6767     i::JSObject::SetProperty(symbols, name, symbol, i::STRICT).Assert();
6768   }
6769   return i::Handle<i::Symbol>::cast(symbol);
6770 }
6771
6772
6773 Local<Symbol> v8::Symbol::For(Isolate* isolate, Local<String> name) {
6774   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
6775   i::Handle<i::String> i_name = Utils::OpenHandle(*name);
6776   i::Handle<i::String> part = i_isolate->factory()->for_string();
6777   return Utils::ToLocal(SymbolFor(i_isolate, i_name, part));
6778 }
6779
6780
6781 Local<Symbol> v8::Symbol::ForApi(Isolate* isolate, Local<String> name) {
6782   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
6783   i::Handle<i::String> i_name = Utils::OpenHandle(*name);
6784   i::Handle<i::String> part = i_isolate->factory()->for_api_string();
6785   return Utils::ToLocal(SymbolFor(i_isolate, i_name, part));
6786 }
6787
6788
6789 Local<Symbol> v8::Symbol::GetIterator(Isolate* isolate) {
6790   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
6791   return Utils::ToLocal(i_isolate->factory()->iterator_symbol());
6792 }
6793
6794
6795 Local<Symbol> v8::Symbol::GetUnscopables(Isolate* isolate) {
6796   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
6797   return Utils::ToLocal(i_isolate->factory()->unscopables_symbol());
6798 }
6799
6800
6801 Local<Symbol> v8::Symbol::GetToStringTag(Isolate* isolate) {
6802   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
6803   return Utils::ToLocal(i_isolate->factory()->to_string_tag_symbol());
6804 }
6805
6806
6807 Local<Number> v8::Number::New(Isolate* isolate, double value) {
6808   i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(isolate);
6809   if (std::isnan(value)) {
6810     // Introduce only canonical NaN value into the VM, to avoid signaling NaNs.
6811     value = std::numeric_limits<double>::quiet_NaN();
6812   }
6813   ENTER_V8(internal_isolate);
6814   i::Handle<i::Object> result = internal_isolate->factory()->NewNumber(value);
6815   return Utils::NumberToLocal(result);
6816 }
6817
6818
6819 Local<Integer> v8::Integer::New(Isolate* isolate, int32_t value) {
6820   i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(isolate);
6821   if (i::Smi::IsValid(value)) {
6822     return Utils::IntegerToLocal(i::Handle<i::Object>(i::Smi::FromInt(value),
6823                                                       internal_isolate));
6824   }
6825   ENTER_V8(internal_isolate);
6826   i::Handle<i::Object> result = internal_isolate->factory()->NewNumber(value);
6827   return Utils::IntegerToLocal(result);
6828 }
6829
6830
6831 Local<Integer> v8::Integer::NewFromUnsigned(Isolate* isolate, uint32_t value) {
6832   i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(isolate);
6833   bool fits_into_int32_t = (value & (1 << 31)) == 0;
6834   if (fits_into_int32_t) {
6835     return Integer::New(isolate, static_cast<int32_t>(value));
6836   }
6837   ENTER_V8(internal_isolate);
6838   i::Handle<i::Object> result = internal_isolate->factory()->NewNumber(value);
6839   return Utils::IntegerToLocal(result);
6840 }
6841
6842
6843 void Isolate::CollectAllGarbage(const char* gc_reason) {
6844   i::Heap* heap = reinterpret_cast<i::Isolate*>(this)->heap();
6845   DCHECK_EQ(heap->gc_state(), i::Heap::NOT_IN_GC);
6846   if (heap->incremental_marking()->IsStopped()) {
6847     if (heap->incremental_marking()->CanBeActivated()) {
6848       heap->StartIncrementalMarking(
6849           i::Heap::kNoGCFlags,
6850           kGCCallbackFlagSynchronousPhantomCallbackProcessing, gc_reason);
6851     } else {
6852       heap->CollectAllGarbage(
6853           i::Heap::kNoGCFlags, gc_reason,
6854           kGCCallbackFlagSynchronousPhantomCallbackProcessing);
6855     }
6856   } else {
6857     // Incremental marking is turned on an has already been started.
6858
6859     // TODO(mlippautz): Compute the time slice for incremental marking based on
6860     // memory pressure.
6861     double deadline = heap->MonotonicallyIncreasingTimeInMs() +
6862                       i::FLAG_external_allocation_limit_incremental_time;
6863     heap->AdvanceIncrementalMarking(
6864         0, deadline, i::IncrementalMarking::StepActions(
6865                          i::IncrementalMarking::GC_VIA_STACK_GUARD,
6866                          i::IncrementalMarking::FORCE_MARKING,
6867                          i::IncrementalMarking::FORCE_COMPLETION));
6868   }
6869 }
6870
6871
6872 HeapProfiler* Isolate::GetHeapProfiler() {
6873   i::HeapProfiler* heap_profiler =
6874       reinterpret_cast<i::Isolate*>(this)->heap_profiler();
6875   return reinterpret_cast<HeapProfiler*>(heap_profiler);
6876 }
6877
6878
6879 CpuProfiler* Isolate::GetCpuProfiler() {
6880   i::CpuProfiler* cpu_profiler =
6881       reinterpret_cast<i::Isolate*>(this)->cpu_profiler();
6882   return reinterpret_cast<CpuProfiler*>(cpu_profiler);
6883 }
6884
6885
6886 bool Isolate::InContext() {
6887   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
6888   return isolate->context() != NULL;
6889 }
6890
6891
6892 v8::Local<v8::Context> Isolate::GetCurrentContext() {
6893   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
6894   i::Context* context = isolate->context();
6895   if (context == NULL) return Local<Context>();
6896   i::Context* native_context = context->native_context();
6897   if (native_context == NULL) return Local<Context>();
6898   return Utils::ToLocal(i::Handle<i::Context>(native_context));
6899 }
6900
6901
6902 v8::Local<v8::Context> Isolate::GetCallingContext() {
6903   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
6904   i::Handle<i::Object> calling = isolate->GetCallingNativeContext();
6905   if (calling.is_null()) return Local<Context>();
6906   return Utils::ToLocal(i::Handle<i::Context>::cast(calling));
6907 }
6908
6909
6910 v8::Local<v8::Context> Isolate::GetEnteredContext() {
6911   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
6912   i::Handle<i::Object> last =
6913       isolate->handle_scope_implementer()->LastEnteredContext();
6914   if (last.is_null()) return Local<Context>();
6915   return Utils::ToLocal(i::Handle<i::Context>::cast(last));
6916 }
6917
6918
6919 v8::Local<Value> Isolate::ThrowException(v8::Local<v8::Value> value) {
6920   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
6921   ENTER_V8(isolate);
6922   // If we're passed an empty handle, we throw an undefined exception
6923   // to deal more gracefully with out of memory situations.
6924   if (value.IsEmpty()) {
6925     isolate->ScheduleThrow(isolate->heap()->undefined_value());
6926   } else {
6927     isolate->ScheduleThrow(*Utils::OpenHandle(*value));
6928   }
6929   return v8::Undefined(reinterpret_cast<v8::Isolate*>(isolate));
6930 }
6931
6932
6933 void Isolate::SetObjectGroupId(internal::Object** object, UniqueId id) {
6934   i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(this);
6935   internal_isolate->global_handles()->SetObjectGroupId(
6936       v8::internal::Handle<v8::internal::Object>(object).location(),
6937       id);
6938 }
6939
6940
6941 void Isolate::SetReferenceFromGroup(UniqueId id, internal::Object** object) {
6942   i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(this);
6943   internal_isolate->global_handles()->SetReferenceFromGroup(
6944       id,
6945       v8::internal::Handle<v8::internal::Object>(object).location());
6946 }
6947
6948
6949 void Isolate::SetReference(internal::Object** parent,
6950                            internal::Object** child) {
6951   i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(this);
6952   i::Object** parent_location =
6953       v8::internal::Handle<v8::internal::Object>(parent).location();
6954   internal_isolate->global_handles()->SetReference(
6955       reinterpret_cast<i::HeapObject**>(parent_location),
6956       v8::internal::Handle<v8::internal::Object>(child).location());
6957 }
6958
6959
6960 void Isolate::AddGCPrologueCallback(GCCallback callback, GCType gc_type) {
6961   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
6962   isolate->heap()->AddGCPrologueCallback(callback, gc_type);
6963 }
6964
6965
6966 void Isolate::RemoveGCPrologueCallback(GCCallback callback) {
6967   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
6968   isolate->heap()->RemoveGCPrologueCallback(callback);
6969 }
6970
6971
6972 void Isolate::AddGCEpilogueCallback(GCCallback callback, GCType gc_type) {
6973   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
6974   isolate->heap()->AddGCEpilogueCallback(callback, gc_type);
6975 }
6976
6977
6978 void Isolate::RemoveGCEpilogueCallback(GCCallback callback) {
6979   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
6980   isolate->heap()->RemoveGCEpilogueCallback(callback);
6981 }
6982
6983
6984 void V8::AddGCPrologueCallback(GCCallback callback, GCType gc_type) {
6985   i::Isolate* isolate = i::Isolate::Current();
6986   isolate->heap()->AddGCPrologueCallback(
6987       reinterpret_cast<v8::Isolate::GCCallback>(callback), gc_type, false);
6988 }
6989
6990
6991 void V8::AddGCEpilogueCallback(GCCallback callback, GCType gc_type) {
6992   i::Isolate* isolate = i::Isolate::Current();
6993   isolate->heap()->AddGCEpilogueCallback(
6994       reinterpret_cast<v8::Isolate::GCCallback>(callback), gc_type, false);
6995 }
6996
6997
6998 void Isolate::AddMemoryAllocationCallback(MemoryAllocationCallback callback,
6999                                           ObjectSpace space,
7000                                           AllocationAction action) {
7001   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7002   isolate->memory_allocator()->AddMemoryAllocationCallback(
7003       callback, space, action);
7004 }
7005
7006
7007 void Isolate::RemoveMemoryAllocationCallback(
7008     MemoryAllocationCallback callback) {
7009   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7010   isolate->memory_allocator()->RemoveMemoryAllocationCallback(
7011       callback);
7012 }
7013
7014
7015 void Isolate::TerminateExecution() {
7016   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7017   isolate->stack_guard()->RequestTerminateExecution();
7018 }
7019
7020
7021 bool Isolate::IsExecutionTerminating() {
7022   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7023   return IsExecutionTerminatingCheck(isolate);
7024 }
7025
7026
7027 void Isolate::CancelTerminateExecution() {
7028   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7029   isolate->stack_guard()->ClearTerminateExecution();
7030   isolate->CancelTerminateExecution();
7031 }
7032
7033
7034 void Isolate::RequestInterrupt(InterruptCallback callback, void* data) {
7035   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7036   isolate->RequestInterrupt(callback, data);
7037 }
7038
7039
7040 void Isolate::RequestGarbageCollectionForTesting(GarbageCollectionType type) {
7041   CHECK(i::FLAG_expose_gc);
7042   if (type == kMinorGarbageCollection) {
7043     reinterpret_cast<i::Isolate*>(this)->heap()->CollectGarbage(
7044         i::NEW_SPACE, "Isolate::RequestGarbageCollection",
7045         kGCCallbackFlagForced);
7046   } else {
7047     DCHECK_EQ(kFullGarbageCollection, type);
7048     reinterpret_cast<i::Isolate*>(this)->heap()->CollectAllGarbage(
7049         i::Heap::kAbortIncrementalMarkingMask,
7050         "Isolate::RequestGarbageCollection", kGCCallbackFlagForced);
7051   }
7052 }
7053
7054
7055 Isolate* Isolate::GetCurrent() {
7056   i::Isolate* isolate = i::Isolate::Current();
7057   return reinterpret_cast<Isolate*>(isolate);
7058 }
7059
7060
7061 Isolate* Isolate::New(const Isolate::CreateParams& params) {
7062   i::Isolate* isolate = new i::Isolate(false);
7063   Isolate* v8_isolate = reinterpret_cast<Isolate*>(isolate);
7064   CHECK(params.array_buffer_allocator != NULL);
7065   isolate->set_array_buffer_allocator(params.array_buffer_allocator);
7066   if (params.snapshot_blob != NULL) {
7067     isolate->set_snapshot_blob(params.snapshot_blob);
7068   } else {
7069     isolate->set_snapshot_blob(i::Snapshot::DefaultSnapshotBlob());
7070   }
7071   if (params.entry_hook) {
7072     isolate->set_function_entry_hook(params.entry_hook);
7073   }
7074   if (params.code_event_handler) {
7075     isolate->InitializeLoggingAndCounters();
7076     isolate->logger()->SetCodeEventHandler(kJitCodeEventDefault,
7077                                            params.code_event_handler);
7078   }
7079   if (params.counter_lookup_callback) {
7080     v8_isolate->SetCounterFunction(params.counter_lookup_callback);
7081   }
7082
7083   if (params.create_histogram_callback) {
7084     v8_isolate->SetCreateHistogramFunction(params.create_histogram_callback);
7085   }
7086
7087   if (params.add_histogram_sample_callback) {
7088     v8_isolate->SetAddHistogramSampleFunction(
7089         params.add_histogram_sample_callback);
7090   }
7091   SetResourceConstraints(isolate, params.constraints);
7092   // TODO(jochen): Once we got rid of Isolate::Current(), we can remove this.
7093   Isolate::Scope isolate_scope(v8_isolate);
7094   if (params.entry_hook || !i::Snapshot::Initialize(isolate)) {
7095     // If the isolate has a function entry hook, it needs to re-build all its
7096     // code stubs with entry hooks embedded, so don't deserialize a snapshot.
7097     if (i::Snapshot::EmbedsScript(isolate)) {
7098       // If the snapshot embeds a script, we cannot initialize the isolate
7099       // without the snapshot as a fallback. This is unlikely to happen though.
7100       V8_Fatal(__FILE__, __LINE__,
7101                "Initializing isolate from custom startup snapshot failed");
7102     }
7103     isolate->Init(NULL);
7104   }
7105   return v8_isolate;
7106 }
7107
7108
7109 void Isolate::Dispose() {
7110   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7111   if (!Utils::ApiCheck(!isolate->IsInUse(),
7112                        "v8::Isolate::Dispose()",
7113                        "Disposing the isolate that is entered by a thread.")) {
7114     return;
7115   }
7116   isolate->TearDown();
7117 }
7118
7119
7120 void Isolate::Enter() {
7121   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7122   isolate->Enter();
7123 }
7124
7125
7126 void Isolate::Exit() {
7127   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7128   isolate->Exit();
7129 }
7130
7131
7132 Isolate::DisallowJavascriptExecutionScope::DisallowJavascriptExecutionScope(
7133     Isolate* isolate,
7134     Isolate::DisallowJavascriptExecutionScope::OnFailure on_failure)
7135     : on_failure_(on_failure) {
7136   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
7137   if (on_failure_ == CRASH_ON_FAILURE) {
7138     internal_ = reinterpret_cast<void*>(
7139         new i::DisallowJavascriptExecution(i_isolate));
7140   } else {
7141     DCHECK_EQ(THROW_ON_FAILURE, on_failure);
7142     internal_ = reinterpret_cast<void*>(
7143         new i::ThrowOnJavascriptExecution(i_isolate));
7144   }
7145 }
7146
7147
7148 Isolate::DisallowJavascriptExecutionScope::~DisallowJavascriptExecutionScope() {
7149   if (on_failure_ == CRASH_ON_FAILURE) {
7150     delete reinterpret_cast<i::DisallowJavascriptExecution*>(internal_);
7151   } else {
7152     delete reinterpret_cast<i::ThrowOnJavascriptExecution*>(internal_);
7153   }
7154 }
7155
7156
7157 Isolate::AllowJavascriptExecutionScope::AllowJavascriptExecutionScope(
7158     Isolate* isolate) {
7159   i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
7160   internal_assert_ = reinterpret_cast<void*>(
7161       new i::AllowJavascriptExecution(i_isolate));
7162   internal_throws_ = reinterpret_cast<void*>(
7163       new i::NoThrowOnJavascriptExecution(i_isolate));
7164 }
7165
7166
7167 Isolate::AllowJavascriptExecutionScope::~AllowJavascriptExecutionScope() {
7168   delete reinterpret_cast<i::AllowJavascriptExecution*>(internal_assert_);
7169   delete reinterpret_cast<i::NoThrowOnJavascriptExecution*>(internal_throws_);
7170 }
7171
7172
7173 Isolate::SuppressMicrotaskExecutionScope::SuppressMicrotaskExecutionScope(
7174     Isolate* isolate)
7175     : isolate_(reinterpret_cast<i::Isolate*>(isolate)) {
7176   isolate_->handle_scope_implementer()->IncrementCallDepth();
7177 }
7178
7179
7180 Isolate::SuppressMicrotaskExecutionScope::~SuppressMicrotaskExecutionScope() {
7181   isolate_->handle_scope_implementer()->DecrementCallDepth();
7182 }
7183
7184
7185 void Isolate::GetHeapStatistics(HeapStatistics* heap_statistics) {
7186   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7187   i::Heap* heap = isolate->heap();
7188   heap_statistics->total_heap_size_ = heap->CommittedMemory();
7189   heap_statistics->total_heap_size_executable_ =
7190       heap->CommittedMemoryExecutable();
7191   heap_statistics->total_physical_size_ = heap->CommittedPhysicalMemory();
7192   heap_statistics->total_available_size_ = heap->Available();
7193   heap_statistics->used_heap_size_ = heap->SizeOfObjects();
7194   heap_statistics->heap_size_limit_ = heap->MaxReserved();
7195 }
7196
7197
7198 size_t Isolate::NumberOfHeapSpaces() {
7199   return i::LAST_SPACE - i::FIRST_SPACE + 1;
7200 }
7201
7202
7203 bool Isolate::GetHeapSpaceStatistics(HeapSpaceStatistics* space_statistics,
7204                                      size_t index) {
7205   if (!space_statistics) return false;
7206   if (!i::Heap::IsValidAllocationSpace(static_cast<i::AllocationSpace>(index)))
7207     return false;
7208
7209   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7210   i::Heap* heap = isolate->heap();
7211   i::Space* space = heap->space(static_cast<int>(index));
7212
7213   space_statistics->space_name_ = heap->GetSpaceName(static_cast<int>(index));
7214   space_statistics->space_size_ = space->CommittedMemory();
7215   space_statistics->space_used_size_ = space->SizeOfObjects();
7216   space_statistics->space_available_size_ = space->Available();
7217   space_statistics->physical_space_size_ = space->CommittedPhysicalMemory();
7218   return true;
7219 }
7220
7221
7222 size_t Isolate::NumberOfTrackedHeapObjectTypes() {
7223   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7224   i::Heap* heap = isolate->heap();
7225   return heap->NumberOfTrackedHeapObjectTypes();
7226 }
7227
7228
7229 bool Isolate::GetHeapObjectStatisticsAtLastGC(
7230     HeapObjectStatistics* object_statistics, size_t type_index) {
7231   if (!object_statistics) return false;
7232   if (!i::FLAG_track_gc_object_stats) return false;
7233
7234   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7235   i::Heap* heap = isolate->heap();
7236   if (type_index >= heap->NumberOfTrackedHeapObjectTypes()) return false;
7237
7238   const char* object_type;
7239   const char* object_sub_type;
7240   size_t object_count = heap->ObjectCountAtLastGC(type_index);
7241   size_t object_size = heap->ObjectSizeAtLastGC(type_index);
7242   if (!heap->GetObjectTypeName(type_index, &object_type, &object_sub_type)) {
7243     // There should be no objects counted when the type is unknown.
7244     DCHECK_EQ(object_count, 0U);
7245     DCHECK_EQ(object_size, 0U);
7246     return false;
7247   }
7248
7249   object_statistics->object_type_ = object_type;
7250   object_statistics->object_sub_type_ = object_sub_type;
7251   object_statistics->object_count_ = object_count;
7252   object_statistics->object_size_ = object_size;
7253   return true;
7254 }
7255
7256
7257 void Isolate::GetStackSample(const RegisterState& state, void** frames,
7258                              size_t frames_limit, SampleInfo* sample_info) {
7259   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7260   i::TickSample::GetStackSample(isolate, state, i::TickSample::kSkipCEntryFrame,
7261                                 frames, frames_limit, sample_info);
7262 }
7263
7264
7265 void Isolate::SetEventLogger(LogEventCallback that) {
7266   // Do not overwrite the event logger if we want to log explicitly.
7267   if (i::FLAG_log_internal_timer_events) return;
7268   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7269   isolate->set_event_logger(that);
7270 }
7271
7272
7273 void Isolate::AddCallCompletedCallback(CallCompletedCallback callback) {
7274   if (callback == NULL) return;
7275   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7276   isolate->AddCallCompletedCallback(callback);
7277 }
7278
7279
7280 void Isolate::RemoveCallCompletedCallback(CallCompletedCallback callback) {
7281   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7282   isolate->RemoveCallCompletedCallback(callback);
7283 }
7284
7285
7286 void Isolate::SetPromiseRejectCallback(PromiseRejectCallback callback) {
7287   if (callback == NULL) return;
7288   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7289   isolate->SetPromiseRejectCallback(callback);
7290 }
7291
7292
7293 void Isolate::RunMicrotasks() {
7294   reinterpret_cast<i::Isolate*>(this)->RunMicrotasks();
7295 }
7296
7297
7298 void Isolate::EnqueueMicrotask(Local<Function> microtask) {
7299   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7300   isolate->EnqueueMicrotask(Utils::OpenHandle(*microtask));
7301 }
7302
7303
7304 void Isolate::EnqueueMicrotask(MicrotaskCallback microtask, void* data) {
7305   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7306   i::HandleScope scope(isolate);
7307   i::Handle<i::CallHandlerInfo> callback_info =
7308       i::Handle<i::CallHandlerInfo>::cast(
7309           isolate->factory()->NewStruct(i::CALL_HANDLER_INFO_TYPE));
7310   SET_FIELD_WRAPPED(callback_info, set_callback, microtask);
7311   SET_FIELD_WRAPPED(callback_info, set_data, data);
7312   isolate->EnqueueMicrotask(callback_info);
7313 }
7314
7315
7316 void Isolate::SetAutorunMicrotasks(bool autorun) {
7317   reinterpret_cast<i::Isolate*>(this)->set_autorun_microtasks(autorun);
7318 }
7319
7320
7321 bool Isolate::WillAutorunMicrotasks() const {
7322   return reinterpret_cast<const i::Isolate*>(this)->autorun_microtasks();
7323 }
7324
7325
7326 void Isolate::SetUseCounterCallback(UseCounterCallback callback) {
7327   reinterpret_cast<i::Isolate*>(this)->SetUseCounterCallback(callback);
7328 }
7329
7330
7331 void Isolate::SetCounterFunction(CounterLookupCallback callback) {
7332   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7333   isolate->stats_table()->SetCounterFunction(callback);
7334   isolate->InitializeLoggingAndCounters();
7335   isolate->counters()->ResetCounters();
7336 }
7337
7338
7339 void Isolate::SetCreateHistogramFunction(CreateHistogramCallback callback) {
7340   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7341   isolate->stats_table()->SetCreateHistogramFunction(callback);
7342   isolate->InitializeLoggingAndCounters();
7343   isolate->counters()->ResetHistograms();
7344 }
7345
7346
7347 void Isolate::SetAddHistogramSampleFunction(
7348     AddHistogramSampleCallback callback) {
7349   reinterpret_cast<i::Isolate*>(this)
7350       ->stats_table()
7351       ->SetAddHistogramSampleFunction(callback);
7352 }
7353
7354
7355 bool Isolate::IdleNotification(int idle_time_in_ms) {
7356   // Returning true tells the caller that it need not
7357   // continue to call IdleNotification.
7358   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7359   if (!i::FLAG_use_idle_notification) return true;
7360   return isolate->heap()->IdleNotification(idle_time_in_ms);
7361 }
7362
7363
7364 bool Isolate::IdleNotificationDeadline(double deadline_in_seconds) {
7365   // Returning true tells the caller that it need not
7366   // continue to call IdleNotification.
7367   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7368   if (!i::FLAG_use_idle_notification) return true;
7369   return isolate->heap()->IdleNotification(deadline_in_seconds);
7370 }
7371
7372
7373 void Isolate::LowMemoryNotification() {
7374   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7375   {
7376     i::HistogramTimerScope idle_notification_scope(
7377         isolate->counters()->gc_low_memory_notification());
7378     isolate->heap()->CollectAllAvailableGarbage("low memory notification");
7379   }
7380 }
7381
7382
7383 int Isolate::ContextDisposedNotification(bool dependant_context) {
7384   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7385   return isolate->heap()->NotifyContextDisposed(dependant_context);
7386 }
7387
7388
7389 void Isolate::SetJitCodeEventHandler(JitCodeEventOptions options,
7390                                      JitCodeEventHandler event_handler) {
7391   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7392   // Ensure that logging is initialized for our isolate.
7393   isolate->InitializeLoggingAndCounters();
7394   isolate->logger()->SetCodeEventHandler(options, event_handler);
7395 }
7396
7397
7398 void Isolate::SetStackLimit(uintptr_t stack_limit) {
7399   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7400   CHECK(stack_limit);
7401   isolate->stack_guard()->SetStackLimit(stack_limit);
7402 }
7403
7404
7405 void Isolate::GetCodeRange(void** start, size_t* length_in_bytes) {
7406   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7407   if (isolate->code_range()->valid()) {
7408     *start = isolate->code_range()->start();
7409     *length_in_bytes = isolate->code_range()->size();
7410   } else {
7411     *start = NULL;
7412     *length_in_bytes = 0;
7413   }
7414 }
7415
7416
7417 void Isolate::SetFatalErrorHandler(FatalErrorCallback that) {
7418   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7419   isolate->set_exception_behavior(that);
7420 }
7421
7422
7423 void Isolate::SetAllowCodeGenerationFromStringsCallback(
7424     AllowCodeGenerationFromStringsCallback callback) {
7425   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7426   isolate->set_allow_code_gen_callback(callback);
7427 }
7428
7429
7430 bool Isolate::IsDead() {
7431   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7432   return isolate->IsDead();
7433 }
7434
7435
7436 bool Isolate::AddMessageListener(MessageCallback that, Local<Value> data) {
7437   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7438   ENTER_V8(isolate);
7439   i::HandleScope scope(isolate);
7440   NeanderArray listeners(isolate->factory()->message_listeners());
7441   NeanderObject obj(isolate, 2);
7442   obj.set(0, *isolate->factory()->NewForeign(FUNCTION_ADDR(that)));
7443   obj.set(1, data.IsEmpty() ? isolate->heap()->undefined_value()
7444                             : *Utils::OpenHandle(*data));
7445   listeners.add(isolate, obj.value());
7446   return true;
7447 }
7448
7449
7450 void Isolate::RemoveMessageListeners(MessageCallback that) {
7451   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7452   ENTER_V8(isolate);
7453   i::HandleScope scope(isolate);
7454   NeanderArray listeners(isolate->factory()->message_listeners());
7455   for (int i = 0; i < listeners.length(); i++) {
7456     if (listeners.get(i)->IsUndefined()) continue;  // skip deleted ones
7457
7458     NeanderObject listener(i::JSObject::cast(listeners.get(i)));
7459     i::Handle<i::Foreign> callback_obj(i::Foreign::cast(listener.get(0)));
7460     if (callback_obj->foreign_address() == FUNCTION_ADDR(that)) {
7461       listeners.set(i, isolate->heap()->undefined_value());
7462     }
7463   }
7464 }
7465
7466
7467 void Isolate::SetFailedAccessCheckCallbackFunction(
7468     FailedAccessCheckCallback callback) {
7469   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7470   isolate->SetFailedAccessCheckCallback(callback);
7471 }
7472
7473
7474 void Isolate::SetCaptureStackTraceForUncaughtExceptions(
7475     bool capture, int frame_limit, StackTrace::StackTraceOptions options) {
7476   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7477   isolate->SetCaptureStackTraceForUncaughtExceptions(capture, frame_limit,
7478                                                      options);
7479 }
7480
7481
7482 void Isolate::VisitExternalResources(ExternalResourceVisitor* visitor) {
7483   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7484   isolate->heap()->VisitExternalResources(visitor);
7485 }
7486
7487
7488 class VisitorAdapter : public i::ObjectVisitor {
7489  public:
7490   explicit VisitorAdapter(PersistentHandleVisitor* visitor)
7491       : visitor_(visitor) {}
7492   virtual void VisitPointers(i::Object** start, i::Object** end) {
7493     UNREACHABLE();
7494   }
7495   virtual void VisitEmbedderReference(i::Object** p, uint16_t class_id) {
7496     Value* value = ToApi<Value>(i::Handle<i::Object>(p));
7497     visitor_->VisitPersistentHandle(
7498         reinterpret_cast<Persistent<Value>*>(&value), class_id);
7499   }
7500
7501  private:
7502   PersistentHandleVisitor* visitor_;
7503 };
7504
7505
7506 void Isolate::VisitHandlesWithClassIds(PersistentHandleVisitor* visitor) {
7507   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7508   i::DisallowHeapAllocation no_allocation;
7509   VisitorAdapter visitor_adapter(visitor);
7510   isolate->global_handles()->IterateAllRootsWithClassIds(&visitor_adapter);
7511 }
7512
7513
7514 void Isolate::VisitHandlesForPartialDependence(
7515     PersistentHandleVisitor* visitor) {
7516   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
7517   i::DisallowHeapAllocation no_allocation;
7518   VisitorAdapter visitor_adapter(visitor);
7519   isolate->global_handles()->IterateAllRootsInNewSpaceWithClassIds(
7520       &visitor_adapter);
7521 }
7522
7523
7524 String::Utf8Value::Utf8Value(v8::Local<v8::Value> obj)
7525     : str_(NULL), length_(0) {
7526   if (obj.IsEmpty()) return;
7527   i::Isolate* isolate = i::Isolate::Current();
7528   Isolate* v8_isolate = reinterpret_cast<Isolate*>(isolate);
7529   ENTER_V8(isolate);
7530   i::HandleScope scope(isolate);
7531   Local<Context> context = v8_isolate->GetCurrentContext();
7532   TryCatch try_catch(v8_isolate);
7533   Local<String> str;
7534   if (!obj->ToString(context).ToLocal(&str)) return;
7535   i::Handle<i::String> i_str = Utils::OpenHandle(*str);
7536   length_ = v8::Utf8Length(*i_str, isolate);
7537   str_ = i::NewArray<char>(length_ + 1);
7538   str->WriteUtf8(str_);
7539 }
7540
7541
7542 String::Utf8Value::~Utf8Value() {
7543   i::DeleteArray(str_);
7544 }
7545
7546
7547 String::Value::Value(v8::Local<v8::Value> obj) : str_(NULL), length_(0) {
7548   if (obj.IsEmpty()) return;
7549   i::Isolate* isolate = i::Isolate::Current();
7550   Isolate* v8_isolate = reinterpret_cast<Isolate*>(isolate);
7551   ENTER_V8(isolate);
7552   i::HandleScope scope(isolate);
7553   Local<Context> context = v8_isolate->GetCurrentContext();
7554   TryCatch try_catch(v8_isolate);
7555   Local<String> str;
7556   if (!obj->ToString(context).ToLocal(&str)) return;
7557   length_ = str->Length();
7558   str_ = i::NewArray<uint16_t>(length_ + 1);
7559   str->Write(str_);
7560 }
7561
7562
7563 String::Value::~Value() {
7564   i::DeleteArray(str_);
7565 }
7566
7567
7568 #define DEFINE_ERROR(NAME, name)                                         \
7569   Local<Value> Exception::NAME(v8::Local<v8::String> raw_message) {      \
7570     i::Isolate* isolate = i::Isolate::Current();                         \
7571     LOG_API(isolate, #NAME);                                             \
7572     ENTER_V8(isolate);                                                   \
7573     i::Object* error;                                                    \
7574     {                                                                    \
7575       i::HandleScope scope(isolate);                                     \
7576       i::Handle<i::String> message = Utils::OpenHandle(*raw_message);    \
7577       i::Handle<i::JSFunction> constructor = isolate->name##_function(); \
7578       error = *isolate->factory()->NewError(constructor, message);       \
7579     }                                                                    \
7580     i::Handle<i::Object> result(error, isolate);                         \
7581     return Utils::ToLocal(result);                                       \
7582   }
7583
7584 DEFINE_ERROR(RangeError, range_error)
7585 DEFINE_ERROR(ReferenceError, reference_error)
7586 DEFINE_ERROR(SyntaxError, syntax_error)
7587 DEFINE_ERROR(TypeError, type_error)
7588 DEFINE_ERROR(Error, error)
7589
7590 #undef DEFINE_ERROR
7591
7592
7593 Local<Message> Exception::CreateMessage(Local<Value> exception) {
7594   i::Handle<i::Object> obj = Utils::OpenHandle(*exception);
7595   if (!obj->IsHeapObject()) return Local<Message>();
7596   i::Isolate* isolate = i::HeapObject::cast(*obj)->GetIsolate();
7597   ENTER_V8(isolate);
7598   i::HandleScope scope(isolate);
7599   return Utils::MessageToLocal(
7600       scope.CloseAndEscape(isolate->CreateMessage(obj, NULL)));
7601 }
7602
7603
7604 Local<StackTrace> Exception::GetStackTrace(Local<Value> exception) {
7605   i::Handle<i::Object> obj = Utils::OpenHandle(*exception);
7606   if (!obj->IsJSObject()) return Local<StackTrace>();
7607   i::Handle<i::JSObject> js_obj = i::Handle<i::JSObject>::cast(obj);
7608   i::Isolate* isolate = js_obj->GetIsolate();
7609   ENTER_V8(isolate);
7610   return Utils::StackTraceToLocal(isolate->GetDetailedStackTrace(js_obj));
7611 }
7612
7613
7614 // --- D e b u g   S u p p o r t ---
7615
7616 bool Debug::SetDebugEventListener(EventCallback that, Local<Value> data) {
7617   i::Isolate* isolate = i::Isolate::Current();
7618   ENTER_V8(isolate);
7619   i::HandleScope scope(isolate);
7620   i::Handle<i::Object> foreign = isolate->factory()->undefined_value();
7621   if (that != NULL) {
7622     foreign = isolate->factory()->NewForeign(FUNCTION_ADDR(that));
7623   }
7624   isolate->debug()->SetEventListener(foreign,
7625                                      Utils::OpenHandle(*data, true));
7626   return true;
7627 }
7628
7629
7630 void Debug::DebugBreak(Isolate* isolate) {
7631   reinterpret_cast<i::Isolate*>(isolate)->stack_guard()->RequestDebugBreak();
7632 }
7633
7634
7635 void Debug::CancelDebugBreak(Isolate* isolate) {
7636   i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(isolate);
7637   internal_isolate->stack_guard()->ClearDebugBreak();
7638 }
7639
7640
7641 bool Debug::CheckDebugBreak(Isolate* isolate) {
7642   i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(isolate);
7643   return internal_isolate->stack_guard()->CheckDebugBreak();
7644 }
7645
7646
7647 void Debug::SetMessageHandler(v8::Debug::MessageHandler handler) {
7648   i::Isolate* isolate = i::Isolate::Current();
7649   ENTER_V8(isolate);
7650   isolate->debug()->SetMessageHandler(handler);
7651 }
7652
7653
7654 void Debug::SendCommand(Isolate* isolate,
7655                         const uint16_t* command,
7656                         int length,
7657                         ClientData* client_data) {
7658   i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(isolate);
7659   internal_isolate->debug()->EnqueueCommandMessage(
7660       i::Vector<const uint16_t>(command, length), client_data);
7661 }
7662
7663
7664 MaybeLocal<Value> Debug::Call(Local<Context> context,
7665                               v8::Local<v8::Function> fun,
7666                               v8::Local<v8::Value> data) {
7667   PREPARE_FOR_EXECUTION(context, "v8::Debug::Call()", Value);
7668   i::Handle<i::Object> data_obj;
7669   if (data.IsEmpty()) {
7670     data_obj = isolate->factory()->undefined_value();
7671   } else {
7672     data_obj = Utils::OpenHandle(*data);
7673   }
7674   Local<Value> result;
7675   has_pending_exception =
7676       !ToLocal<Value>(isolate->debug()->Call(Utils::OpenHandle(*fun), data_obj),
7677                       &result);
7678   RETURN_ON_FAILED_EXECUTION(Value);
7679   RETURN_ESCAPED(result);
7680 }
7681
7682
7683 Local<Value> Debug::Call(v8::Local<v8::Function> fun,
7684                          v8::Local<v8::Value> data) {
7685   auto context = ContextFromHeapObject(Utils::OpenHandle(*fun));
7686   RETURN_TO_LOCAL_UNCHECKED(Call(context, fun, data), Value);
7687 }
7688
7689
7690 MaybeLocal<Value> Debug::GetMirror(Local<Context> context,
7691                                    v8::Local<v8::Value> obj) {
7692   PREPARE_FOR_EXECUTION(context, "v8::Debug::GetMirror()", Value);
7693   i::Debug* isolate_debug = isolate->debug();
7694   has_pending_exception = !isolate_debug->Load();
7695   RETURN_ON_FAILED_EXECUTION(Value);
7696   i::Handle<i::JSObject> debug(isolate_debug->debug_context()->global_object());
7697   auto name = isolate->factory()->NewStringFromStaticChars("MakeMirror");
7698   auto fun_obj = i::Object::GetProperty(debug, name).ToHandleChecked();
7699   auto v8_fun = Utils::ToLocal(i::Handle<i::JSFunction>::cast(fun_obj));
7700   const int kArgc = 1;
7701   v8::Local<v8::Value> argv[kArgc] = {obj};
7702   Local<Value> result;
7703   has_pending_exception = !v8_fun->Call(context, Utils::ToLocal(debug), kArgc,
7704                                         argv).ToLocal(&result);
7705   RETURN_ON_FAILED_EXECUTION(Value);
7706   RETURN_ESCAPED(result);
7707 }
7708
7709
7710 Local<Value> Debug::GetMirror(v8::Local<v8::Value> obj) {
7711   RETURN_TO_LOCAL_UNCHECKED(GetMirror(Local<Context>(), obj), Value);
7712 }
7713
7714
7715 void Debug::ProcessDebugMessages() {
7716   i::Isolate::Current()->debug()->ProcessDebugMessages(true);
7717 }
7718
7719
7720 Local<Context> Debug::GetDebugContext() {
7721   i::Isolate* isolate = i::Isolate::Current();
7722   ENTER_V8(isolate);
7723   return Utils::ToLocal(isolate->debug()->GetDebugContext());
7724 }
7725
7726
7727 void Debug::SetLiveEditEnabled(Isolate* isolate, bool enable) {
7728   i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(isolate);
7729   internal_isolate->debug()->set_live_edit_enabled(enable);
7730 }
7731
7732
7733 MaybeLocal<Array> Debug::GetInternalProperties(Isolate* v8_isolate,
7734                                                Local<Value> value) {
7735   i::Isolate* isolate = reinterpret_cast<i::Isolate*>(v8_isolate);
7736   ENTER_V8(isolate);
7737   i::Handle<i::Object> val = Utils::OpenHandle(*value);
7738   i::Handle<i::JSArray> result;
7739   if (!i::Runtime::GetInternalProperties(isolate, val).ToHandle(&result))
7740     return MaybeLocal<Array>();
7741   return Utils::ToLocal(result);
7742 }
7743
7744
7745 Local<String> CpuProfileNode::GetFunctionName() const {
7746   i::Isolate* isolate = i::Isolate::Current();
7747   const i::ProfileNode* node = reinterpret_cast<const i::ProfileNode*>(this);
7748   const i::CodeEntry* entry = node->entry();
7749   i::Handle<i::String> name =
7750       isolate->factory()->InternalizeUtf8String(entry->name());
7751   if (!entry->has_name_prefix()) {
7752     return ToApiHandle<String>(name);
7753   } else {
7754     // We do not expect this to fail. Change this if it does.
7755     i::Handle<i::String> cons = isolate->factory()->NewConsString(
7756         isolate->factory()->InternalizeUtf8String(entry->name_prefix()),
7757         name).ToHandleChecked();
7758     return ToApiHandle<String>(cons);
7759   }
7760 }
7761
7762
7763 int CpuProfileNode::GetScriptId() const {
7764   const i::ProfileNode* node = reinterpret_cast<const i::ProfileNode*>(this);
7765   const i::CodeEntry* entry = node->entry();
7766   return entry->script_id();
7767 }
7768
7769
7770 Local<String> CpuProfileNode::GetScriptResourceName() const {
7771   i::Isolate* isolate = i::Isolate::Current();
7772   const i::ProfileNode* node = reinterpret_cast<const i::ProfileNode*>(this);
7773   return ToApiHandle<String>(isolate->factory()->InternalizeUtf8String(
7774       node->entry()->resource_name()));
7775 }
7776
7777
7778 int CpuProfileNode::GetLineNumber() const {
7779   return reinterpret_cast<const i::ProfileNode*>(this)->entry()->line_number();
7780 }
7781
7782
7783 int CpuProfileNode::GetColumnNumber() const {
7784   return reinterpret_cast<const i::ProfileNode*>(this)->
7785       entry()->column_number();
7786 }
7787
7788
7789 unsigned int CpuProfileNode::GetHitLineCount() const {
7790   const i::ProfileNode* node = reinterpret_cast<const i::ProfileNode*>(this);
7791   return node->GetHitLineCount();
7792 }
7793
7794
7795 bool CpuProfileNode::GetLineTicks(LineTick* entries,
7796                                   unsigned int length) const {
7797   const i::ProfileNode* node = reinterpret_cast<const i::ProfileNode*>(this);
7798   return node->GetLineTicks(entries, length);
7799 }
7800
7801
7802 const char* CpuProfileNode::GetBailoutReason() const {
7803   const i::ProfileNode* node = reinterpret_cast<const i::ProfileNode*>(this);
7804   return node->entry()->bailout_reason();
7805 }
7806
7807
7808 unsigned CpuProfileNode::GetHitCount() const {
7809   return reinterpret_cast<const i::ProfileNode*>(this)->self_ticks();
7810 }
7811
7812
7813 unsigned CpuProfileNode::GetCallUid() const {
7814   return reinterpret_cast<const i::ProfileNode*>(this)->function_id();
7815 }
7816
7817
7818 unsigned CpuProfileNode::GetNodeId() const {
7819   return reinterpret_cast<const i::ProfileNode*>(this)->id();
7820 }
7821
7822
7823 int CpuProfileNode::GetChildrenCount() const {
7824   return reinterpret_cast<const i::ProfileNode*>(this)->children()->length();
7825 }
7826
7827
7828 const CpuProfileNode* CpuProfileNode::GetChild(int index) const {
7829   const i::ProfileNode* child =
7830       reinterpret_cast<const i::ProfileNode*>(this)->children()->at(index);
7831   return reinterpret_cast<const CpuProfileNode*>(child);
7832 }
7833
7834
7835 const std::vector<CpuProfileDeoptInfo>& CpuProfileNode::GetDeoptInfos() const {
7836   const i::ProfileNode* node = reinterpret_cast<const i::ProfileNode*>(this);
7837   return node->deopt_infos();
7838 }
7839
7840
7841 void CpuProfile::Delete() {
7842   i::Isolate* isolate = i::Isolate::Current();
7843   i::CpuProfiler* profiler = isolate->cpu_profiler();
7844   DCHECK(profiler != NULL);
7845   profiler->DeleteProfile(reinterpret_cast<i::CpuProfile*>(this));
7846 }
7847
7848
7849 Local<String> CpuProfile::GetTitle() const {
7850   i::Isolate* isolate = i::Isolate::Current();
7851   const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this);
7852   return ToApiHandle<String>(isolate->factory()->InternalizeUtf8String(
7853       profile->title()));
7854 }
7855
7856
7857 const CpuProfileNode* CpuProfile::GetTopDownRoot() const {
7858   const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this);
7859   return reinterpret_cast<const CpuProfileNode*>(profile->top_down()->root());
7860 }
7861
7862
7863 const CpuProfileNode* CpuProfile::GetSample(int index) const {
7864   const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this);
7865   return reinterpret_cast<const CpuProfileNode*>(profile->sample(index));
7866 }
7867
7868
7869 int64_t CpuProfile::GetSampleTimestamp(int index) const {
7870   const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this);
7871   return (profile->sample_timestamp(index) - base::TimeTicks())
7872       .InMicroseconds();
7873 }
7874
7875
7876 int64_t CpuProfile::GetStartTime() const {
7877   const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this);
7878   return (profile->start_time() - base::TimeTicks()).InMicroseconds();
7879 }
7880
7881
7882 int64_t CpuProfile::GetEndTime() const {
7883   const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this);
7884   return (profile->end_time() - base::TimeTicks()).InMicroseconds();
7885 }
7886
7887
7888 int CpuProfile::GetSamplesCount() const {
7889   return reinterpret_cast<const i::CpuProfile*>(this)->samples_count();
7890 }
7891
7892
7893 void CpuProfiler::SetSamplingInterval(int us) {
7894   DCHECK(us >= 0);
7895   return reinterpret_cast<i::CpuProfiler*>(this)->set_sampling_interval(
7896       base::TimeDelta::FromMicroseconds(us));
7897 }
7898
7899
7900 void CpuProfiler::StartProfiling(Local<String> title, bool record_samples) {
7901   reinterpret_cast<i::CpuProfiler*>(this)->StartProfiling(
7902       *Utils::OpenHandle(*title), record_samples);
7903 }
7904
7905
7906 CpuProfile* CpuProfiler::StopProfiling(Local<String> title) {
7907   return reinterpret_cast<CpuProfile*>(
7908       reinterpret_cast<i::CpuProfiler*>(this)->StopProfiling(
7909           *Utils::OpenHandle(*title)));
7910 }
7911
7912
7913 void CpuProfiler::SetIdle(bool is_idle) {
7914   i::Isolate* isolate = reinterpret_cast<i::CpuProfiler*>(this)->isolate();
7915   v8::StateTag state = isolate->current_vm_state();
7916   DCHECK(state == v8::EXTERNAL || state == v8::IDLE);
7917   if (isolate->js_entry_sp() != NULL) return;
7918   if (is_idle) {
7919     isolate->set_current_vm_state(v8::IDLE);
7920   } else if (state == v8::IDLE) {
7921     isolate->set_current_vm_state(v8::EXTERNAL);
7922   }
7923 }
7924
7925
7926 static i::HeapGraphEdge* ToInternal(const HeapGraphEdge* edge) {
7927   return const_cast<i::HeapGraphEdge*>(
7928       reinterpret_cast<const i::HeapGraphEdge*>(edge));
7929 }
7930
7931
7932 HeapGraphEdge::Type HeapGraphEdge::GetType() const {
7933   return static_cast<HeapGraphEdge::Type>(ToInternal(this)->type());
7934 }
7935
7936
7937 Local<Value> HeapGraphEdge::GetName() const {
7938   i::Isolate* isolate = i::Isolate::Current();
7939   i::HeapGraphEdge* edge = ToInternal(this);
7940   switch (edge->type()) {
7941     case i::HeapGraphEdge::kContextVariable:
7942     case i::HeapGraphEdge::kInternal:
7943     case i::HeapGraphEdge::kProperty:
7944     case i::HeapGraphEdge::kShortcut:
7945     case i::HeapGraphEdge::kWeak:
7946       return ToApiHandle<String>(
7947           isolate->factory()->InternalizeUtf8String(edge->name()));
7948     case i::HeapGraphEdge::kElement:
7949     case i::HeapGraphEdge::kHidden:
7950       return ToApiHandle<Number>(
7951           isolate->factory()->NewNumberFromInt(edge->index()));
7952     default: UNREACHABLE();
7953   }
7954   return v8::Undefined(reinterpret_cast<v8::Isolate*>(isolate));
7955 }
7956
7957
7958 const HeapGraphNode* HeapGraphEdge::GetFromNode() const {
7959   const i::HeapEntry* from = ToInternal(this)->from();
7960   return reinterpret_cast<const HeapGraphNode*>(from);
7961 }
7962
7963
7964 const HeapGraphNode* HeapGraphEdge::GetToNode() const {
7965   const i::HeapEntry* to = ToInternal(this)->to();
7966   return reinterpret_cast<const HeapGraphNode*>(to);
7967 }
7968
7969
7970 static i::HeapEntry* ToInternal(const HeapGraphNode* entry) {
7971   return const_cast<i::HeapEntry*>(
7972       reinterpret_cast<const i::HeapEntry*>(entry));
7973 }
7974
7975
7976 HeapGraphNode::Type HeapGraphNode::GetType() const {
7977   return static_cast<HeapGraphNode::Type>(ToInternal(this)->type());
7978 }
7979
7980
7981 Local<String> HeapGraphNode::GetName() const {
7982   i::Isolate* isolate = i::Isolate::Current();
7983   return ToApiHandle<String>(
7984       isolate->factory()->InternalizeUtf8String(ToInternal(this)->name()));
7985 }
7986
7987
7988 SnapshotObjectId HeapGraphNode::GetId() const {
7989   return ToInternal(this)->id();
7990 }
7991
7992
7993 size_t HeapGraphNode::GetShallowSize() const {
7994   return ToInternal(this)->self_size();
7995 }
7996
7997
7998 int HeapGraphNode::GetChildrenCount() const {
7999   return ToInternal(this)->children().length();
8000 }
8001
8002
8003 const HeapGraphEdge* HeapGraphNode::GetChild(int index) const {
8004   return reinterpret_cast<const HeapGraphEdge*>(
8005       ToInternal(this)->children()[index]);
8006 }
8007
8008
8009 static i::HeapSnapshot* ToInternal(const HeapSnapshot* snapshot) {
8010   return const_cast<i::HeapSnapshot*>(
8011       reinterpret_cast<const i::HeapSnapshot*>(snapshot));
8012 }
8013
8014
8015 void HeapSnapshot::Delete() {
8016   i::Isolate* isolate = i::Isolate::Current();
8017   if (isolate->heap_profiler()->GetSnapshotsCount() > 1) {
8018     ToInternal(this)->Delete();
8019   } else {
8020     // If this is the last snapshot, clean up all accessory data as well.
8021     isolate->heap_profiler()->DeleteAllSnapshots();
8022   }
8023 }
8024
8025
8026 const HeapGraphNode* HeapSnapshot::GetRoot() const {
8027   return reinterpret_cast<const HeapGraphNode*>(ToInternal(this)->root());
8028 }
8029
8030
8031 const HeapGraphNode* HeapSnapshot::GetNodeById(SnapshotObjectId id) const {
8032   return reinterpret_cast<const HeapGraphNode*>(
8033       ToInternal(this)->GetEntryById(id));
8034 }
8035
8036
8037 int HeapSnapshot::GetNodesCount() const {
8038   return ToInternal(this)->entries().length();
8039 }
8040
8041
8042 const HeapGraphNode* HeapSnapshot::GetNode(int index) const {
8043   return reinterpret_cast<const HeapGraphNode*>(
8044       &ToInternal(this)->entries().at(index));
8045 }
8046
8047
8048 SnapshotObjectId HeapSnapshot::GetMaxSnapshotJSObjectId() const {
8049   return ToInternal(this)->max_snapshot_js_object_id();
8050 }
8051
8052
8053 void HeapSnapshot::Serialize(OutputStream* stream,
8054                              HeapSnapshot::SerializationFormat format) const {
8055   Utils::ApiCheck(format == kJSON,
8056                   "v8::HeapSnapshot::Serialize",
8057                   "Unknown serialization format");
8058   Utils::ApiCheck(stream->GetChunkSize() > 0,
8059                   "v8::HeapSnapshot::Serialize",
8060                   "Invalid stream chunk size");
8061   i::HeapSnapshotJSONSerializer serializer(ToInternal(this));
8062   serializer.Serialize(stream);
8063 }
8064
8065
8066 // static
8067 STATIC_CONST_MEMBER_DEFINITION const SnapshotObjectId
8068     HeapProfiler::kUnknownObjectId;
8069
8070
8071 int HeapProfiler::GetSnapshotCount() {
8072   return reinterpret_cast<i::HeapProfiler*>(this)->GetSnapshotsCount();
8073 }
8074
8075
8076 const HeapSnapshot* HeapProfiler::GetHeapSnapshot(int index) {
8077   return reinterpret_cast<const HeapSnapshot*>(
8078       reinterpret_cast<i::HeapProfiler*>(this)->GetSnapshot(index));
8079 }
8080
8081
8082 SnapshotObjectId HeapProfiler::GetObjectId(Local<Value> value) {
8083   i::Handle<i::Object> obj = Utils::OpenHandle(*value);
8084   return reinterpret_cast<i::HeapProfiler*>(this)->GetSnapshotObjectId(obj);
8085 }
8086
8087
8088 Local<Value> HeapProfiler::FindObjectById(SnapshotObjectId id) {
8089   i::Handle<i::Object> obj =
8090       reinterpret_cast<i::HeapProfiler*>(this)->FindHeapObjectById(id);
8091   if (obj.is_null()) return Local<Value>();
8092   return Utils::ToLocal(obj);
8093 }
8094
8095
8096 void HeapProfiler::ClearObjectIds() {
8097   reinterpret_cast<i::HeapProfiler*>(this)->ClearHeapObjectMap();
8098 }
8099
8100
8101 const HeapSnapshot* HeapProfiler::TakeHeapSnapshot(
8102     ActivityControl* control, ObjectNameResolver* resolver) {
8103   return reinterpret_cast<const HeapSnapshot*>(
8104       reinterpret_cast<i::HeapProfiler*>(this)
8105           ->TakeSnapshot(control, resolver));
8106 }
8107
8108
8109 void HeapProfiler::StartTrackingHeapObjects(bool track_allocations) {
8110   reinterpret_cast<i::HeapProfiler*>(this)->StartHeapObjectsTracking(
8111       track_allocations);
8112 }
8113
8114
8115 void HeapProfiler::StopTrackingHeapObjects() {
8116   reinterpret_cast<i::HeapProfiler*>(this)->StopHeapObjectsTracking();
8117 }
8118
8119
8120 SnapshotObjectId HeapProfiler::GetHeapStats(OutputStream* stream,
8121                                             int64_t* timestamp_us) {
8122   i::HeapProfiler* heap_profiler = reinterpret_cast<i::HeapProfiler*>(this);
8123   return heap_profiler->PushHeapObjectsStats(stream, timestamp_us);
8124 }
8125
8126
8127 void HeapProfiler::DeleteAllHeapSnapshots() {
8128   reinterpret_cast<i::HeapProfiler*>(this)->DeleteAllSnapshots();
8129 }
8130
8131
8132 void HeapProfiler::SetWrapperClassInfoProvider(uint16_t class_id,
8133                                                WrapperInfoCallback callback) {
8134   reinterpret_cast<i::HeapProfiler*>(this)->DefineWrapperClass(class_id,
8135                                                                callback);
8136 }
8137
8138
8139 size_t HeapProfiler::GetProfilerMemorySize() {
8140   return reinterpret_cast<i::HeapProfiler*>(this)->
8141       GetMemorySizeUsedByProfiler();
8142 }
8143
8144
8145 void HeapProfiler::SetRetainedObjectInfo(UniqueId id,
8146                                          RetainedObjectInfo* info) {
8147   reinterpret_cast<i::HeapProfiler*>(this)->SetRetainedObjectInfo(id, info);
8148 }
8149
8150
8151 v8::Testing::StressType internal::Testing::stress_type_ =
8152     v8::Testing::kStressTypeOpt;
8153
8154
8155 void Testing::SetStressRunType(Testing::StressType type) {
8156   internal::Testing::set_stress_type(type);
8157 }
8158
8159
8160 int Testing::GetStressRuns() {
8161   if (internal::FLAG_stress_runs != 0) return internal::FLAG_stress_runs;
8162 #ifdef DEBUG
8163   // In debug mode the code runs much slower so stressing will only make two
8164   // runs.
8165   return 2;
8166 #else
8167   return 5;
8168 #endif
8169 }
8170
8171
8172 static void SetFlagsFromString(const char* flags) {
8173   V8::SetFlagsFromString(flags, i::StrLength(flags));
8174 }
8175
8176
8177 void Testing::PrepareStressRun(int run) {
8178   static const char* kLazyOptimizations =
8179       "--prepare-always-opt "
8180       "--max-inlined-source-size=999999 "
8181       "--max-inlined-nodes=999999 "
8182       "--max-inlined-nodes-cumulative=999999 "
8183       "--noalways-opt";
8184   static const char* kForcedOptimizations = "--always-opt";
8185
8186   // If deoptimization stressed turn on frequent deoptimization. If no value
8187   // is spefified through --deopt-every-n-times use a default default value.
8188   static const char* kDeoptEvery13Times = "--deopt-every-n-times=13";
8189   if (internal::Testing::stress_type() == Testing::kStressTypeDeopt &&
8190       internal::FLAG_deopt_every_n_times == 0) {
8191     SetFlagsFromString(kDeoptEvery13Times);
8192   }
8193
8194 #ifdef DEBUG
8195   // As stressing in debug mode only make two runs skip the deopt stressing
8196   // here.
8197   if (run == GetStressRuns() - 1) {
8198     SetFlagsFromString(kForcedOptimizations);
8199   } else {
8200     SetFlagsFromString(kLazyOptimizations);
8201   }
8202 #else
8203   if (run == GetStressRuns() - 1) {
8204     SetFlagsFromString(kForcedOptimizations);
8205   } else if (run != GetStressRuns() - 2) {
8206     SetFlagsFromString(kLazyOptimizations);
8207   }
8208 #endif
8209 }
8210
8211
8212 // TODO(svenpanne) Deprecate this.
8213 void Testing::DeoptimizeAll() {
8214   i::Isolate* isolate = i::Isolate::Current();
8215   i::HandleScope scope(isolate);
8216   internal::Deoptimizer::DeoptimizeAll(isolate);
8217 }
8218
8219
8220 namespace internal {
8221
8222
8223 void HandleScopeImplementer::FreeThreadResources() {
8224   Free();
8225 }
8226
8227
8228 char* HandleScopeImplementer::ArchiveThread(char* storage) {
8229   HandleScopeData* current = isolate_->handle_scope_data();
8230   handle_scope_data_ = *current;
8231   MemCopy(storage, this, sizeof(*this));
8232
8233   ResetAfterArchive();
8234   current->Initialize();
8235
8236   return storage + ArchiveSpacePerThread();
8237 }
8238
8239
8240 int HandleScopeImplementer::ArchiveSpacePerThread() {
8241   return sizeof(HandleScopeImplementer);
8242 }
8243
8244
8245 char* HandleScopeImplementer::RestoreThread(char* storage) {
8246   MemCopy(this, storage, sizeof(*this));
8247   *isolate_->handle_scope_data() = handle_scope_data_;
8248   return storage + ArchiveSpacePerThread();
8249 }
8250
8251
8252 void HandleScopeImplementer::IterateThis(ObjectVisitor* v) {
8253 #ifdef DEBUG
8254   bool found_block_before_deferred = false;
8255 #endif
8256   // Iterate over all handles in the blocks except for the last.
8257   for (int i = blocks()->length() - 2; i >= 0; --i) {
8258     Object** block = blocks()->at(i);
8259     if (last_handle_before_deferred_block_ != NULL &&
8260         (last_handle_before_deferred_block_ <= &block[kHandleBlockSize]) &&
8261         (last_handle_before_deferred_block_ >= block)) {
8262       v->VisitPointers(block, last_handle_before_deferred_block_);
8263       DCHECK(!found_block_before_deferred);
8264 #ifdef DEBUG
8265       found_block_before_deferred = true;
8266 #endif
8267     } else {
8268       v->VisitPointers(block, &block[kHandleBlockSize]);
8269     }
8270   }
8271
8272   DCHECK(last_handle_before_deferred_block_ == NULL ||
8273          found_block_before_deferred);
8274
8275   // Iterate over live handles in the last block (if any).
8276   if (!blocks()->is_empty()) {
8277     v->VisitPointers(blocks()->last(), handle_scope_data_.next);
8278   }
8279
8280   List<Context*>* context_lists[2] = { &saved_contexts_, &entered_contexts_};
8281   for (unsigned i = 0; i < arraysize(context_lists); i++) {
8282     if (context_lists[i]->is_empty()) continue;
8283     Object** start = reinterpret_cast<Object**>(&context_lists[i]->first());
8284     v->VisitPointers(start, start + context_lists[i]->length());
8285   }
8286 }
8287
8288
8289 void HandleScopeImplementer::Iterate(ObjectVisitor* v) {
8290   HandleScopeData* current = isolate_->handle_scope_data();
8291   handle_scope_data_ = *current;
8292   IterateThis(v);
8293 }
8294
8295
8296 char* HandleScopeImplementer::Iterate(ObjectVisitor* v, char* storage) {
8297   HandleScopeImplementer* scope_implementer =
8298       reinterpret_cast<HandleScopeImplementer*>(storage);
8299   scope_implementer->IterateThis(v);
8300   return storage + ArchiveSpacePerThread();
8301 }
8302
8303
8304 DeferredHandles* HandleScopeImplementer::Detach(Object** prev_limit) {
8305   DeferredHandles* deferred =
8306       new DeferredHandles(isolate()->handle_scope_data()->next, isolate());
8307
8308   while (!blocks_.is_empty()) {
8309     Object** block_start = blocks_.last();
8310     Object** block_limit = &block_start[kHandleBlockSize];
8311     // We should not need to check for SealHandleScope here. Assert this.
8312     DCHECK(prev_limit == block_limit ||
8313            !(block_start <= prev_limit && prev_limit <= block_limit));
8314     if (prev_limit == block_limit) break;
8315     deferred->blocks_.Add(blocks_.last());
8316     blocks_.RemoveLast();
8317   }
8318
8319   // deferred->blocks_ now contains the blocks installed on the
8320   // HandleScope stack since BeginDeferredScope was called, but in
8321   // reverse order.
8322
8323   DCHECK(prev_limit == NULL || !blocks_.is_empty());
8324
8325   DCHECK(!blocks_.is_empty() && prev_limit != NULL);
8326   DCHECK(last_handle_before_deferred_block_ != NULL);
8327   last_handle_before_deferred_block_ = NULL;
8328   return deferred;
8329 }
8330
8331
8332 void HandleScopeImplementer::BeginDeferredScope() {
8333   DCHECK(last_handle_before_deferred_block_ == NULL);
8334   last_handle_before_deferred_block_ = isolate()->handle_scope_data()->next;
8335 }
8336
8337
8338 DeferredHandles::~DeferredHandles() {
8339   isolate_->UnlinkDeferredHandles(this);
8340
8341   for (int i = 0; i < blocks_.length(); i++) {
8342 #ifdef ENABLE_HANDLE_ZAPPING
8343     HandleScope::ZapRange(blocks_[i], &blocks_[i][kHandleBlockSize]);
8344 #endif
8345     isolate_->handle_scope_implementer()->ReturnBlock(blocks_[i]);
8346   }
8347 }
8348
8349
8350 void DeferredHandles::Iterate(ObjectVisitor* v) {
8351   DCHECK(!blocks_.is_empty());
8352
8353   DCHECK((first_block_limit_ >= blocks_.first()) &&
8354          (first_block_limit_ <= &(blocks_.first())[kHandleBlockSize]));
8355
8356   v->VisitPointers(blocks_.first(), first_block_limit_);
8357
8358   for (int i = 1; i < blocks_.length(); i++) {
8359     v->VisitPointers(blocks_[i], &blocks_[i][kHandleBlockSize]);
8360   }
8361 }
8362
8363
8364 void InvokeAccessorGetterCallback(
8365     v8::Local<v8::Name> property,
8366     const v8::PropertyCallbackInfo<v8::Value>& info,
8367     v8::AccessorNameGetterCallback getter) {
8368   // Leaving JavaScript.
8369   Isolate* isolate = reinterpret_cast<Isolate*>(info.GetIsolate());
8370   Address getter_address = reinterpret_cast<Address>(reinterpret_cast<intptr_t>(
8371       getter));
8372   VMState<EXTERNAL> state(isolate);
8373   ExternalCallbackScope call_scope(isolate, getter_address);
8374   getter(property, info);
8375 }
8376
8377
8378 void InvokeFunctionCallback(const v8::FunctionCallbackInfo<v8::Value>& info,
8379                             v8::FunctionCallback callback) {
8380   Isolate* isolate = reinterpret_cast<Isolate*>(info.GetIsolate());
8381   Address callback_address =
8382       reinterpret_cast<Address>(reinterpret_cast<intptr_t>(callback));
8383   VMState<EXTERNAL> state(isolate);
8384   ExternalCallbackScope call_scope(isolate, callback_address);
8385   callback(info);
8386 }
8387
8388
8389 }  // namespace internal
8390 }  // namespace v8