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

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

Issue 6880014: Reduce the number of virtual functions in hydrogen-instruction.h classes (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 8 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
« src/hydrogen-instructions.h ('K') | « src/ia32/lithium-ia32.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 773 matching lines...) Expand 10 before | Expand all | Expand 10 after
784 } 784 }
785 785
786 786
787 LOperand* LChunkBuilder::FixedTemp(XMMRegister reg) { 787 LOperand* LChunkBuilder::FixedTemp(XMMRegister reg) {
788 LUnallocated* operand = ToUnallocated(reg); 788 LUnallocated* operand = ToUnallocated(reg);
789 allocator_->RecordTemporary(operand); 789 allocator_->RecordTemporary(operand);
790 return operand; 790 return operand;
791 } 791 }
792 792
793 793
794 LInstruction* LChunkBuilder::DoPhi(HPhi* instr) {
795 UNREACHABLE();
796 return NULL;
797 }
798
799
794 LInstruction* LChunkBuilder::DoBlockEntry(HBlockEntry* instr) { 800 LInstruction* LChunkBuilder::DoBlockEntry(HBlockEntry* instr) {
795 return new LLabel(instr->block()); 801 return new LLabel(instr->block());
796 } 802 }
797 803
798 804
799 LInstruction* LChunkBuilder::DoDeoptimize(HDeoptimize* instr) { 805 LInstruction* LChunkBuilder::DoDeoptimize(HDeoptimize* instr) {
800 return AssignEnvironment(new LDeoptimize); 806 return AssignEnvironment(new LDeoptimize);
801 } 807 }
802 808
803 809
(...skipping 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after
2128 2134
2129 LInstruction* LChunkBuilder::DoLeaveInlined(HLeaveInlined* instr) { 2135 LInstruction* LChunkBuilder::DoLeaveInlined(HLeaveInlined* instr) {
2130 HEnvironment* outer = current_block_->last_environment()->outer(); 2136 HEnvironment* outer = current_block_->last_environment()->outer();
2131 current_block_->UpdateEnvironment(outer); 2137 current_block_->UpdateEnvironment(outer);
2132 return NULL; 2138 return NULL;
2133 } 2139 }
2134 2140
2135 } } // namespace v8::internal 2141 } } // namespace v8::internal
2136 2142
2137 #endif // V8_TARGET_ARCH_X64 2143 #endif // V8_TARGET_ARCH_X64
OLDNEW
« src/hydrogen-instructions.h ('K') | « src/ia32/lithium-ia32.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698