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

Side by Side Diff: src/v8-counters.h

Issue 88053002: Implement Math.ceil via Math.floor. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years 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/runtime.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 SC(string_compare_native, V8.StringCompareNative) \ 235 SC(string_compare_native, V8.StringCompareNative) \
236 SC(string_compare_runtime, V8.StringCompareRuntime) \ 236 SC(string_compare_runtime, V8.StringCompareRuntime) \
237 SC(regexp_entry_runtime, V8.RegExpEntryRuntime) \ 237 SC(regexp_entry_runtime, V8.RegExpEntryRuntime) \
238 SC(regexp_entry_native, V8.RegExpEntryNative) \ 238 SC(regexp_entry_native, V8.RegExpEntryNative) \
239 SC(number_to_string_native, V8.NumberToStringNative) \ 239 SC(number_to_string_native, V8.NumberToStringNative) \
240 SC(number_to_string_runtime, V8.NumberToStringRuntime) \ 240 SC(number_to_string_runtime, V8.NumberToStringRuntime) \
241 SC(math_acos, V8.MathAcos) \ 241 SC(math_acos, V8.MathAcos) \
242 SC(math_asin, V8.MathAsin) \ 242 SC(math_asin, V8.MathAsin) \
243 SC(math_atan, V8.MathAtan) \ 243 SC(math_atan, V8.MathAtan) \
244 SC(math_atan2, V8.MathAtan2) \ 244 SC(math_atan2, V8.MathAtan2) \
245 SC(math_ceil, V8.MathCeil) \
246 SC(math_cos, V8.MathCos) \ 245 SC(math_cos, V8.MathCos) \
247 SC(math_exp, V8.MathExp) \ 246 SC(math_exp, V8.MathExp) \
248 SC(math_floor, V8.MathFloor) \ 247 SC(math_floor, V8.MathFloor) \
249 SC(math_log, V8.MathLog) \ 248 SC(math_log, V8.MathLog) \
250 SC(math_pow, V8.MathPow) \ 249 SC(math_pow, V8.MathPow) \
251 SC(math_round, V8.MathRound) \ 250 SC(math_round, V8.MathRound) \
252 SC(math_sin, V8.MathSin) \ 251 SC(math_sin, V8.MathSin) \
253 SC(math_sqrt, V8.MathSqrt) \ 252 SC(math_sqrt, V8.MathSqrt) \
254 SC(math_tan, V8.MathTan) \ 253 SC(math_tan, V8.MathTan) \
255 SC(transcendental_cache_hit, V8.TranscendentalCacheHit) \ 254 SC(transcendental_cache_hit, V8.TranscendentalCacheHit) \
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 friend class Isolate; 431 friend class Isolate;
433 432
434 explicit Counters(Isolate* isolate); 433 explicit Counters(Isolate* isolate);
435 434
436 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); 435 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters);
437 }; 436 };
438 437
439 } } // namespace v8::internal 438 } } // namespace v8::internal
440 439
441 #endif // V8_V8_COUNTERS_H_ 440 #endif // V8_V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « src/runtime.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698