Lines Matching defs:isolate
14 #include "src/execution/isolate.h"
36 static StackMemory* New(Isolate* isolate) { return new StackMemory(isolate); }
39 static StackMemory* GetCurrentStackView(Isolate* isolate) {
41 reinterpret_cast<byte*>(isolate->stack_guard()->real_jslimit());
42 return new StackMemory(isolate, limit);
52 // this). This only happens on isolate tear down, otherwise there is always
89 explicit StackMemory(Isolate* isolate) : isolate_(isolate), owned_(true) {
105 StackMemory(Isolate* isolate, byte* limit)
106 : isolate_(isolate),
119 // Stacks form a circular doubly linked list per isolate.