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

Side by Side Diff: src/assembler.h

Issue 23480031: Enable preaging of code objects when --optimize-for-size. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: <sigh> upload only the one commit... Created 7 years, 3 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 (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 710 matching lines...) Expand 10 before | Expand all | Expand 10 after
721 static ExternalReference fill_heap_number_with_random_function( 721 static ExternalReference fill_heap_number_with_random_function(
722 Isolate* isolate); 722 Isolate* isolate);
723 static ExternalReference random_uint32_function(Isolate* isolate); 723 static ExternalReference random_uint32_function(Isolate* isolate);
724 static ExternalReference transcendental_cache_array_address(Isolate* isolate); 724 static ExternalReference transcendental_cache_array_address(Isolate* isolate);
725 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); 725 static ExternalReference delete_handle_scope_extensions(Isolate* isolate);
726 726
727 static ExternalReference get_date_field_function(Isolate* isolate); 727 static ExternalReference get_date_field_function(Isolate* isolate);
728 static ExternalReference date_cache_stamp(Isolate* isolate); 728 static ExternalReference date_cache_stamp(Isolate* isolate);
729 729
730 static ExternalReference get_make_code_young_function(Isolate* isolate); 730 static ExternalReference get_make_code_young_function(Isolate* isolate);
731 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate);
731 732
732 // Deoptimization support. 733 // Deoptimization support.
733 static ExternalReference new_deoptimizer_function(Isolate* isolate); 734 static ExternalReference new_deoptimizer_function(Isolate* isolate);
734 static ExternalReference compute_output_frames_function(Isolate* isolate); 735 static ExternalReference compute_output_frames_function(Isolate* isolate);
735 736
736 // Log support. 737 // Log support.
737 static ExternalReference log_enter_external_function(Isolate* isolate); 738 static ExternalReference log_enter_external_function(Isolate* isolate);
738 static ExternalReference log_leave_external_function(Isolate* isolate); 739 static ExternalReference log_leave_external_function(Isolate* isolate);
739 740
740 // Static data in the keyed lookup cache. 741 // Static data in the keyed lookup cache.
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
1069 public: 1070 public:
1070 NullCallWrapper() { } 1071 NullCallWrapper() { }
1071 virtual ~NullCallWrapper() { } 1072 virtual ~NullCallWrapper() { }
1072 virtual void BeforeCall(int call_size) const { } 1073 virtual void BeforeCall(int call_size) const { }
1073 virtual void AfterCall() const { } 1074 virtual void AfterCall() const { }
1074 }; 1075 };
1075 1076
1076 } } // namespace v8::internal 1077 } } // namespace v8::internal
1077 1078
1078 #endif // V8_ASSEMBLER_H_ 1079 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm/full-codegen-arm.cc ('k') | src/assembler.cc » ('j') | src/objects.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698