| 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 919 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 930 if (block()->IsLoopHeader() && block() != loop_->loop_header()) { | 930 if (block()->IsLoopHeader() && block() != loop_->loop_header()) { |
| 931 // In this case we need to perform a LOOP_MEMBERS cycle so we | 931 // In this case we need to perform a LOOP_MEMBERS cycle so we |
| 932 // initialize it and return this instead of father. | 932 // initialize it and return this instead of father. |
| 933 return SetupLoopMembers(zone, block(), | 933 return SetupLoopMembers(zone, block(), |
| 934 block()->loop_information(), loop_header_); | 934 block()->loop_information(), loop_header_); |
| 935 } else { | 935 } else { |
| 936 return father_; | 936 return father_; |
| 937 } | 937 } |
| 938 case NONE: | 938 case NONE: |
| 939 return father_; | 939 return father_; |
| 940 default: | |
| 941 UNREACHABLE(); | |
| 942 return NULL; | |
| 943 } | 940 } |
| 941 UNREACHABLE(); |
| 942 return NULL; |
| 944 } | 943 } |
| 945 | 944 |
| 946 // Walks up the stack. | 945 // Walks up the stack. |
| 947 PostorderProcessor* Backtrack(Zone* zone, | 946 PostorderProcessor* Backtrack(Zone* zone, |
| 948 BitVector* visited, | 947 BitVector* visited, |
| 949 ZoneList<HBasicBlock*>* order) { | 948 ZoneList<HBasicBlock*>* order) { |
| 950 PostorderProcessor* parent = Pop(zone, visited, order); | 949 PostorderProcessor* parent = Pop(zone, visited, order); |
| 951 while (parent != NULL) { | 950 while (parent != NULL) { |
| 952 PostorderProcessor* next = | 951 PostorderProcessor* next = |
| 953 parent->PerformNonBacktrackingStep(zone, visited, order); | 952 parent->PerformNonBacktrackingStep(zone, visited, order); |
| (...skipping 8489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9443 } | 9442 } |
| 9444 } | 9443 } |
| 9445 | 9444 |
| 9446 #ifdef DEBUG | 9445 #ifdef DEBUG |
| 9447 if (graph_ != NULL) graph_->Verify(false); // No full verify. | 9446 if (graph_ != NULL) graph_->Verify(false); // No full verify. |
| 9448 if (allocator_ != NULL) allocator_->Verify(); | 9447 if (allocator_ != NULL) allocator_->Verify(); |
| 9449 #endif | 9448 #endif |
| 9450 } | 9449 } |
| 9451 | 9450 |
| 9452 } } // namespace v8::internal | 9451 } } // namespace v8::internal |
| OLD | NEW |