V8 Project
hydrogen-uint32-analysis.h
Go to the documentation of this file.
1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef V8_HYDROGEN_UINT32_ANALYSIS_H_
6 #define V8_HYDROGEN_UINT32_ANALYSIS_H_
7 
8 #include "src/hydrogen.h"
9 
10 namespace v8 {
11 namespace internal {
12 
13 
14 // Discover instructions that can be marked with kUint32 flag allowing
15 // them to produce full range uint32 values.
16 class HUint32AnalysisPhase : public HPhase {
17  public:
18  explicit HUint32AnalysisPhase(HGraph* graph)
19  : HPhase("H_Compute safe UInt32 operations", graph), phis_(4, zone()) { }
20 
21  void Run();
22 
23  private:
24  INLINE(bool IsSafeUint32Use(HValue* val, HValue* use));
25  INLINE(bool Uint32UsesAreSafe(HValue* uint32val));
26  INLINE(bool CheckPhiOperands(HPhi* phi));
27  INLINE(void UnmarkPhi(HPhi* phi, ZoneList<HPhi*>* worklist));
28  INLINE(void UnmarkUnsafePhis());
29 
31 };
32 
33 
34 } } // namespace v8::internal
35 
36 #endif // V8_HYDROGEN_UINT32_ANALYSIS_H_
HGraph * graph() const
Definition: hydrogen.h:2802
INLINE(bool Uint32UsesAreSafe(HValue *uint32val))
INLINE(void UnmarkUnsafePhis())
INLINE(bool CheckPhiOperands(HPhi *phi))
INLINE(void UnmarkPhi(HPhi *phi, ZoneList< HPhi * > *worklist))
INLINE(bool IsSafeUint32Use(HValue *val, HValue *use))
enable harmony numeric enable harmony object literal extensions Optimize object Array DOM strings and string trace pretenuring decisions of HAllocate instructions Enables optimizations which favor memory size over execution speed maximum source size in bytes considered for a single inlining maximum cumulative number of AST nodes considered for inlining trace the tracking of allocation sites deoptimize every n garbage collections perform array bounds checks elimination analyze liveness of environment slots and zap dead values flushes the cache of optimized code for closures on every GC allow uint32 values on optimize frames if they are used only in safe operations track concurrent recompilation artificial compilation delay in ms do not emit check maps for constant values that have a leaf deoptimize the optimized code if the layout of the maps changes enable context specialization in TurboFan execution budget before interrupt is triggered max percentage of megamorphic generic ICs to allow optimization enable use of SAHF instruction if enable use of VFP3 instructions if available enable use of NEON instructions if enable use of SDIV and UDIV instructions if enable use of MLS instructions if enable loading bit constant by means of movw movt instruction enable unaligned accesses for enable use of d16 d31 registers on ARM this requires VFP3 force all emitted branches to be in long enable alignment of csp to bytes on platforms which prefer the register to always be expose gc extension under the specified name show built in functions in stack traces use random jit cookie to mask large constants minimum length for automatic enable preparsing CPU profiler sampling interval in microseconds trace out of bounds accesses to external arrays default size of stack region v8 is allowed to use(in kBytes)") DEFINE_INT(max_stack_trace_source_length
Debugger support for the V8 JavaScript engine.
Definition: accessors.cc:20