Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: src/ia32/macro-assembler-ia32.h

Issue 9015020: Make sure transitioned arrays efficiently call builtin Array functions (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Implement all platforms Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
11 // with the distribution. 11 // with the distribution.
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 void StoreNumberToDoubleElements(Register maybe_number, 351 void StoreNumberToDoubleElements(Register maybe_number,
352 Register elements, 352 Register elements,
353 Register key, 353 Register key,
354 Register scratch1, 354 Register scratch1,
355 XMMRegister scratch2, 355 XMMRegister scratch2,
356 Label* fail, 356 Label* fail,
357 bool specialize_for_processor); 357 bool specialize_for_processor);
358 358
359 // Check if the map of an object is equal to a specified map and branch to 359 // Check if the map of an object is equal to a specified map and branch to
360 // label if not. Skip the smi check if not required (object is known to be a 360 // label if not. Skip the smi check if not required (object is known to be a
361 // heap object) 361 // heap object). If mode is ALLOW_ELEMENT_TRANSITION_MAPS, then also match
362 // against maps that are ElementsKind transition maps of the specificed map.
362 void CheckMap(Register obj, 363 void CheckMap(Register obj,
363 Handle<Map> map, 364 Handle<Map> map,
364 Label* fail, 365 Label* fail,
365 SmiCheckType smi_check_type); 366 SmiCheckType smi_check_type,
367 MapCheckMode mode = REQUIRE_EXACT_MAP);
366 368
367 // Check if the map of an object is equal to a specified map and branch to a 369 // Check if the map of an object is equal to a specified map and branch to a
368 // specified target if equal. Skip the smi check if not required (object is 370 // specified target if equal. Skip the smi check if not required (object is
369 // known to be a heap object) 371 // known to be a heap object)
370 void DispatchMap(Register obj, 372 void DispatchMap(Register obj,
371 Handle<Map> map, 373 Handle<Map> map,
372 Handle<Code> success, 374 Handle<Code> success,
373 SmiCheckType smi_check_type); 375 SmiCheckType smi_check_type);
374 376
375 // Check if the object in register heap_object is a string. Afterwards the 377 // Check if the object in register heap_object is a string. Afterwards the
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
937 } \ 939 } \
938 masm-> 940 masm->
939 #else 941 #else
940 #define ACCESS_MASM(masm) masm-> 942 #define ACCESS_MASM(masm) masm->
941 #endif 943 #endif
942 944
943 945
944 } } // namespace v8::internal 946 } } // namespace v8::internal
945 947
946 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ 948 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698