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

Side by Side Diff: src/arm/lithium-arm.cc

Issue 23506020: Merged r16358, r16372, r16406, r16431, r16443 into 3.20 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.20
Patch Set: Created 7 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « src/arm/code-stubs-arm.cc ('k') | src/ast.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 // 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 1848 matching lines...) Expand 10 before | Expand all | Expand 10 after
1859 } 1859 }
1860 1860
1861 1861
1862 LInstruction* LChunkBuilder::DoBoundsCheckBaseIndexInformation( 1862 LInstruction* LChunkBuilder::DoBoundsCheckBaseIndexInformation(
1863 HBoundsCheckBaseIndexInformation* instr) { 1863 HBoundsCheckBaseIndexInformation* instr) {
1864 UNREACHABLE(); 1864 UNREACHABLE();
1865 return NULL; 1865 return NULL;
1866 } 1866 }
1867 1867
1868 1868
1869 LInstruction* LChunkBuilder::DoAbnormalExit(HAbnormalExit* instr) {
1870 // The control instruction marking the end of a block that completed
1871 // abruptly (e.g., threw an exception). There is nothing specific to do.
1872 return NULL;
1873 }
1874
1875
1876 LInstruction* LChunkBuilder::DoThrow(HThrow* instr) { 1869 LInstruction* LChunkBuilder::DoThrow(HThrow* instr) {
1877 LOperand* value = UseFixed(instr->value(), r0); 1870 LOperand* value = UseFixed(instr->value(), r0);
1878 return MarkAsCall(new(zone()) LThrow(value), instr); 1871 return MarkAsCall(new(zone()) LThrow(value), instr);
1879 } 1872 }
1880 1873
1881 1874
1882 LInstruction* LChunkBuilder::DoUseConst(HUseConst* instr) { 1875 LInstruction* LChunkBuilder::DoUseConst(HUseConst* instr) {
1883 return NULL; 1876 return NULL;
1884 } 1877 }
1885 1878
(...skipping 713 matching lines...) Expand 10 before | Expand all | Expand 10 after
2599 2592
2600 2593
2601 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { 2594 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) {
2602 LOperand* object = UseRegister(instr->object()); 2595 LOperand* object = UseRegister(instr->object());
2603 LOperand* index = UseRegister(instr->index()); 2596 LOperand* index = UseRegister(instr->index());
2604 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); 2597 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index));
2605 } 2598 }
2606 2599
2607 2600
2608 } } // namespace v8::internal 2601 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/arm/code-stubs-arm.cc ('k') | src/ast.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698