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

  /external/chromium_org/v8/src/
full-codegen.cc 1089 int heap_slots = scope_info->ContextLength() - Context::MIN_CONTEXT_SLOTS; local
    [all...]
  /external/v8/src/
full-codegen.cc 923 int heap_slots = scope_info->ContextLength() - Context::MIN_CONTEXT_SLOTS; local
926 if (heap_slots <= FastNewBlockContextStub::kMaximumSlots) {
927 FastNewBlockContextStub stub(heap_slots);
    [all...]
  /external/v8/src/arm/
full-codegen-arm.cc 191 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
192 if (heap_slots > 0) {
196 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
197 FastNewContextStub stub(heap_slots);
    [all...]
lithium-codegen-arm.cc 176 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
177 if (heap_slots > 0) {
181 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
182 FastNewContextStub stub(heap_slots);
    [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc 184 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
185 if (heap_slots > 0) {
189 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
190 FastNewContextStub stub(heap_slots);
    [all...]
lithium-codegen-ia32.cc 188 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
189 if (heap_slots > 0) {
193 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
194 FastNewContextStub stub(heap_slots);
    [all...]
  /external/v8/src/mips/
full-codegen-mips.cc 198 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
199 if (heap_slots > 0) {
203 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
204 FastNewContextStub stub(heap_slots);
    [all...]
lithium-codegen-mips.cc 174 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
175 if (heap_slots > 0) {
179 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
180 FastNewContextStub stub(heap_slots);
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 198 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
199 if (heap_slots > 0) {
203 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
204 FastNewContextStub stub(heap_slots);
    [all...]
lithium-codegen-x64.cc 186 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
187 if (heap_slots > 0) {
191 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
192 FastNewContextStub stub(heap_slots);
    [all...]
  /external/chromium_org/v8/src/arm/
full-codegen-arm.cc 193 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
194 if (heap_slots > 0) {
201 } else if (heap_slots <= FastNewContextStub::kMaximumSlots) {
202 FastNewContextStub stub(heap_slots);
    [all...]
lithium-codegen-arm.cc 208 int heap_slots = info()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
209 if (heap_slots > 0) {
213 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
214 FastNewContextStub stub(heap_slots);
    [all...]
  /external/chromium_org/v8/src/ia32/
full-codegen-ia32.cc 184 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
185 if (heap_slots > 0) {
192 } else if (heap_slots <= FastNewContextStub::kMaximumSlots) {
193 FastNewContextStub stub(heap_slots);
    [all...]
lithium-codegen-ia32.cc 286 int heap_slots = info_->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
287 if (heap_slots > 0) {
291 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
292 FastNewContextStub stub(heap_slots);
    [all...]
  /external/chromium_org/v8/src/mips/
full-codegen-mips.cc 197 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
198 if (heap_slots > 0) {
205 } else if (heap_slots <= FastNewContextStub::kMaximumSlots) {
206 FastNewContextStub stub(heap_slots);
    [all...]
lithium-codegen-mips.cc 207 int heap_slots = info()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
208 if (heap_slots > 0) {
212 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
213 FastNewContextStub stub(heap_slots);
    [all...]
  /external/chromium_org/v8/src/x64/
full-codegen-x64.cc 179 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
180 if (heap_slots > 0) {
187 } else if (heap_slots <= FastNewContextStub::kMaximumSlots) {
188 FastNewContextStub stub(heap_slots);
    [all...]
lithium-codegen-x64.cc 217 int heap_slots = info_->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
218 if (heap_slots > 0) {
222 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
223 FastNewContextStub stub(heap_slots);
    [all...]

Completed in 483 milliseconds