Home
last modified time | relevance | path

Searched refs:next_candidate (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/heap/
Dmark-compact.h438 Object* next_candidate = candidate->next_function_link(); in GetNextCandidate() local
439 return reinterpret_cast<JSFunction*>(next_candidate); in GetNextCandidate()
443 JSFunction* next_candidate) { in SetNextCandidate() argument
444 candidate->set_next_function_link(next_candidate); in SetNextCandidate()
453 Object* next_candidate = candidate->code()->gc_metadata(); in GetNextCandidate() local
454 return reinterpret_cast<SharedFunctionInfo*>(next_candidate); in GetNextCandidate()
458 SharedFunctionInfo* next_candidate) { in SetNextCandidate() argument
459 candidate->code()->set_gc_metadata(next_candidate); in SetNextCandidate()
Dmark-compact.cc1031 JSFunction* next_candidate; in ProcessJSFunctionCandidates() local
1033 next_candidate = GetNextCandidate(candidate); in ProcessJSFunctionCandidates()
1064 candidate = next_candidate; in ProcessJSFunctionCandidates()
1075 SharedFunctionInfo* next_candidate; in ProcessSharedFunctionInfoCandidates() local
1077 next_candidate = GetNextCandidate(candidate); in ProcessSharedFunctionInfoCandidates()
1096 candidate = next_candidate; in ProcessSharedFunctionInfoCandidates()
1162 SharedFunctionInfo* next_candidate; in EvictCandidate() local
1164 next_candidate = GetNextCandidate(shared_info); in EvictCandidate()
1165 shared_function_info_candidates_head_ = next_candidate; in EvictCandidate()
1169 next_candidate = GetNextCandidate(candidate); in EvictCandidate()
[all …]