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

Side by Side Diff: src/assembler.h

Issue 1053143005: Collect type feedback on result of Math.[round|ceil|floor] (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: MIPS port Created 5 years, 7 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/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 939 matching lines...) Expand 10 before | Expand all | Expand 10 after
950 static ExternalReference handle_scope_next_address(Isolate* isolate); 950 static ExternalReference handle_scope_next_address(Isolate* isolate);
951 static ExternalReference handle_scope_limit_address(Isolate* isolate); 951 static ExternalReference handle_scope_limit_address(Isolate* isolate);
952 static ExternalReference handle_scope_level_address(Isolate* isolate); 952 static ExternalReference handle_scope_level_address(Isolate* isolate);
953 953
954 static ExternalReference scheduled_exception_address(Isolate* isolate); 954 static ExternalReference scheduled_exception_address(Isolate* isolate);
955 static ExternalReference address_of_pending_message_obj(Isolate* isolate); 955 static ExternalReference address_of_pending_message_obj(Isolate* isolate);
956 956
957 // Static variables containing common double constants. 957 // Static variables containing common double constants.
958 static ExternalReference address_of_min_int(); 958 static ExternalReference address_of_min_int();
959 static ExternalReference address_of_one_half(); 959 static ExternalReference address_of_one_half();
960 static ExternalReference address_of_minus_one();
960 static ExternalReference address_of_minus_one_half(); 961 static ExternalReference address_of_minus_one_half();
961 static ExternalReference address_of_negative_infinity(); 962 static ExternalReference address_of_negative_infinity();
962 static ExternalReference address_of_the_hole_nan(); 963 static ExternalReference address_of_the_hole_nan();
963 static ExternalReference address_of_uint32_bias(); 964 static ExternalReference address_of_uint32_bias();
964 965
965 static ExternalReference math_log_double_function(Isolate* isolate); 966 static ExternalReference math_log_double_function(Isolate* isolate);
966 967
967 static ExternalReference math_exp_constants(int constant_index); 968 static ExternalReference math_exp_constants(int constant_index);
968 static ExternalReference math_exp_log_table(); 969 static ExternalReference math_exp_log_table();
969 970
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
1163 NullCallWrapper() { } 1164 NullCallWrapper() { }
1164 virtual ~NullCallWrapper() { } 1165 virtual ~NullCallWrapper() { }
1165 virtual void BeforeCall(int call_size) const { } 1166 virtual void BeforeCall(int call_size) const { }
1166 virtual void AfterCall() const { } 1167 virtual void AfterCall() const { }
1167 }; 1168 };
1168 1169
1169 1170
1170 } } // namespace v8::internal 1171 } } // namespace v8::internal
1171 1172
1172 #endif // V8_ASSEMBLER_H_ 1173 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm64/macro-assembler-arm64.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698