Home
last modified time | relevance | path

Searched refs:next_map (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/v8/src/ic/ia32/
Dic-compiler-ia32.cc109 Label next_map; in CompileKeyedStorePolymorphic() local
110 __ j(not_equal, &next_map, Label::kNear); in CompileKeyedStorePolymorphic()
113 __ bind(&next_map); in CompileKeyedStorePolymorphic()
/external/chromium_org/v8/src/ic/mips64/
Dic-compiler-mips64.cc94 Label next_map; in CompileKeyedStorePolymorphic() local
95 __ Branch(&next_map, ne, scratch1(), Operand(receiver_maps->at(i))); in CompileKeyedStorePolymorphic()
98 __ bind(&next_map); in CompileKeyedStorePolymorphic()
/external/chromium_org/v8/src/ic/x64/
Dic-compiler-x64.cc55 Label next_map; in CompileKeyedStorePolymorphic() local
56 __ j(not_equal, &next_map, Label::kNear); in CompileKeyedStorePolymorphic()
60 __ bind(&next_map); in CompileKeyedStorePolymorphic()
/external/chromium_org/v8/src/ic/x87/
Dic-compiler-x87.cc109 Label next_map; in CompileKeyedStorePolymorphic() local
110 __ j(not_equal, &next_map, Label::kNear); in CompileKeyedStorePolymorphic()
113 __ bind(&next_map); in CompileKeyedStorePolymorphic()
/external/chromium_org/v8/src/ic/arm/
Dic-compiler-arm.cc110 Label next_map; in CompileKeyedStorePolymorphic() local
111 __ b(ne, &next_map); in CompileKeyedStorePolymorphic()
114 __ bind(&next_map); in CompileKeyedStorePolymorphic()
/external/chromium_org/v8/src/ic/mips/
Dic-compiler-mips.cc94 Label next_map; in CompileKeyedStorePolymorphic() local
95 __ Branch(&next_map, ne, scratch1(), Operand(receiver_maps->at(i))); in CompileKeyedStorePolymorphic()
98 __ bind(&next_map); in CompileKeyedStorePolymorphic()
/external/chromium_org/v8/src/heap/
Dmark-compact.h468 Object* next_map = code_map->get(SharedFunctionInfo::kNextMapIndex); in GetNextCodeMap() local
469 return reinterpret_cast<SharedFunctionInfo*>(next_map); in GetNextCodeMap()
/external/chromium_org/v8/src/
Dobjects.cc3238 Map* next_map = map->elements_transition_map(); in FindClosestElementsTransition() local
3239 if (next_map->elements_kind() == to_kind) return next_map; in FindClosestElementsTransition()
3253 Map* next_map = current_map->elements_transition_map(); in FindClosestElementsTransition() local
3254 if (next_map->elements_kind() == to_kind) return next_map; in FindClosestElementsTransition()