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

Side by Side Diff: src/crankshaft/arm/lithium-arm.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 | « BUILD.gn ('k') | src/crankshaft/arm64/lithium-arm64.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/arm/lithium-arm.h" 5 #include "src/crankshaft/arm/lithium-arm.h"
6 6
7 #include <sstream> 7 #include <sstream>
8 8
9 #include "src/crankshaft/arm/lithium-codegen-arm.h" 9 #include "src/crankshaft/arm/lithium-codegen-arm.h"
10 #include "src/crankshaft/hydrogen-osr.h" 10 #include "src/crankshaft/hydrogen-osr.h"
(...skipping 1807 matching lines...) Expand 10 before | Expand all | Expand 10 after
1818 ? UseRegisterOrConstantAtStart(instr->length()) 1818 ? UseRegisterOrConstantAtStart(instr->length())
1819 : UseRegisterAtStart(instr->length()); 1819 : UseRegisterAtStart(instr->length());
1820 LInstruction* result = new(zone()) LBoundsCheck(index, length); 1820 LInstruction* result = new(zone()) LBoundsCheck(index, length);
1821 if (!FLAG_debug_code || !instr->skip_check()) { 1821 if (!FLAG_debug_code || !instr->skip_check()) {
1822 result = AssignEnvironment(result); 1822 result = AssignEnvironment(result);
1823 } 1823 }
1824 return result; 1824 return result;
1825 } 1825 }
1826 1826
1827 1827
1828 LInstruction* LChunkBuilder::DoBoundsCheckBaseIndexInformation(
1829 HBoundsCheckBaseIndexInformation* instr) {
1830 UNREACHABLE();
1831 return NULL;
1832 }
1833
1834
1835 LInstruction* LChunkBuilder::DoAbnormalExit(HAbnormalExit* instr) { 1828 LInstruction* LChunkBuilder::DoAbnormalExit(HAbnormalExit* instr) {
1836 // The control instruction marking the end of a block that completed 1829 // The control instruction marking the end of a block that completed
1837 // abruptly (e.g., threw an exception). There is nothing specific to do. 1830 // abruptly (e.g., threw an exception). There is nothing specific to do.
1838 return NULL; 1831 return NULL;
1839 } 1832 }
1840 1833
1841 1834
1842 LInstruction* LChunkBuilder::DoUseConst(HUseConst* instr) { 1835 LInstruction* LChunkBuilder::DoUseConst(HUseConst* instr) {
1843 return NULL; 1836 return NULL;
1844 } 1837 }
(...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after
2572 } 2565 }
2573 2566
2574 2567
2575 LInstruction* LChunkBuilder::DoStoreFrameContext(HStoreFrameContext* instr) { 2568 LInstruction* LChunkBuilder::DoStoreFrameContext(HStoreFrameContext* instr) {
2576 LOperand* context = UseRegisterAtStart(instr->context()); 2569 LOperand* context = UseRegisterAtStart(instr->context());
2577 return new(zone()) LStoreFrameContext(context); 2570 return new(zone()) LStoreFrameContext(context);
2578 } 2571 }
2579 2572
2580 } // namespace internal 2573 } // namespace internal
2581 } // namespace v8 2574 } // namespace v8
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/crankshaft/arm64/lithium-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698