OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MIN_CONTEXT_SLOTS
(Results
1 - 19
of
19
) sorted by null
/external/v8/src/
scopeinfo.cc
115
ASSERT(heap_locals[i]->AsSlot()->index() - Context::
MIN_CONTEXT_SLOTS
==
117
ASSERT(heap_locals[i]->AsSlot()->index() - Context::
MIN_CONTEXT_SLOTS
==
140
ASSERT(var->AsSlot()->index() - Context::
MIN_CONTEXT_SLOTS
==
142
ASSERT(var->AsSlot()->index() - Context::
MIN_CONTEXT_SLOTS
==
332
// Context::
MIN_CONTEXT_SLOTS
of fixed allocated slots in the context.
337
Context::
MIN_CONTEXT_SLOTS
);
346
ASSERT(number_of_context_slots() >= Context::
MIN_CONTEXT_SLOTS
);
347
number_of_locals += number_of_context_slots() - Context::
MIN_CONTEXT_SLOTS
;
415
return number_of_context_slots + Context::
MIN_CONTEXT_SLOTS
;
468
result = static_cast<int>((p - p0) >> 1) + Context::
MIN_CONTEXT_SLOTS
;
[
all
...]
scopeinfo.h
75
return context_slots_[i - Context::
MIN_CONTEXT_SLOTS
];
79
return l == 0 ? 0 : l + Context::
MIN_CONTEXT_SLOTS
;
126
// Return if this has context slots besides
MIN_CONTEXT_SLOTS
;
contexts.cc
130
ASSERT(index < 0 || index >=
MIN_CONTEXT_SLOTS
);
227
ASSERT(index < 0 || index >=
MIN_CONTEXT_SLOTS
);
contexts.h
186
MIN_CONTEXT_SLOTS
,
189
GLOBAL_PROXY_INDEX =
MIN_CONTEXT_SLOTS
,
scopes.cc
[
all
...]
frames.cc
971
if (heap_locals_count > Context::
MIN_CONTEXT_SLOTS
) {
[
all
...]
bootstrapper.cc
[
all
...]
runtime.cc
[
all
...]
heap.cc
[
all
...]
objects.cc
[
all
...]
/external/v8/src/x64/
code-stubs-x64.cc
120
int length = slots_ + Context::
MIN_CONTEXT_SLOTS
;
145
for (int i = Context::
MIN_CONTEXT_SLOTS
; i < length; i++) {
[
all
...]
full-codegen-x64.cc
143
int heap_slots = scope()->num_heap_slots() - Context::
MIN_CONTEXT_SLOTS
;
[
all
...]
lithium-codegen-x64.cc
176
int heap_slots = scope()->num_heap_slots() - Context::
MIN_CONTEXT_SLOTS
;
[
all
...]
/external/v8/src/arm/
code-stubs-arm.cc
139
int length = slots_ + Context::
MIN_CONTEXT_SLOTS
;
171
for (int i = Context::
MIN_CONTEXT_SLOTS
; i < length; i++) {
[
all
...]
full-codegen-arm.cc
156
int heap_slots = scope()->num_heap_slots() - Context::
MIN_CONTEXT_SLOTS
;
[
all
...]
lithium-codegen-arm.cc
168
int heap_slots = scope()->num_heap_slots() - Context::
MIN_CONTEXT_SLOTS
;
[
all
...]
/external/v8/src/ia32/
code-stubs-ia32.cc
123
int length = slots_ + Context::
MIN_CONTEXT_SLOTS
;
152
for (int i = Context::
MIN_CONTEXT_SLOTS
; i < length; i++) {
[
all
...]
full-codegen-ia32.cc
144
int heap_slots = scope()->num_heap_slots() - Context::
MIN_CONTEXT_SLOTS
;
[
all
...]
lithium-codegen-ia32.cc
161
int heap_slots = scope()->num_heap_slots() - Context::
MIN_CONTEXT_SLOTS
;
[
all
...]
Completed in 507 milliseconds