Lines Matching refs:entry
177 // control-flow commands that cause entry into a finally-block, and re-apply
260 // This generates a dynamic dispatch on the token from the entry point.
267 // For a single entry, just jump to the fallthrough if we don't match the
268 // entry token.
269 const Entry& entry = deferred_[0];
272 ->LoadLiteral(Smi::FromInt(entry.token))
276 if (CommandUsesAccumulator(entry.command)) {
279 execution_control()->PerformCommand(entry.command, entry.statement,
291 for (const Entry& entry : deferred_) {
292 builder()->Bind(jump_table, entry.token);
294 if (CommandUsesAccumulator(entry.command)) {
297 execution_control()->PerformCommand(entry.command, entry.statement,
990 auto entry = std::make_pair(key, slot_index);
991 map_.insert(entry);
1634 for (auto entry : descriptor->namespace_imports()) {
1636 ->LoadLiteral(Smi::FromInt(entry->module_request))
1639 Variable* var = closure_scope()->LookupInModule(entry->local_name);
2221 // Pending message object is saved on entry.
2519 size_t entry = builder()->AllocateDeferredConstantPoolEntry();
2520 builder()->CreateClosure(entry, GetCachedCreateClosureSlot(expr), flags);
2521 function_literals_.push_back(std::make_pair(expr, entry));
2954 size_t entry = builder()->AllocateDeferredConstantPoolEntry();
2957 builder()->CreateClosure(entry, index, flags);
2958 native_function_literals_.push_back(std::make_pair(expr, entry));
3026 uint8_t flags, size_t entry) {
3032 ->CreateObjectLiteral(entry, literal_index, flags)
3079 size_t entry;
3083 entry = builder()->EmptyObjectBoilerplateDescriptionConstantPoolEntry();
3085 entry = builder()->AllocateDeferredConstantPoolEntry();
3086 object_literals_.push_back(std::make_pair(expr->builder(), entry));
3088 BuildCreateObjectLiteral(literal, flags, entry);
3383 // First, allocate a constant pool entry for the boilerplate that will
3419 size_t entry = builder()->AllocateDeferredConstantPoolEntry();
3420 array_literals_.push_back(std::make_pair(array_literal_builder, entry));
3422 builder()->CreateArrayLiteral(entry, literal_index, flags);
6441 size_t entry = builder()->AllocateDeferredConstantPoolEntry();
6442 template_objects_.push_back(std::make_pair(expr, entry));
6444 builder()->GetTemplateObject(entry, feedback_index(literal_slot));
6957 // The new.target register was already assigned by entry trampoline.