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

1 2

  /external/v8/src/
code-stubs.h 341 class FastNewContextStub : public CodeStub {
345 explicit FastNewContextStub(int slots) : slots_(slots) {
    [all...]
  /external/chromium_org/v8/src/
code-stubs.h 515 class FastNewContextStub : public PlatformCodeStub {
519 explicit FastNewContextStub(int slots) : slots_(slots) {
    [all...]
  /external/v8/src/arm/
full-codegen-arm.cc 196 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
197 FastNewContextStub stub(heap_slots);
    [all...]
lithium-codegen-arm.cc 181 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
182 FastNewContextStub stub(heap_slots);
    [all...]
code-stubs-arm.cc 142 void FastNewContextStub::Generate(MacroAssembler* masm) {
    [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc 189 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
190 FastNewContextStub stub(heap_slots);
    [all...]
lithium-codegen-ia32.cc 193 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
194 FastNewContextStub stub(heap_slots);
    [all...]
code-stubs-ia32.cc 121 void FastNewContextStub::Generate(MacroAssembler* masm) {
    [all...]
  /external/v8/src/mips/
full-codegen-mips.cc 203 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
204 FastNewContextStub stub(heap_slots);
    [all...]
lithium-codegen-mips.cc 179 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
180 FastNewContextStub stub(heap_slots);
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 203 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
204 FastNewContextStub stub(heap_slots);
    [all...]
lithium-codegen-x64.cc 191 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
192 FastNewContextStub stub(heap_slots);
    [all...]
code-stubs-x64.cc 117 void FastNewContextStub::Generate(MacroAssembler* masm) {
    [all...]
  /external/chromium_org/v8/src/arm/
full-codegen-arm.cc 201 } else if (heap_slots <= FastNewContextStub::kMaximumSlots) {
202 FastNewContextStub stub(heap_slots);
    [all...]
lithium-codegen-arm.cc 213 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
214 FastNewContextStub stub(heap_slots);
    [all...]
code-stubs-arm.cc 440 void FastNewContextStub::Generate(MacroAssembler* masm) {
    [all...]
  /external/chromium_org/v8/src/ia32/
full-codegen-ia32.cc 192 } else if (heap_slots <= FastNewContextStub::kMaximumSlots) {
193 FastNewContextStub stub(heap_slots);
    [all...]
lithium-codegen-ia32.cc 291 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
292 FastNewContextStub stub(heap_slots);
    [all...]
code-stubs-ia32.cc 429 void FastNewContextStub::Generate(MacroAssembler* masm) {
    [all...]
  /external/chromium_org/v8/src/mips/
full-codegen-mips.cc 205 } else if (heap_slots <= FastNewContextStub::kMaximumSlots) {
206 FastNewContextStub stub(heap_slots);
    [all...]
lithium-codegen-mips.cc 212 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
213 FastNewContextStub stub(heap_slots);
    [all...]
code-stubs-mips.cc 441 void FastNewContextStub::Generate(MacroAssembler* masm) {
    [all...]
  /external/chromium_org/v8/src/x64/
full-codegen-x64.cc 187 } else if (heap_slots <= FastNewContextStub::kMaximumSlots) {
188 FastNewContextStub stub(heap_slots);
    [all...]
lithium-codegen-x64.cc 222 if (heap_slots <= FastNewContextStub::kMaximumSlots) {
223 FastNewContextStub stub(heap_slots);
    [all...]
code-stubs-x64.cc 432 void FastNewContextStub::Generate(MacroAssembler* masm) {
    [all...]

Completed in 884 milliseconds

1 2