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.
5 #ifndef V8_HYDROGEN_REPRESENTATION_CHANGES_H_
6 #define V8_HYDROGEN_REPRESENTATION_CHANGES_H_
8 #include "src/hydrogen.h"
14 class HRepresentationChangesPhase : public HPhase {
16 explicit HRepresentationChangesPhase(HGraph* graph)
17 : HPhase("H_Representation changes", graph) { }
22 void InsertRepresentationChangeForUse(HValue* value,
26 void InsertRepresentationChangesForValue(HValue* value);
30 } // namespace internal
33 #endif // V8_HYDROGEN_REPRESENTATION_CHANGES_H_