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

Side by Side Diff: src/assembler.h

Issue 240053010: Return Object* instead of MaybeObject* from runtime calls. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: cmpp Created 6 years, 8 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/arm64/regexp-macro-assembler-arm64.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 745 matching lines...) Expand 10 before | Expand all | Expand 10 after
756 756
757 // One-of-a-kind references. These references are not part of a general 757 // One-of-a-kind references. These references are not part of a general
758 // pattern. This means that they have to be added to the 758 // pattern. This means that they have to be added to the
759 // ExternalReferenceTable in serialize.cc manually. 759 // ExternalReferenceTable in serialize.cc manually.
760 760
761 static ExternalReference incremental_marking_record_write_function( 761 static ExternalReference incremental_marking_record_write_function(
762 Isolate* isolate); 762 Isolate* isolate);
763 static ExternalReference store_buffer_overflow_function( 763 static ExternalReference store_buffer_overflow_function(
764 Isolate* isolate); 764 Isolate* isolate);
765 static ExternalReference flush_icache_function(Isolate* isolate); 765 static ExternalReference flush_icache_function(Isolate* isolate);
766 static ExternalReference perform_gc_function(Isolate* isolate);
767 static ExternalReference out_of_memory_function(Isolate* isolate);
768 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); 766 static ExternalReference delete_handle_scope_extensions(Isolate* isolate);
769 767
770 static ExternalReference get_date_field_function(Isolate* isolate); 768 static ExternalReference get_date_field_function(Isolate* isolate);
771 static ExternalReference date_cache_stamp(Isolate* isolate); 769 static ExternalReference date_cache_stamp(Isolate* isolate);
772 770
773 static ExternalReference get_make_code_young_function(Isolate* isolate); 771 static ExternalReference get_make_code_young_function(Isolate* isolate);
774 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate); 772 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate);
775 773
776 // Deoptimization support. 774 // Deoptimization support.
777 static ExternalReference new_deoptimizer_function(Isolate* isolate); 775 static ExternalReference new_deoptimizer_function(Isolate* isolate);
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
1098 1096
1099 private: 1097 private:
1100 int32_t multiplier_; 1098 int32_t multiplier_;
1101 int32_t shift_; 1099 int32_t shift_;
1102 }; 1100 };
1103 1101
1104 1102
1105 } } // namespace v8::internal 1103 } } // namespace v8::internal
1106 1104
1107 #endif // V8_ASSEMBLER_H_ 1105 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm64/regexp-macro-assembler-arm64.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698