/external/v8/src/runtime/ |
D | runtime-literals.cc | 213 FeedbackSlot literal_slot(FeedbackVector::ToSlot(index)); in RUNTIME_FUNCTION() local 216 Handle<Object> boilerplate(closure->feedback_vector()->Get(literal_slot), in RUNTIME_FUNCTION() 221 closure->feedback_vector()->Set(literal_slot, *boilerplate); in RUNTIME_FUNCTION()
|
/external/v8/src/interpreter/ |
D | bytecode-generator.cc | 515 FeedbackSlot literal_slot, in AddFunctionDeclaration() argument 518 declarations_.push_back(Declaration(name, slot, literal_slot, func)); in AddFunctionDeclaration() 548 if (declaration.literal_slot.IsInvalid()) { in AllocateDeclarations() 552 Smi::FromInt(declaration.literal_slot.ToInt()); in AllocateDeclarations() 578 FeedbackSlot literal_slot, FunctionLiteral* func) in Declaration() 579 : name(name), slot(slot), literal_slot(literal_slot), func(func) {} in Declaration() 584 literal_slot(FeedbackSlot::Invalid()), in Declaration() 589 FeedbackSlot literal_slot; member 1667 expr->raw_pattern(), feedback_index(expr->literal_slot()), expr->flags()); in VisitRegExpLiteral() 1688 builder()->CreateObjectLiteral(entry, feedback_index(expr->literal_slot()), in VisitObjectLiteral() [all …]
|
/external/v8/src/ast/ |
D | prettyprinter.cc | 981 SNPrintF(buf, "literal_slot = %d\n", node->literal_slot().ToInt()); in VisitRegExpLiteral() 1000 SNPrintF(buf, "literal_slot = %d\n", node->literal_slot().ToInt()); in VisitObjectLiteral() 1046 SNPrintF(buf, "literal_slot = %d\n", node->literal_slot().ToInt()); in VisitArrayLiteral()
|
D | ast.h | 1250 FeedbackSlot literal_slot() const { return literal_slot_; } in literal_slot() function
|
/external/v8/src/full-codegen/x64/ |
D | full-codegen-x64.cc | 1180 __ Push(SmiFromSlot(expr->literal_slot())); in VisitObjectLiteral() 1186 __ Move(rbx, SmiFromSlot(expr->literal_slot())); in VisitObjectLiteral() 1307 __ Push(SmiFromSlot(expr->literal_slot())); in VisitArrayLiteral() 1313 __ Move(rbx, SmiFromSlot(expr->literal_slot())); in VisitArrayLiteral()
|
/external/v8/src/full-codegen/ia32/ |
D | full-codegen-ia32.cc | 1149 __ push(Immediate(SmiFromSlot(expr->literal_slot()))); in VisitObjectLiteral() 1155 __ mov(ebx, Immediate(SmiFromSlot(expr->literal_slot()))); in VisitObjectLiteral() 1277 __ push(Immediate(SmiFromSlot(expr->literal_slot()))); in VisitArrayLiteral() 1283 __ mov(ebx, Immediate(SmiFromSlot(expr->literal_slot()))); in VisitArrayLiteral()
|
/external/v8/src/compiler/ |
D | ast-graph-builder.cc | 1273 FeedbackVector::GetIndex(expr->literal_slot())); in VisitRegExpLiteral() 1286 FeedbackVector::GetIndex(expr->literal_slot()), expr->properties_count()); in VisitObjectLiteral() 1415 FeedbackVector::GetIndex(expr->literal_slot()), expr->values()->length()); in VisitArrayLiteral()
|
/external/v8/src/full-codegen/ |
D | full-codegen.cc | 1300 SmiFromSlot(expr->literal_slot())); in VisitRegExpLiteral()
|
/external/v8/src/full-codegen/mips64/ |
D | full-codegen-mips64.cc | 1221 __ li(a2, Operand(SmiFromSlot(expr->literal_slot()))); in VisitObjectLiteral() 1354 __ li(a2, Operand(SmiFromSlot(expr->literal_slot()))); in VisitArrayLiteral()
|
/external/v8/src/full-codegen/arm/ |
D | full-codegen-arm.cc | 1219 __ mov(r2, Operand(SmiFromSlot(expr->literal_slot()))); in VisitObjectLiteral() 1352 __ mov(r2, Operand(SmiFromSlot(expr->literal_slot()))); in VisitArrayLiteral()
|
/external/v8/src/full-codegen/s390/ |
D | full-codegen-s390.cc | 1154 __ LoadSmiLiteral(r4, SmiFromSlot(expr->literal_slot())); in VisitObjectLiteral() 1284 __ LoadSmiLiteral(r4, SmiFromSlot(expr->literal_slot())); in VisitArrayLiteral()
|
/external/v8/src/full-codegen/ppc/ |
D | full-codegen-ppc.cc | 1189 __ LoadSmiLiteral(r5, SmiFromSlot(expr->literal_slot())); in VisitObjectLiteral() 1320 __ LoadSmiLiteral(r5, SmiFromSlot(expr->literal_slot())); in VisitArrayLiteral()
|
/external/v8/src/full-codegen/mips/ |
D | full-codegen-mips.cc | 1219 __ li(a2, Operand(SmiFromSlot(expr->literal_slot()))); in VisitObjectLiteral() 1352 __ li(a2, Operand(SmiFromSlot(expr->literal_slot()))); in VisitArrayLiteral()
|
/external/v8/src/full-codegen/arm64/ |
D | full-codegen-arm64.cc | 1206 __ Mov(x2, SmiFromSlot(expr->literal_slot())); in VisitObjectLiteral() 1337 __ Mov(x2, SmiFromSlot(expr->literal_slot())); in VisitArrayLiteral()
|
/external/v8/src/crankshaft/ |
D | hydrogen.cc | 5358 int index = FeedbackVector::GetIndex(expr->literal_slot()); in VisitRegExpLiteral() 5460 closure->feedback_vector()->Get(expr->literal_slot()), isolate()); in VisitObjectLiteral() 5480 int literal_index = FeedbackVector::GetIndex(expr->literal_slot()); in VisitObjectLiteral() 5582 Handle<Object> literals_cell(vector->Get(expr->literal_slot()), isolate()); in VisitArrayLiteral() 5605 int literal_index = FeedbackVector::GetIndex(expr->literal_slot()); in VisitArrayLiteral()
|