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

  /external/v8/src/
code-stubs.h 341 class FastNewContextStub : public CodeStub {
345 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...]
code-stubs-mips.cc 144 void FastNewContextStub::Generate(MacroAssembler* masm) {
    [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...]

Completed in 208 milliseconds