Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: src/crankshaft/ppc/lithium-ppc.cc

Issue 1823623002: [crankshaft] Delete unused Hydrogen-BCH code (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/crankshaft/mips64/lithium-mips64.cc ('k') | src/crankshaft/s390/lithium-s390.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/crankshaft/ppc/lithium-ppc.h" 5 #include "src/crankshaft/ppc/lithium-ppc.h"
6 6
7 #include <sstream> 7 #include <sstream>
8 8
9 #include "src/crankshaft/hydrogen-osr.h" 9 #include "src/crankshaft/hydrogen-osr.h"
10 #include "src/crankshaft/lithium-inl.h" 10 #include "src/crankshaft/lithium-inl.h"
(...skipping 1746 matching lines...) Expand 10 before | Expand all | Expand 10 after
1757 ? UseRegisterOrConstantAtStart(instr->length()) 1757 ? UseRegisterOrConstantAtStart(instr->length())
1758 : UseRegisterAtStart(instr->length()); 1758 : UseRegisterAtStart(instr->length());
1759 LInstruction* result = new (zone()) LBoundsCheck(index, length); 1759 LInstruction* result = new (zone()) LBoundsCheck(index, length);
1760 if (!FLAG_debug_code || !instr->skip_check()) { 1760 if (!FLAG_debug_code || !instr->skip_check()) {
1761 result = AssignEnvironment(result); 1761 result = AssignEnvironment(result);
1762 } 1762 }
1763 return result; 1763 return result;
1764 } 1764 }
1765 1765
1766 1766
1767 LInstruction* LChunkBuilder::DoBoundsCheckBaseIndexInformation(
1768 HBoundsCheckBaseIndexInformation* instr) {
1769 UNREACHABLE();
1770 return NULL;
1771 }
1772
1773
1774 LInstruction* LChunkBuilder::DoAbnormalExit(HAbnormalExit* instr) { 1767 LInstruction* LChunkBuilder::DoAbnormalExit(HAbnormalExit* instr) {
1775 // The control instruction marking the end of a block that completed 1768 // The control instruction marking the end of a block that completed
1776 // abruptly (e.g., threw an exception). There is nothing specific to do. 1769 // abruptly (e.g., threw an exception). There is nothing specific to do.
1777 return NULL; 1770 return NULL;
1778 } 1771 }
1779 1772
1780 1773
1781 LInstruction* LChunkBuilder::DoUseConst(HUseConst* instr) { return NULL; } 1774 LInstruction* LChunkBuilder::DoUseConst(HUseConst* instr) { return NULL; }
1782 1775
1783 1776
(...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after
2500 } 2493 }
2501 2494
2502 2495
2503 LInstruction* LChunkBuilder::DoStoreFrameContext(HStoreFrameContext* instr) { 2496 LInstruction* LChunkBuilder::DoStoreFrameContext(HStoreFrameContext* instr) {
2504 LOperand* context = UseRegisterAtStart(instr->context()); 2497 LOperand* context = UseRegisterAtStart(instr->context());
2505 return new (zone()) LStoreFrameContext(context); 2498 return new (zone()) LStoreFrameContext(context);
2506 } 2499 }
2507 2500
2508 } // namespace internal 2501 } // namespace internal
2509 } // namespace v8 2502 } // namespace v8
OLDNEW
« no previous file with comments | « src/crankshaft/mips64/lithium-mips64.cc ('k') | src/crankshaft/s390/lithium-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698