HomeSort by relevance Sort by last modified time
    Searched refs:Top (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /external/v8/src/
top.cc 41 ThreadLocalTop Top::thread_local_;
42 Mutex* Top::break_access_ = OS::CreateMutex();
47 #define C(name) reinterpret_cast<Address>(Top::name()),
78 Address Top::get_address_from_id(Top::AddressId id) {
83 char* Top::Iterate(ObjectVisitor* v, char* thread_storage) {
90 void Top::Iterate(ObjectVisitor* v, ThreadLocalTop* thread) {
112 void Top::Iterate(ObjectVisitor* v) {
118 void Top::InitializeThreadLocal() {
237 void Top::Initialize()
    [all...]
execution.cc 107 ASSERT(*has_pending_exception == Top::has_pending_exception());
109 Top::ReportPendingMessages();
112 Top::clear_pending_message();
130 return Invoke(true, func, Top::global(), argc, args, pending_exception);
152 ASSERT(Top::has_pending_exception());
153 ASSERT(Top::external_caught_exception());
154 if (Top::pending_exception() == Heap::termination_exception()) {
159 Top::OptionalRescheduleException(true);
162 ASSERT(!Top::has_pending_exception());
163 ASSERT(!Top::external_caught_exception())
    [all...]
top.h 38 if (Top::has_scheduled_exception()) return Top::PromoteScheduledException()
40 // Top has static variables used for JavaScript execution.
49 // Get the top C++ try catch handler or NULL if none are registered.
56 // Get the address of the top C++ try catch handler or NULL if
70 // Set the address of the top C++ try catch handler.
101 Address c_entry_fp_; // the frame pointer of the top c entry frame
135 class Top {
147 // Access to top context (where the current function object was created).
269 // Returns if the top context may access the given global object. I
    [all...]
v8threads.cc 160 from = Top::RestoreThread(from);
195 Top::ArchiveSpacePerThread() +
291 to = Top::ArchiveThread(to);
306 Top::FreeThreadResources();
328 data = Top::Iterate(v, data);
340 Top::MarkCompactPrologue(is_compacting, data);
351 Top::MarkCompactEpilogue(is_compacting, data);
367 Top::set_thread_id(thread_id);
messages.cc 34 #include "top.h"
76 Handle<JSFunction> fun(Top::global_context()->make_message_fun());
150 JSFunction::cast(Top::builtins()->GetProperty(*fmt_str)));
155 Execution::TryCall(fun, Top::builtins(), 1, argv, &caught_exception);
v8.cc 88 Top::Initialize();
148 Top::TearDown();
bootstrapper.cc 437 Handle<JSObject> prototype = Factory::NewJSObject(Top::object_function(),
483 Top::set_context(*global_context());
538 Top::object_function(), NONE);
640 SetProperty(inner_global, object_name, Top::object_function(), DONT_ENUM);
651 Top::initial_object_prototype(), Builtins::ArrayCode,
681 Top::initial_object_prototype(), Builtins::Illegal,
689 Top::initial_object_prototype(), Builtins::Illegal,
697 Top::initial_object_prototype(), Builtins::Illegal,
719 Top::initial_object_prototype(), Builtins::Illegal,
730 Top::initial_object_prototype(), Builtins::Illegal
    [all...]
compiler.cc 58 // Compute top scope and allocate variables. For lazy compilation
59 // the top scope only contains the single lazily compiled function,
62 Scope* top = info->scope(); local
63 while (top->outer_scope() != NULL) top = top->outer_scope();
64 top->AllocateVariables(context);
131 ASSERT(!i::Top::global_context().is_null());
132 script->set_context_data((*i::Top::global_context())->data());
167 ASSERT(Top::has_pending_exception())
    [all...]
frames.cc 34 #include "top.h"
41 // particular frame. Needs to know the top of the handler chain.
72 frame_(NULL), handler_(NULL), thread_(Top::GetCurrentThread()),
85 thread_(use_top ? Top::GetCurrentThread() : NULL),
102 // frame code that computes the caller state to access the top
134 type = ExitFrame::GetStateForFramePointer(Top::c_entry_fp(thread_), &state);
135 handler_ = StackHandler::FromAddress(Top::handler(thread_));
208 Top::c_entry_fp(Top::GetCurrentThread())) &&
209 Top::handler(Top::GetCurrentThread()) != NULL)
    [all...]
checks.cc 33 #include "top.h"
55 i::Top::PrintStack();
runtime.cc 54 if (!(value)) return Top::ThrowIllegalOperation();
101 if (check.HasOverflowed()) return Top::StackOverflow();
480 Top::context()->global_context()->context_extension_function();
721 return Top::Throw(*error);
727 Handle<GlobalObject> global = Handle<GlobalObject>(Top::context()->global());
    [all...]
factory.cc 307 boilerplate, Top::function_map(), pretenure);
419 Handle<Object> fun_obj(Top::builtins()->GetProperty(*make_str));
433 Top::builtins(),
452 Top::builtins()->GetProperty(*constr)));
459 Top::builtins(),
670 Handle<JSObject> obj = NewJSObject(Top::array_function(), pretenure);
678 Handle<JSArray>::cast(NewJSObject(Top::array_function(), pretenure));
706 CALL_HEAP_FUNCTION(Heap::AllocateFunction(*Top::function_map(),
716 fun->set_context(Top::context()->global_context());
    [all...]
builtins.cc 151 Address fp = Top::c_entry_fp(Top::GetCurrentThread());
191 Top::context()->global_context()->array_function();
298 // Get top element
300 Object* top = elms->get(len - 1); local
305 if (!top->IsTheHole()) {
306 // Delete the top element.
308 return top;
313 Top::context()->global_context()->array_function();
315 top = prototype->GetElement(len - 1)
    [all...]
regexp-macro-assembler.cc 179 if (result == EXCEPTION && !Top::has_pending_exception()) {
182 Top::StackOverflow();
handles.cc 64 // top of the scope stack isn't a barrier.
345 Handle<Object> hidden_obj = Factory::NewJSObject(Top::object_function());
430 Handle<JSFunction> constructor = Top::script_function();
569 Top::context()->global_context()->arguments_boilerplate());
582 !Top::MayNamedAccess(*current, Heap::undefined_value(),
584 Top::ReportFailedAccessCheck(*current, v8::ACCESS_KEYS);
696 ASSERT(result != Top::has_pending_exception());
697 if (!result && flag == CLEAR_EXCEPTION) Top::clear_pending_exception();
accessors.cc 34 #include "top.h"
92 Top::context()->global_context()->number_function()->has_initial_map());
94 Top::context()->global_context()->number_function()->initial_map();
131 return Top::Throw(*Factory::NewRangeError("invalid_array_length",
546 // Find the top invocation of the function by traversing frames.
605 // Find the top invocation of the function by traversing frames.
610 // frame. This may require skipping through a number of top-level
debug.cc 379 // flood the top frame's function with one shot breakpoints.
698 ASSERT(Top::has_pending_exception());
699 Top::clear_pending_exception();
704 Handle<Context> context = Top::global_context();
751 Top::set_context(*context);
810 // Get the top-most JavaScript frame.
949 Top::builtins(), argc, argv,
    [all...]
  /external/v8/test/cctest/
test-compiler.cc 37 #include "top.h"
103 return Top::context()->global()->GetProperty(*symbol);
110 Handle<JSObject> global(Top::context()->global());
126 Top::global_context());
139 Handle<JSObject> global(Top::context()->global());
160 Handle<JSObject> global(Top::context()->global());
180 Handle<JSObject> global(Top::context()->global());
201 Handle<JSObject> global(Top::context()->global());
222 Handle<JSObject> global(Top::context()->global());
255 Handle<JSObject> global(Top::context()->global())
    [all...]
test-mark-compact.cc 34 #include "top.h"
176 JSFunction::cast(Heap::AllocateFunction(*Top::function_map(),
182 Top::context()->global()->SetProperty(func_name, function, NONE);
188 CHECK(Top::context()->global()->HasLocalProperty(func_name));
189 Object* func_value = Top::context()->global()->GetProperty(func_name);
195 Top::context()->global()->SetProperty(obj_name, obj, NONE);
202 CHECK(Top::context()->global()->HasLocalProperty(obj_name));
203 CHECK(Top::context()->global()->GetProperty(obj_name)->IsJSObject());
204 obj = JSObject::cast(Top::context()->global()->GetProperty(obj_name));
test-log-stack-tracer.cc 13 #include "top.h"
31 using v8::internal::Top;
61 v8::internal::Address saved_c_frame_fp = *(Top::c_entry_fp_address());
63 *(Top::c_entry_fp_address()) = 0;
65 *(Top::c_entry_fp_address()) = saved_c_frame_fp;
155 CHECK_NE(NULL, Top::GetCurrentThread());
156 return Top::js_entry_sp(Top::GetCurrentThread());
test-heap.cc 162 CHECK(Top::context()->global()->HasLocalProperty(object_symbol));
213 JSFunction::cast(Heap::AllocateFunction(*Top::function_map(),
219 Top::context()->global()->SetProperty(func_name, function, NONE);
235 CHECK(Top::context()->global()->HasLocalProperty(func_name));
237 Object* func_value = Top::context()->global()->GetProperty(func_name);
245 Top::context()->global()->SetProperty(obj_name, obj, NONE);
254 CHECK(Top::context()->global()->HasLocalProperty(obj_name));
255 CHECK(Top::context()->global()->GetProperty(obj_name)->IsJSObject());
256 obj = JSObject::cast(Top::context()->global()->GetProperty(obj_name));
516 JSFunction::cast(Heap::AllocateFunction(*Top::function_map()
    [all...]
  /external/skia/src/images/
SkImageDecoder_libgif.cpp 210 if ( (desc.Top | desc.Left) < 0 ||
212 desc.Top + desc.Height > height) {
261 if ((desc.Top | desc.Left) > 0 ||
277 scanline += desc.Top * rowBytes + desc.Left;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
heap.h 98 T Top() const {
  /external/quake/quake/src/WinQuake/
conproc.cpp 309 info.srWindow.Top = 0;
339 info.srWindow.Top = 0;
  /external/kernel-headers/original/asm-arm/
memory.h 61 #error Top of user space clashes with start of module space

Completed in 312 milliseconds

1 2 3 4