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

Side by Side Diff: src/assembler.cc

Issue 488006: Revert keyed load cache probing in generated code.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years 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
« no previous file with comments | « src/assembler.h ('k') | src/heap.h » ('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 555 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 ExternalReference ExternalReference::builtin_passed_function() { 566 ExternalReference ExternalReference::builtin_passed_function() {
567 return ExternalReference(&Builtins::builtin_passed_function); 567 return ExternalReference(&Builtins::builtin_passed_function);
568 } 568 }
569 569
570 570
571 ExternalReference ExternalReference::random_positive_smi_function() { 571 ExternalReference ExternalReference::random_positive_smi_function() {
572 return ExternalReference(Redirect(FUNCTION_ADDR(V8::RandomPositiveSmi))); 572 return ExternalReference(Redirect(FUNCTION_ADDR(V8::RandomPositiveSmi)));
573 } 573 }
574 574
575 575
576 ExternalReference ExternalReference::keyed_lookup_cache_keys() {
577 return ExternalReference(KeyedLookupCache::keys_address());
578 }
579
580
581 ExternalReference ExternalReference::keyed_lookup_cache_field_offsets() {
582 return ExternalReference(KeyedLookupCache::field_offsets_address());
583 }
584
585
586 ExternalReference ExternalReference::the_hole_value_location() { 576 ExternalReference ExternalReference::the_hole_value_location() {
587 return ExternalReference(Factory::the_hole_value().location()); 577 return ExternalReference(Factory::the_hole_value().location());
588 } 578 }
589 579
590 580
591 ExternalReference ExternalReference::roots_address() { 581 ExternalReference ExternalReference::roots_address() {
592 return ExternalReference(Heap::roots_address()); 582 return ExternalReference(Heap::roots_address());
593 } 583 }
594 584
595 585
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
750 return ExternalReference(Redirect(FUNCTION_ADDR(Debug::Break))); 740 return ExternalReference(Redirect(FUNCTION_ADDR(Debug::Break)));
751 } 741 }
752 742
753 743
754 ExternalReference ExternalReference::debug_step_in_fp_address() { 744 ExternalReference ExternalReference::debug_step_in_fp_address() {
755 return ExternalReference(Debug::step_in_fp_addr()); 745 return ExternalReference(Debug::step_in_fp_addr());
756 } 746 }
757 #endif 747 #endif
758 748
759 } } // namespace v8::internal 749 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/assembler.h ('k') | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698