Lines Matching defs:entry
399 // return address into the interpreter entry trampoline, then we are likely
659 // Frames for baseline entry trampolines on the stack are still
868 // with the pc in this state (the return address into a C entry
1062 InnerPointerToCodeCache::InnerPointerToCodeCacheEntry* entry =
1064 if (!entry->safepoint_entry.is_initialized()) {
1065 entry->safepoint_entry =
1066 entry->code.GetSafepointEntry(isolate(), inner_pointer);
1067 DCHECK(entry->safepoint_entry.is_initialized());
1069 DCHECK_EQ(entry->safepoint_entry,
1070 entry->code.GetSafepointEntry(isolate(), inner_pointer));
1073 code = entry->code;
1074 safepoint_entry = entry->safepoint_entry;
1625 // For the special function entry bytecode offset (-1), which signals
1626 // that the stack trace was captured while the function entry was
2457 InnerPointerToCodeCacheEntry* entry = cache(index);
2458 if (entry->inner_pointer == inner_pointer) {
2460 DCHECK(entry->code ==
2465 // has been set. Otherwise, we risk trying to use a cache entry before
2467 entry->code =
2469 entry->safepoint_entry.Reset();
2470 entry->inner_pointer = inner_pointer;
2472 return entry;