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

Side by Side Diff: src/crankshaft/ia32/lithium-ia32.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/hydrogen-instructions.cc ('k') | src/crankshaft/mips/lithium-mips.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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/ia32/lithium-ia32.h" 5 #include "src/crankshaft/ia32/lithium-ia32.h"
6 6
7 #include <sstream> 7 #include <sstream>
8 8
9 #if V8_TARGET_ARCH_IA32 9 #if V8_TARGET_ARCH_IA32
10 10
(...skipping 1792 matching lines...) Expand 10 before | Expand all | Expand 10 after
1803 ? UseOrConstantAtStart(instr->length()) 1803 ? UseOrConstantAtStart(instr->length())
1804 : UseAtStart(instr->length()); 1804 : UseAtStart(instr->length());
1805 LInstruction* result = new(zone()) LBoundsCheck(index, length); 1805 LInstruction* result = new(zone()) LBoundsCheck(index, length);
1806 if (!FLAG_debug_code || !instr->skip_check()) { 1806 if (!FLAG_debug_code || !instr->skip_check()) {
1807 result = AssignEnvironment(result); 1807 result = AssignEnvironment(result);
1808 } 1808 }
1809 return result; 1809 return result;
1810 } 1810 }
1811 1811
1812 1812
1813 LInstruction* LChunkBuilder::DoBoundsCheckBaseIndexInformation(
1814 HBoundsCheckBaseIndexInformation* instr) {
1815 UNREACHABLE();
1816 return NULL;
1817 }
1818
1819
1820 LInstruction* LChunkBuilder::DoAbnormalExit(HAbnormalExit* instr) { 1813 LInstruction* LChunkBuilder::DoAbnormalExit(HAbnormalExit* instr) {
1821 // The control instruction marking the end of a block that completed 1814 // The control instruction marking the end of a block that completed
1822 // abruptly (e.g., threw an exception). There is nothing specific to do. 1815 // abruptly (e.g., threw an exception). There is nothing specific to do.
1823 return NULL; 1816 return NULL;
1824 } 1817 }
1825 1818
1826 1819
1827 LInstruction* LChunkBuilder::DoUseConst(HUseConst* instr) { 1820 LInstruction* LChunkBuilder::DoUseConst(HUseConst* instr) {
1828 return NULL; 1821 return NULL;
1829 } 1822 }
(...skipping 798 matching lines...) Expand 10 before | Expand all | Expand 10 after
2628 LInstruction* LChunkBuilder::DoStoreFrameContext(HStoreFrameContext* instr) { 2621 LInstruction* LChunkBuilder::DoStoreFrameContext(HStoreFrameContext* instr) {
2629 LOperand* context = UseRegisterAtStart(instr->context()); 2622 LOperand* context = UseRegisterAtStart(instr->context());
2630 return new(zone()) LStoreFrameContext(context); 2623 return new(zone()) LStoreFrameContext(context);
2631 } 2624 }
2632 2625
2633 2626
2634 } // namespace internal 2627 } // namespace internal
2635 } // namespace v8 2628 } // namespace v8
2636 2629
2637 #endif // V8_TARGET_ARCH_IA32 2630 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/crankshaft/hydrogen-instructions.cc ('k') | src/crankshaft/mips/lithium-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698