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 1124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1135 private: | 1135 private: |
1136 void AddCompare(HControlInstruction* compare); | 1136 void AddCompare(HControlInstruction* compare); |
1137 | 1137 |
1138 Zone* zone() { return builder_->zone(); } | 1138 Zone* zone() { return builder_->zone(); } |
1139 | 1139 |
1140 HGraphBuilder* builder_; | 1140 HGraphBuilder* builder_; |
1141 int position_; | 1141 int position_; |
1142 bool finished_ : 1; | 1142 bool finished_ : 1; |
1143 bool did_then_ : 1; | 1143 bool did_then_ : 1; |
1144 bool did_else_ : 1; | 1144 bool did_else_ : 1; |
1145 bool deopt_then_ : 1; | |
1146 bool deopt_else_ : 1; | |
1147 bool did_and_ : 1; | 1145 bool did_and_ : 1; |
1148 bool did_or_ : 1; | 1146 bool did_or_ : 1; |
1149 bool captured_ : 1; | 1147 bool captured_ : 1; |
1150 bool needs_compare_ : 1; | 1148 bool needs_compare_ : 1; |
1151 HBasicBlock* first_true_block_; | 1149 HBasicBlock* first_true_block_; |
1152 HBasicBlock* last_true_block_; | 1150 HBasicBlock* last_true_block_; |
1153 HBasicBlock* first_false_block_; | 1151 HBasicBlock* first_false_block_; |
1154 HBasicBlock* split_edge_merge_block_; | 1152 HBasicBlock* split_edge_merge_block_; |
1155 HBasicBlock* merge_block_; | 1153 HBasicBlock* merge_block_; |
1156 }; | 1154 }; |
(...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1940 EmbeddedVector<char, 64> filename_; | 1938 EmbeddedVector<char, 64> filename_; |
1941 HeapStringAllocator string_allocator_; | 1939 HeapStringAllocator string_allocator_; |
1942 StringStream trace_; | 1940 StringStream trace_; |
1943 int indent_; | 1941 int indent_; |
1944 }; | 1942 }; |
1945 | 1943 |
1946 | 1944 |
1947 } } // namespace v8::internal | 1945 } } // namespace v8::internal |
1948 | 1946 |
1949 #endif // V8_HYDROGEN_H_ | 1947 #endif // V8_HYDROGEN_H_ |
OLD | NEW |