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

Side by Side Diff: src/assembler.h

Issue 148593004: A64: Synchronize with r18084. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 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/arraybuffer.js ('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 700 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 // ExternalReferenceTable in serialize.cc manually. 711 // ExternalReferenceTable in serialize.cc manually.
712 712
713 static ExternalReference incremental_marking_record_write_function( 713 static ExternalReference incremental_marking_record_write_function(
714 Isolate* isolate); 714 Isolate* isolate);
715 static ExternalReference incremental_evacuation_record_write_function( 715 static ExternalReference incremental_evacuation_record_write_function(
716 Isolate* isolate); 716 Isolate* isolate);
717 static ExternalReference store_buffer_overflow_function( 717 static ExternalReference store_buffer_overflow_function(
718 Isolate* isolate); 718 Isolate* isolate);
719 static ExternalReference flush_icache_function(Isolate* isolate); 719 static ExternalReference flush_icache_function(Isolate* isolate);
720 static ExternalReference perform_gc_function(Isolate* isolate); 720 static ExternalReference perform_gc_function(Isolate* isolate);
721 static ExternalReference random_uint32_function(Isolate* isolate);
722 static ExternalReference transcendental_cache_array_address(Isolate* isolate); 721 static ExternalReference transcendental_cache_array_address(Isolate* isolate);
723 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); 722 static ExternalReference delete_handle_scope_extensions(Isolate* isolate);
724 723
725 static ExternalReference get_date_field_function(Isolate* isolate); 724 static ExternalReference get_date_field_function(Isolate* isolate);
726 static ExternalReference date_cache_stamp(Isolate* isolate); 725 static ExternalReference date_cache_stamp(Isolate* isolate);
727 726
728 static ExternalReference get_make_code_young_function(Isolate* isolate); 727 static ExternalReference get_make_code_young_function(Isolate* isolate);
729 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate); 728 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate);
730 729
731 // Deoptimization support. 730 // Deoptimization support.
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
1043 public: 1042 public:
1044 NullCallWrapper() { } 1043 NullCallWrapper() { }
1045 virtual ~NullCallWrapper() { } 1044 virtual ~NullCallWrapper() { }
1046 virtual void BeforeCall(int call_size) const { } 1045 virtual void BeforeCall(int call_size) const { }
1047 virtual void AfterCall() const { } 1046 virtual void AfterCall() const { }
1048 }; 1047 };
1049 1048
1050 } } // namespace v8::internal 1049 } } // namespace v8::internal
1051 1050
1052 #endif // V8_ASSEMBLER_H_ 1051 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arraybuffer.js ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698