OLD | NEW |
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 974 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
985 CompilationInfo* top_info() { return info_; } | 985 CompilationInfo* top_info() { return info_; } |
986 | 986 |
987 HGraph* CreateGraph(); | 987 HGraph* CreateGraph(); |
988 | 988 |
989 // Bailout environment manipulation. | 989 // Bailout environment manipulation. |
990 void Push(HValue* value) { environment()->Push(value); } | 990 void Push(HValue* value) { environment()->Push(value); } |
991 HValue* Pop() { return environment()->Pop(); } | 991 HValue* Pop() { return environment()->Pop(); } |
992 | 992 |
993 // Adding instructions. | 993 // Adding instructions. |
994 HInstruction* AddInstruction(HInstruction* instr); | 994 HInstruction* AddInstruction(HInstruction* instr); |
| 995 |
| 996 template<class I> |
| 997 I* Add() { return static_cast<I*>(AddInstruction(new(zone()) I())); } |
| 998 |
| 999 template<class I, class P1> |
| 1000 I* Add(P1 p1) { |
| 1001 return static_cast<I*>(AddInstruction(new(zone()) I(p1))); |
| 1002 } |
| 1003 |
| 1004 template<class I, class P1, class P2> |
| 1005 I* Add(P1 p1, P2 p2) { |
| 1006 return static_cast<I*>(AddInstruction(new(zone()) I(p1, p2))); |
| 1007 } |
| 1008 |
| 1009 template<class I, class P1, class P2, class P3> |
| 1010 I* Add(P1 p1, P2 p2, P3 p3) { |
| 1011 return static_cast<I*>(AddInstruction(new(zone()) I(p1, p2, p3))); |
| 1012 } |
| 1013 |
995 void AddSimulate(BailoutId id, | 1014 void AddSimulate(BailoutId id, |
996 RemovableSimulate removable = FIXED_SIMULATE); | 1015 RemovableSimulate removable = FIXED_SIMULATE); |
997 HBoundsCheck* AddBoundsCheck(HValue* index, HValue* length); | |
998 | 1016 |
999 HReturn* AddReturn(HValue* value); | 1017 HReturn* AddReturn(HValue* value); |
1000 | 1018 |
1001 void IncrementInNoSideEffectsScope() { | 1019 void IncrementInNoSideEffectsScope() { |
1002 no_side_effects_scope_count_++; | 1020 no_side_effects_scope_count_++; |
1003 } | 1021 } |
1004 | 1022 |
1005 void DecrementInNoSideEffectsScope() { | 1023 void DecrementInNoSideEffectsScope() { |
1006 no_side_effects_scope_count_--; | 1024 no_side_effects_scope_count_--; |
1007 } | 1025 } |
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1440 explicit HOptimizedGraphBuilder(CompilationInfo* info); | 1458 explicit HOptimizedGraphBuilder(CompilationInfo* info); |
1441 | 1459 |
1442 virtual bool BuildGraph(); | 1460 virtual bool BuildGraph(); |
1443 | 1461 |
1444 // Simple accessors. | 1462 // Simple accessors. |
1445 BreakAndContinueScope* break_scope() const { return break_scope_; } | 1463 BreakAndContinueScope* break_scope() const { return break_scope_; } |
1446 void set_break_scope(BreakAndContinueScope* head) { break_scope_ = head; } | 1464 void set_break_scope(BreakAndContinueScope* head) { break_scope_ = head; } |
1447 | 1465 |
1448 bool inline_bailout() { return inline_bailout_; } | 1466 bool inline_bailout() { return inline_bailout_; } |
1449 | 1467 |
1450 void AddSoftDeoptimize(); | 1468 enum SoftDeoptimizeMode { |
| 1469 MUST_EMIT_SOFT_DEOPT, |
| 1470 CAN_OMIT_SOFT_DEOPT |
| 1471 }; |
| 1472 |
| 1473 void AddSoftDeoptimize(SoftDeoptimizeMode mode = CAN_OMIT_SOFT_DEOPT); |
1451 | 1474 |
1452 void Bailout(const char* reason); | 1475 void Bailout(const char* reason); |
1453 | 1476 |
1454 HBasicBlock* CreateJoin(HBasicBlock* first, | 1477 HBasicBlock* CreateJoin(HBasicBlock* first, |
1455 HBasicBlock* second, | 1478 HBasicBlock* second, |
1456 BailoutId join_id); | 1479 BailoutId join_id); |
1457 | 1480 |
1458 FunctionState* function_state() const { return function_state_; } | 1481 FunctionState* function_state() const { return function_state_; } |
1459 | 1482 |
1460 void VisitDeclarations(ZoneList<Declaration*>* declarations); | 1483 void VisitDeclarations(ZoneList<Declaration*>* declarations); |
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2051 EmbeddedVector<char, 64> filename_; | 2074 EmbeddedVector<char, 64> filename_; |
2052 HeapStringAllocator string_allocator_; | 2075 HeapStringAllocator string_allocator_; |
2053 StringStream trace_; | 2076 StringStream trace_; |
2054 int indent_; | 2077 int indent_; |
2055 }; | 2078 }; |
2056 | 2079 |
2057 | 2080 |
2058 } } // namespace v8::internal | 2081 } } // namespace v8::internal |
2059 | 2082 |
2060 #endif // V8_HYDROGEN_H_ | 2083 #endif // V8_HYDROGEN_H_ |
OLD | NEW |