Searched refs:next_map (Results 1 – 8 of 8) sorted by relevance
/external/chromium_org/v8/src/ic/ia32/ |
D | ic-compiler-ia32.cc | 109 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/ |
D | ic-compiler-mips64.cc | 94 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/ |
D | ic-compiler-x64.cc | 55 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/ |
D | ic-compiler-x87.cc | 109 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/ |
D | ic-compiler-arm.cc | 110 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/ |
D | ic-compiler-mips.cc | 94 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/ |
D | mark-compact.h | 468 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/ |
D | objects.cc | 3238 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()
|