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

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

Issue 17568015: New array bounds check elimination pass (focused on induction variables and bitwise operations). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Switched flag to false by default. Created 7 years, 5 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/token.h ('k') | src/x64/lithium-codegen-x64.h » ('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 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 SC(math_log, V8.MathLog) \ 231 SC(math_log, V8.MathLog) \
232 SC(math_pow, V8.MathPow) \ 232 SC(math_pow, V8.MathPow) \
233 SC(math_round, V8.MathRound) \ 233 SC(math_round, V8.MathRound) \
234 SC(math_sin, V8.MathSin) \ 234 SC(math_sin, V8.MathSin) \
235 SC(math_sqrt, V8.MathSqrt) \ 235 SC(math_sqrt, V8.MathSqrt) \
236 SC(math_tan, V8.MathTan) \ 236 SC(math_tan, V8.MathTan) \
237 SC(transcendental_cache_hit, V8.TranscendentalCacheHit) \ 237 SC(transcendental_cache_hit, V8.TranscendentalCacheHit) \
238 SC(transcendental_cache_miss, V8.TranscendentalCacheMiss) \ 238 SC(transcendental_cache_miss, V8.TranscendentalCacheMiss) \
239 SC(stack_interrupts, V8.StackInterrupts) \ 239 SC(stack_interrupts, V8.StackInterrupts) \
240 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \ 240 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \
241 SC(bounds_checks_eliminated, V8.BoundsChecksEliminated) \
242 SC(bounds_checks_hoisted, V8.BoundsChecksHoisted) \
241 SC(soft_deopts_requested, V8.SoftDeoptsRequested) \ 243 SC(soft_deopts_requested, V8.SoftDeoptsRequested) \
242 SC(soft_deopts_inserted, V8.SoftDeoptsInserted) \ 244 SC(soft_deopts_inserted, V8.SoftDeoptsInserted) \
243 SC(soft_deopts_executed, V8.SoftDeoptsExecuted) \ 245 SC(soft_deopts_executed, V8.SoftDeoptsExecuted) \
244 SC(new_space_bytes_available, V8.MemoryNewSpaceBytesAvailable) \ 246 SC(new_space_bytes_available, V8.MemoryNewSpaceBytesAvailable) \
245 SC(new_space_bytes_committed, V8.MemoryNewSpaceBytesCommitted) \ 247 SC(new_space_bytes_committed, V8.MemoryNewSpaceBytesCommitted) \
246 SC(new_space_bytes_used, V8.MemoryNewSpaceBytesUsed) \ 248 SC(new_space_bytes_used, V8.MemoryNewSpaceBytesUsed) \
247 SC(old_pointer_space_bytes_available, \ 249 SC(old_pointer_space_bytes_available, \
248 V8.MemoryOldPointerSpaceBytesAvailable) \ 250 V8.MemoryOldPointerSpaceBytesAvailable) \
249 SC(old_pointer_space_bytes_committed, \ 251 SC(old_pointer_space_bytes_committed, \
250 V8.MemoryOldPointerSpaceBytesCommitted) \ 252 V8.MemoryOldPointerSpaceBytesCommitted) \
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 friend class Isolate; 393 friend class Isolate;
392 394
393 explicit Counters(Isolate* isolate); 395 explicit Counters(Isolate* isolate);
394 396
395 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); 397 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters);
396 }; 398 };
397 399
398 } } // namespace v8::internal 400 } } // namespace v8::internal
399 401
400 #endif // V8_V8_COUNTERS_H_ 402 #endif // V8_V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « src/token.h ('k') | src/x64/lithium-codegen-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698