OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 22 matching lines...) Loading... |
33 #include "zone.h" | 33 #include "zone.h" |
34 | 34 |
35 namespace v8 { | 35 namespace v8 { |
36 namespace internal { | 36 namespace internal { |
37 | 37 |
38 // Responsible for building graph parts related to OSR and otherwise | 38 // Responsible for building graph parts related to OSR and otherwise |
39 // setting up the graph to do an OSR compile. | 39 // setting up the graph to do an OSR compile. |
40 class HOsrBuilder : public ZoneObject { | 40 class HOsrBuilder : public ZoneObject { |
41 public: | 41 public: |
42 explicit HOsrBuilder(HOptimizedGraphBuilder* builder) | 42 explicit HOsrBuilder(HOptimizedGraphBuilder* builder) |
43 : builder_(builder), | 43 : unoptimized_frame_slots_(0), |
| 44 builder_(builder), |
44 osr_entry_(NULL), | 45 osr_entry_(NULL), |
45 osr_loop_entry_(NULL), | 46 osr_loop_entry_(NULL), |
46 osr_values_(NULL) { } | 47 osr_values_(NULL) { } |
47 // Creates the loop entry block for the given statement, setting up OSR | 48 // Creates the loop entry block for the given statement, setting up OSR |
48 // entries as necessary, and sets the current block to the new block. | 49 // entries as necessary, and sets the current block to the new block. |
49 HBasicBlock* BuildPossibleOsrLoopEntry(IterationStatement* statement); | 50 HBasicBlock* BuildPossibleOsrLoopEntry(IterationStatement* statement); |
50 | 51 |
51 // Process the hydrogen graph after it has been completed, performing | 52 // Process the hydrogen graph after it has been completed, performing |
52 // any OSR-specific cleanups or changes. | 53 // any OSR-specific cleanups or changes. |
53 void FinishGraph(); | 54 void FinishGraph(); |
54 | 55 |
55 // Process the OSR values and phis after initial graph optimization. | 56 // Process the OSR values and phis after initial graph optimization. |
56 void FinishOsrValues(); | 57 void FinishOsrValues(); |
57 | 58 |
| 59 // Return the number of slots in the unoptimized frame at the entry to OSR. |
| 60 int UnoptimizedFrameSlots() const { |
| 61 return unoptimized_frame_slots_; |
| 62 } |
| 63 |
58 private: | 64 private: |
59 HBasicBlock* BuildLoopEntry(); | 65 HBasicBlock* BuildLoopEntry(); |
60 bool HasOsrEntryAt(IterationStatement* statement); | 66 bool HasOsrEntryAt(IterationStatement* statement); |
61 | 67 |
| 68 int unoptimized_frame_slots_; |
62 HOptimizedGraphBuilder* builder_; | 69 HOptimizedGraphBuilder* builder_; |
63 HBasicBlock* osr_entry_; | 70 HBasicBlock* osr_entry_; |
64 HBasicBlock* osr_loop_entry_; | 71 HBasicBlock* osr_loop_entry_; |
65 ZoneList<HUnknownOSRValue*>* osr_values_; | 72 ZoneList<HUnknownOSRValue*>* osr_values_; |
66 }; | 73 }; |
67 | 74 |
68 } } // namespace v8::internal | 75 } } // namespace v8::internal |
69 | 76 |
70 #endif // V8_HYDROGEN_OSR_H_ | 77 #endif // V8_HYDROGEN_OSR_H_ |
OLD | NEW |