HomeSort by relevance Sort by last modified time
    Searched refs:thread_local_ (Results 1 - 8 of 8) sorted by null

  /external/v8/src/
regexp-stack.cc 48 size_t size = sizeof(thread_local_);
50 &thread_local_, local
52 thread_local_ = ThreadLocal();
58 size_t size = sizeof(thread_local_);
59 memcpy(&thread_local_, reinterpret_cast<void*>(from), size);
65 if (thread_local_.memory_size_ > kMinimumStackSize) {
66 DeleteArray(thread_local_.memory_);
67 thread_local_ = ThreadLocal();
73 if (thread_local_.memory_size_ > 0) {
74 DeleteArray(thread_local_.memory_)
101 RegExpStack::ThreadLocal RegExpStack::thread_local_; member in class:v8::internal::RegExpStack
    [all...]
regexp-stack.h 52 ASSERT(thread_local_.memory_size_ != 0);
53 return thread_local_.memory_ + thread_local_.memory_size_;
57 static size_t stack_capacity() { return thread_local_.memory_size_; }
64 static Address* limit_address() { return &(thread_local_.limit_); }
72 return static_cast<int>(sizeof(thread_local_));
76 static void FreeThreadResources() { thread_local_.Free(); }
103 return reinterpret_cast<Address>(&thread_local_.memory_);
108 return reinterpret_cast<Address>(&thread_local_.memory_size_);
116 static ThreadLocal thread_local_; member in class:v8::internal::RegExpStack
    [all...]
top.h 148 static Context* context() { return thread_local_.context_; }
150 thread_local_.context_ = context;
152 static Context** context_address() { return &thread_local_.context_; }
154 static SaveContext* save_context() {return thread_local_.save_context_; }
156 thread_local_.save_context_ = save;
160 static int thread_id() { return thread_local_.thread_id_; }
161 static void set_thread_id(int id) { thread_local_.thread_id_ = id; }
166 return thread_local_.pending_exception_;
169 return thread_local_.external_caught_exception_;
172 thread_local_.pending_exception_ = exception
370 static ThreadLocalTop thread_local_; member in class:v8::internal::Top
    [all...]
top.cc 41 ThreadLocalTop Top::thread_local_; member in class:v8::internal::Top
113 ThreadLocalTop* current_t = &thread_local_;
119 thread_local_.Initialize();
277 thread_local_.set_try_catch_handler_address(address);
282 ASSERT(thread_local_.TryCatchHandler() == that);
283 thread_local_.set_try_catch_handler_address(
285 thread_local_.catcher_ = NULL;
291 MarkCompactPrologue(is_compacting, &thread_local_);
313 MarkCompactEpilogue(is_compacting, &thread_local_);
426 ASSERT(thread_local_.failed_access_check_callback_ == NULL)
    [all...]
execution.h 185 return thread_local_.climit_;
188 return thread_local_.jslimit_;
191 return thread_local_.real_jslimit_;
194 return reinterpret_cast<Address>(&thread_local_.jslimit_);
197 return reinterpret_cast<Address>(&thread_local_.real_jslimit_);
206 thread_local_.jslimit_ = value;
207 thread_local_.climit_ = value;
214 thread_local_.jslimit_ = thread_local_.real_jslimit_;
215 thread_local_.climit_ = thread_local_.real_climit_
260 static ThreadLocal thread_local_; member in class:v8::internal::StackGuard
    [all...]
execution.cc 212 StackGuard::ThreadLocal StackGuard::thread_local_; member in class:v8::internal::StackGuard
217 return (thread_local_.jslimit_ != kInterruptLimit &&
218 thread_local_.climit_ != kInterruptLimit);
235 if (thread_local_.jslimit_ == thread_local_.real_jslimit_) {
236 thread_local_.jslimit_ = jslimit;
238 if (thread_local_.climit_ == thread_local_.real_climit_) {
239 thread_local_.climit_ = limit;
241 thread_local_.real_climit_ = limit
    [all...]
debug.h 222 static bool InDebugger() { return thread_local_.debugger_entry_ != NULL; }
274 return thread_local_.break_frame_id_;
276 static int break_id() { return thread_local_.break_id_; }
278 static bool StepInActive() { return thread_local_.step_into_fp_ != 0; }
283 static Address step_in_fp() { return thread_local_.step_into_fp_; }
284 static Address* step_in_fp_addr() { return &thread_local_.step_into_fp_; }
286 static bool StepOutActive() { return thread_local_.step_out_fp_ != 0; }
287 static Address step_out_fp() { return thread_local_.step_out_fp_; }
290 return thread_local_.debugger_entry_;
293 thread_local_.debugger_entry_ = entry
458 static ThreadLocal thread_local_; member in class:v8::internal::Debug
    [all...]
debug.cc 502 thread_local_.break_count_ = 0;
503 thread_local_.break_id_ = 0;
504 thread_local_.break_frame_id_ = StackFrame::NO_ID;
505 thread_local_.last_step_action_ = StepNone;
506 thread_local_.last_statement_position_ = RelocInfo::kNoPosition;
507 thread_local_.step_count_ = 0;
508 thread_local_.last_fp_ = 0;
509 thread_local_.step_into_fp_ = 0;
510 thread_local_.step_out_fp_ = 0;
511 thread_local_.after_break_target_ = 0
518 Debug::ThreadLocal Debug::thread_local_; member in class:v8::internal::Debug
    [all...]

Completed in 180 milliseconds