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

Side by Side Diff: src/assembler.h

Issue 995013005: Simplify pending message script handling. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix hardcoded constant. Created 5 years, 9 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
« no previous file with comments | « src/arm64/full-codegen-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 939 matching lines...) Expand 10 before | Expand all | Expand 10 after
950 static ExternalReference power_double_double_function(Isolate* isolate); 950 static ExternalReference power_double_double_function(Isolate* isolate);
951 static ExternalReference power_double_int_function(Isolate* isolate); 951 static ExternalReference power_double_int_function(Isolate* isolate);
952 952
953 static ExternalReference handle_scope_next_address(Isolate* isolate); 953 static ExternalReference handle_scope_next_address(Isolate* isolate);
954 static ExternalReference handle_scope_limit_address(Isolate* isolate); 954 static ExternalReference handle_scope_limit_address(Isolate* isolate);
955 static ExternalReference handle_scope_level_address(Isolate* isolate); 955 static ExternalReference handle_scope_level_address(Isolate* isolate);
956 956
957 static ExternalReference scheduled_exception_address(Isolate* isolate); 957 static ExternalReference scheduled_exception_address(Isolate* isolate);
958 static ExternalReference address_of_pending_message_obj(Isolate* isolate); 958 static ExternalReference address_of_pending_message_obj(Isolate* isolate);
959 static ExternalReference address_of_has_pending_message(Isolate* isolate); 959 static ExternalReference address_of_has_pending_message(Isolate* isolate);
960 static ExternalReference address_of_pending_message_script(Isolate* isolate);
961 960
962 // Static variables containing common double constants. 961 // Static variables containing common double constants.
963 static ExternalReference address_of_min_int(); 962 static ExternalReference address_of_min_int();
964 static ExternalReference address_of_one_half(); 963 static ExternalReference address_of_one_half();
965 static ExternalReference address_of_minus_one_half(); 964 static ExternalReference address_of_minus_one_half();
966 static ExternalReference address_of_negative_infinity(); 965 static ExternalReference address_of_negative_infinity();
967 static ExternalReference address_of_the_hole_nan(); 966 static ExternalReference address_of_the_hole_nan();
968 static ExternalReference address_of_uint32_bias(); 967 static ExternalReference address_of_uint32_bias();
969 968
970 static ExternalReference math_log_double_function(Isolate* isolate); 969 static ExternalReference math_log_double_function(Isolate* isolate);
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
1168 NullCallWrapper() { } 1167 NullCallWrapper() { }
1169 virtual ~NullCallWrapper() { } 1168 virtual ~NullCallWrapper() { }
1170 virtual void BeforeCall(int call_size) const { } 1169 virtual void BeforeCall(int call_size) const { }
1171 virtual void AfterCall() const { } 1170 virtual void AfterCall() const { }
1172 }; 1171 };
1173 1172
1174 1173
1175 } } // namespace v8::internal 1174 } } // namespace v8::internal
1176 1175
1177 #endif // V8_ASSEMBLER_H_ 1176 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm64/full-codegen-arm64.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698