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

  /external/v8/src/arm/
codegen-arm.cc 186 int heap_slots = scope()->num_heap_slots(); local
187 if (heap_slots > 0) {
192 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
193 FastNewContextStub stub(heap_slots);
    [all...]
  /external/v8/src/x64/
codegen-x64.cc 326 int heap_slots = scope()->num_heap_slots(); local
327 if (heap_slots > 0) {
333 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
334 FastNewContextStub stub(heap_slots);
    [all...]
  /external/v8/src/ia32/
codegen-ia32.cc 174 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
175 if (heap_slots > 0) {
181 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
182 FastNewContextStub stub(heap_slots);
    [all...]

Completed in 26 milliseconds