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

Side by Side Diff: src/arm/full-codegen-arm.cc

Issue 6266022: Merge r6496 to trunk: Fix issue 1076. (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 9 years, 10 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 | « no previous file | src/ia32/full-codegen-ia32.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 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 716 matching lines...) Expand 10 before | Expand all | Expand 10 after
727 727
728 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS); 728 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
729 729
730 ZoneList<CaseClause*>* clauses = stmt->cases(); 730 ZoneList<CaseClause*>* clauses = stmt->cases();
731 CaseClause* default_clause = NULL; // Can occur anywhere in the list. 731 CaseClause* default_clause = NULL; // Can occur anywhere in the list.
732 732
733 Label next_test; // Recycled for each test. 733 Label next_test; // Recycled for each test.
734 // Compile all the tests with branches to their bodies. 734 // Compile all the tests with branches to their bodies.
735 for (int i = 0; i < clauses->length(); i++) { 735 for (int i = 0; i < clauses->length(); i++) {
736 CaseClause* clause = clauses->at(i); 736 CaseClause* clause = clauses->at(i);
737 clause->body_target()->entry_label()->Unuse();
738
737 // The default is not a test, but remember it as final fall through. 739 // The default is not a test, but remember it as final fall through.
738 if (clause->is_default()) { 740 if (clause->is_default()) {
739 default_clause = clause; 741 default_clause = clause;
740 continue; 742 continue;
741 } 743 }
742 744
743 Comment cmnt(masm_, "[ Case comparison"); 745 Comment cmnt(masm_, "[ Case comparison");
744 __ bind(&next_test); 746 __ bind(&next_test);
745 next_test.Unuse(); 747 next_test.Unuse();
746 748
(...skipping 2864 matching lines...) Expand 10 before | Expand all | Expand 10 after
3611 __ mov(r1, Operand(r1, ASR, 1)); // Un-smi-tag value. 3613 __ mov(r1, Operand(r1, ASR, 1)); // Un-smi-tag value.
3612 __ add(pc, r1, Operand(masm_->CodeObject())); 3614 __ add(pc, r1, Operand(masm_->CodeObject()));
3613 } 3615 }
3614 3616
3615 3617
3616 #undef __ 3618 #undef __
3617 3619
3618 } } // namespace v8::internal 3620 } } // namespace v8::internal
3619 3621
3620 #endif // V8_TARGET_ARCH_ARM 3622 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « no previous file | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698