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

Side by Side Diff: src/assembler.h

Issue 536065: Optimized calling of C++ builtins (and HandleApiCall (Closed)
Patch Set: Created 10 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
« no previous file with comments | « src/arm/builtins-arm.cc ('k') | src/assembler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 391
392 explicit ExternalReference(Top::AddressId id); 392 explicit ExternalReference(Top::AddressId id);
393 393
394 explicit ExternalReference(const SCTableReference& table_ref); 394 explicit ExternalReference(const SCTableReference& table_ref);
395 395
396 // One-of-a-kind references. These references are not part of a general 396 // One-of-a-kind references. These references are not part of a general
397 // pattern. This means that they have to be added to the 397 // pattern. This means that they have to be added to the
398 // ExternalReferenceTable in serialize.cc manually. 398 // ExternalReferenceTable in serialize.cc manually.
399 399
400 static ExternalReference perform_gc_function(); 400 static ExternalReference perform_gc_function();
401 static ExternalReference builtin_passed_function();
402 static ExternalReference random_positive_smi_function(); 401 static ExternalReference random_positive_smi_function();
403 402
404 // Static data in the keyed lookup cache. 403 // Static data in the keyed lookup cache.
405 static ExternalReference keyed_lookup_cache_keys(); 404 static ExternalReference keyed_lookup_cache_keys();
406 static ExternalReference keyed_lookup_cache_field_offsets(); 405 static ExternalReference keyed_lookup_cache_field_offsets();
407 406
408 // Static variable Factory::the_hole_value.location() 407 // Static variable Factory::the_hole_value.location()
409 static ExternalReference the_hole_value_location(); 408 static ExternalReference the_hole_value_location();
410 409
411 // Static variable Heap::roots_address() 410 // Static variable Heap::roots_address()
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 static inline bool is_uint5(int x) { return is_uintn(x, 5); } 515 static inline bool is_uint5(int x) { return is_uintn(x, 5); }
517 static inline bool is_uint6(int x) { return is_uintn(x, 6); } 516 static inline bool is_uint6(int x) { return is_uintn(x, 6); }
518 static inline bool is_uint8(int x) { return is_uintn(x, 8); } 517 static inline bool is_uint8(int x) { return is_uintn(x, 8); }
519 static inline bool is_uint12(int x) { return is_uintn(x, 12); } 518 static inline bool is_uint12(int x) { return is_uintn(x, 12); }
520 static inline bool is_uint16(int x) { return is_uintn(x, 16); } 519 static inline bool is_uint16(int x) { return is_uintn(x, 16); }
521 static inline bool is_uint24(int x) { return is_uintn(x, 24); } 520 static inline bool is_uint24(int x) { return is_uintn(x, 24); }
522 521
523 } } // namespace v8::internal 522 } } // namespace v8::internal
524 523
525 #endif // V8_ASSEMBLER_H_ 524 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm/builtins-arm.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698