| 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 2551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2562 | 2562 |
| 2563 | 2563 |
| 2564 void HPhi::AddIndirectUsesTo(int* dest) { | 2564 void HPhi::AddIndirectUsesTo(int* dest) { |
| 2565 for (int i = 0; i < Representation::kNumRepresentations; i++) { | 2565 for (int i = 0; i < Representation::kNumRepresentations; i++) { |
| 2566 dest[i] += indirect_uses_[i]; | 2566 dest[i] += indirect_uses_[i]; |
| 2567 } | 2567 } |
| 2568 } | 2568 } |
| 2569 | 2569 |
| 2570 | 2570 |
| 2571 void HSimulate::MergeWith(ZoneList<HSimulate*>* list) { | 2571 void HSimulate::MergeWith(ZoneList<HSimulate*>* list) { |
| 2572 if (!list->is_empty() && !HasAstId()) { | |
| 2573 set_ast_id(list->last()->ast_id()); | |
| 2574 } | |
| 2575 while (!list->is_empty()) { | 2572 while (!list->is_empty()) { |
| 2576 HSimulate* from = list->RemoveLast(); | 2573 HSimulate* from = list->RemoveLast(); |
| 2577 ZoneList<HValue*>* from_values = &from->values_; | 2574 ZoneList<HValue*>* from_values = &from->values_; |
| 2578 for (int i = 0; i < from_values->length(); ++i) { | 2575 for (int i = 0; i < from_values->length(); ++i) { |
| 2579 if (from->HasAssignedIndexAt(i)) { | 2576 if (from->HasAssignedIndexAt(i)) { |
| 2580 int index = from->GetAssignedIndexAt(i); | 2577 int index = from->GetAssignedIndexAt(i); |
| 2581 if (HasValueForIndex(index)) continue; | 2578 if (HasValueForIndex(index)) continue; |
| 2582 AddAssignedValue(index, from_values->at(i)); | 2579 AddAssignedValue(index, from_values->at(i)); |
| 2583 } else { | 2580 } else { |
| 2584 if (pop_count_ > 0) { | 2581 if (pop_count_ > 0) { |
| (...skipping 2113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4698 break; | 4695 break; |
| 4699 case kExternalMemory: | 4696 case kExternalMemory: |
| 4700 stream->Add("[external-memory]"); | 4697 stream->Add("[external-memory]"); |
| 4701 break; | 4698 break; |
| 4702 } | 4699 } |
| 4703 | 4700 |
| 4704 stream->Add("@%d", offset()); | 4701 stream->Add("@%d", offset()); |
| 4705 } | 4702 } |
| 4706 | 4703 |
| 4707 } } // namespace v8::internal | 4704 } } // namespace v8::internal |
| OLD | NEW |