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

Side by Side Diff: src/assembler.h

Issue 22852024: Track JS allocations as they arrive with no affection on performance when tracking is switched off (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix style + rebase Created 7 years, 2 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
« no previous file with comments | « src/api.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 710 matching lines...) Expand 10 before | Expand all | Expand 10 after
721 Isolate* isolate); 721 Isolate* isolate);
722 static ExternalReference random_uint32_function(Isolate* isolate); 722 static ExternalReference random_uint32_function(Isolate* isolate);
723 static ExternalReference transcendental_cache_array_address(Isolate* isolate); 723 static ExternalReference transcendental_cache_array_address(Isolate* isolate);
724 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); 724 static ExternalReference delete_handle_scope_extensions(Isolate* isolate);
725 725
726 static ExternalReference get_date_field_function(Isolate* isolate); 726 static ExternalReference get_date_field_function(Isolate* isolate);
727 static ExternalReference date_cache_stamp(Isolate* isolate); 727 static ExternalReference date_cache_stamp(Isolate* isolate);
728 728
729 static ExternalReference get_make_code_young_function(Isolate* isolate); 729 static ExternalReference get_make_code_young_function(Isolate* isolate);
730 730
731 // New heap objects tracking support.
732 static ExternalReference record_object_allocation_function(Isolate* isolate);
733
731 // Deoptimization support. 734 // Deoptimization support.
732 static ExternalReference new_deoptimizer_function(Isolate* isolate); 735 static ExternalReference new_deoptimizer_function(Isolate* isolate);
733 static ExternalReference compute_output_frames_function(Isolate* isolate); 736 static ExternalReference compute_output_frames_function(Isolate* isolate);
734 737
735 // Log support. 738 // Log support.
736 static ExternalReference log_enter_external_function(Isolate* isolate); 739 static ExternalReference log_enter_external_function(Isolate* isolate);
737 static ExternalReference log_leave_external_function(Isolate* isolate); 740 static ExternalReference log_leave_external_function(Isolate* isolate);
738 741
739 // Static data in the keyed lookup cache. 742 // Static data in the keyed lookup cache.
740 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); 743 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate);
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
1068 public: 1071 public:
1069 NullCallWrapper() { } 1072 NullCallWrapper() { }
1070 virtual ~NullCallWrapper() { } 1073 virtual ~NullCallWrapper() { }
1071 virtual void BeforeCall(int call_size) const { } 1074 virtual void BeforeCall(int call_size) const { }
1072 virtual void AfterCall() const { } 1075 virtual void AfterCall() const { }
1073 }; 1076 };
1074 1077
1075 } } // namespace v8::internal 1078 } } // namespace v8::internal
1076 1079
1077 #endif // V8_ASSEMBLER_H_ 1080 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/api.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698