HomeSort by relevance Sort by last modified time
    Searched refs:receiver_maps (Results 1 - 14 of 14) sorted by null

  /external/v8/src/ic/
ic-compiler.cc 245 MapHandleList* receiver_maps) {
246 Isolate* isolate = receiver_maps->at(0)->GetIsolate();
250 Handle<Object> probe = cache->Lookup(receiver_maps, flags);
253 TypeHandleList types(receiver_maps->length());
254 for (int i = 0; i < receiver_maps->length(); i++) {
255 types.Add(HeapType::Class(receiver_maps->at(i), isolate));
257 CodeHandleList handlers(receiver_maps->length());
259 compiler.CompileElementHandlers(receiver_maps, &handlers);
267 PolymorphicCodeCache::Update(cache, receiver_maps, flags, code);
284 MapHandleList* receiver_maps, KeyedAccessStoreMode store_mode
    [all...]
ic-compiler.h 45 static Handle<Code> ComputeKeyedLoadPolymorphic(MapHandleList* receiver_maps);
47 MapHandleList* receiver_maps, KeyedAccessStoreMode store_mode,
88 Handle<Code> CompileKeyedStorePolymorphic(MapHandleList* receiver_maps,
90 Handle<Code> CompileKeyedStorePolymorphic(MapHandleList* receiver_maps,
handler-compiler.cc 379 MapHandleList* receiver_maps, CodeHandleList* handlers) {
380 for (int i = 0; i < receiver_maps->length(); ++i) {
381 Handle<Map> receiver_map = receiver_maps->at(i);
handler-compiler.h 267 void CompileElementHandlers(MapHandleList* receiver_maps,
ic.cc 635 static bool AddOneReceiverMapIfMissing(MapHandleList* receiver_maps,
638 for (int current = 0; current < receiver_maps->length(); ++current) {
639 if (!receiver_maps->at(current).is_null() &&
640 receiver_maps->at(current).is_identical_to(new_receiver_map)) {
644 receiver_maps->Add(new_receiver_map);
    [all...]
  /external/v8/src/ic/mips/
ic-compiler-mips.cc 82 MapHandleList* receiver_maps, CodeHandleList* handler_stubs,
87 int receiver_count = receiver_maps->length();
92 Operand(receiver_maps->at(i)));
95 __ Branch(&next_map, ne, scratch1(), Operand(receiver_maps->at(i)));
  /external/v8/src/ic/mips64/
ic-compiler-mips64.cc 82 MapHandleList* receiver_maps, CodeHandleList* handler_stubs,
87 int receiver_count = receiver_maps->length();
92 Operand(receiver_maps->at(i)));
95 __ Branch(&next_map, ne, scratch1(), Operand(receiver_maps->at(i)));
  /external/v8/src/ic/arm/
ic-compiler-arm.cc 97 MapHandleList* receiver_maps, CodeHandleList* handler_stubs,
102 int receiver_count = receiver_maps->length();
105 __ mov(ip, Operand(receiver_maps->at(i)));
  /external/v8/src/ic/arm64/
ic-compiler-arm64.cc 98 MapHandleList* receiver_maps, CodeHandleList* handler_stubs,
106 int receiver_count = receiver_maps->length();
109 __ Cmp(scratch1(), Operand(receiver_maps->at(i)));
  /external/v8/src/ic/ia32/
ic-compiler-ia32.cc 99 MapHandleList* receiver_maps, CodeHandleList* handler_stubs,
104 for (int i = 0; i < receiver_maps->length(); ++i) {
105 __ cmp(scratch1(), receiver_maps->at(i));
  /external/v8/src/ic/x64/
ic-compiler-x64.cc 42 MapHandleList* receiver_maps, CodeHandleList* handler_stubs,
48 int receiver_count = receiver_maps->length();
51 __ Cmp(scratch1(), receiver_maps->at(i));
  /external/v8/src/ic/x87/
ic-compiler-x87.cc 99 MapHandleList* receiver_maps, CodeHandleList* handler_stubs,
104 for (int i = 0; i < receiver_maps->length(); ++i) {
105 __ cmp(scratch1(), receiver_maps->at(i));
  /external/v8/src/
hydrogen.cc 8528 SmallMapList receiver_maps; local
    [all...]
hydrogen.h     [all...]

Completed in 227 milliseconds