OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_CRANKSHAFT_HYDROGEN_H_ | 5 #ifndef V8_CRANKSHAFT_HYDROGEN_H_ |
6 #define V8_CRANKSHAFT_HYDROGEN_H_ | 6 #define V8_CRANKSHAFT_HYDROGEN_H_ |
7 | 7 |
8 #include "src/accessors.h" | 8 #include "src/accessors.h" |
9 #include "src/allocation.h" | 9 #include "src/allocation.h" |
10 #include "src/ast/ast-type-bounds.h" | 10 #include "src/ast/ast-type-bounds.h" |
(...skipping 2669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2680 BailoutId bailout_id); | 2680 BailoutId bailout_id); |
2681 | 2681 |
2682 HInstruction* BuildStringCharCodeAt(HValue* string, | 2682 HInstruction* BuildStringCharCodeAt(HValue* string, |
2683 HValue* index); | 2683 HValue* index); |
2684 | 2684 |
2685 HValue* BuildBinaryOperation( | 2685 HValue* BuildBinaryOperation( |
2686 BinaryOperation* expr, | 2686 BinaryOperation* expr, |
2687 HValue* left, | 2687 HValue* left, |
2688 HValue* right, | 2688 HValue* right, |
2689 PushBeforeSimulateBehavior push_sim_result); | 2689 PushBeforeSimulateBehavior push_sim_result); |
2690 HInstruction* BuildIncrement(bool returns_original_input, | 2690 HInstruction* BuildIncrement(CountOperation* expr); |
2691 CountOperation* expr); | |
2692 HInstruction* BuildKeyedGeneric(PropertyAccessType access_type, | 2691 HInstruction* BuildKeyedGeneric(PropertyAccessType access_type, |
2693 Expression* expr, FeedbackVectorSlot slot, | 2692 Expression* expr, FeedbackVectorSlot slot, |
2694 HValue* object, HValue* key, HValue* value); | 2693 HValue* object, HValue* key, HValue* value); |
2695 | 2694 |
2696 HInstruction* TryBuildConsolidatedElementLoad(HValue* object, | 2695 HInstruction* TryBuildConsolidatedElementLoad(HValue* object, |
2697 HValue* key, | 2696 HValue* key, |
2698 HValue* val, | 2697 HValue* val, |
2699 SmallMapList* maps); | 2698 SmallMapList* maps); |
2700 | 2699 |
2701 LoadKeyedHoleMode BuildKeyedHoleMode(Handle<Map> map); | 2700 LoadKeyedHoleMode BuildKeyedHoleMode(Handle<Map> map); |
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3010 } | 3009 } |
3011 | 3010 |
3012 private: | 3011 private: |
3013 HOptimizedGraphBuilder* builder_; | 3012 HOptimizedGraphBuilder* builder_; |
3014 }; | 3013 }; |
3015 | 3014 |
3016 } // namespace internal | 3015 } // namespace internal |
3017 } // namespace v8 | 3016 } // namespace v8 |
3018 | 3017 |
3019 #endif // V8_CRANKSHAFT_HYDROGEN_H_ | 3018 #endif // V8_CRANKSHAFT_HYDROGEN_H_ |
OLD | NEW |