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

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

Issue 27087: Experimental: in a debug assertion, allow for the possibility that a... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/toiger/
Patch Set: Created 11 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 | 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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 1508 matching lines...) Expand 10 before | Expand all | Expand 10 after
1519 int original_height = frame_->height(); 1519 int original_height = frame_->height();
1520 #endif 1520 #endif
1521 VirtualFrame::SpilledScope spilled_scope(this); 1521 VirtualFrame::SpilledScope spilled_scope(this);
1522 Comment cmnt(masm_, "[ SwitchStatement"); 1522 Comment cmnt(masm_, "[ SwitchStatement");
1523 CodeForStatementPosition(node); 1523 CodeForStatementPosition(node);
1524 node->set_break_stack_height(break_stack_height_); 1524 node->set_break_stack_height(break_stack_height_);
1525 node->break_target()->Initialize(this); 1525 node->break_target()->Initialize(this);
1526 1526
1527 LoadAndSpill(node->tag()); 1527 LoadAndSpill(node->tag());
1528 if (TryGenerateFastCaseSwitchStatement(node)) { 1528 if (TryGenerateFastCaseSwitchStatement(node)) {
1529 ASSERT(frame_->height() == original_height); 1529 ASSERT(!has_valid_frame() || frame_->height() == original_height);
1530 return; 1530 return;
1531 } 1531 }
1532 1532
1533 JumpTarget next_test(this); 1533 JumpTarget next_test(this);
1534 JumpTarget fall_through(this); 1534 JumpTarget fall_through(this);
1535 JumpTarget default_entry(this); 1535 JumpTarget default_entry(this);
1536 JumpTarget default_exit(this, JumpTarget::BIDIRECTIONAL); 1536 JumpTarget default_exit(this, JumpTarget::BIDIRECTIONAL);
1537 ZoneList<CaseClause*>* cases = node->cases(); 1537 ZoneList<CaseClause*>* cases = node->cases();
1538 int length = cases->length(); 1538 int length = cases->length();
1539 CaseClause* default_clause = NULL; 1539 CaseClause* default_clause = NULL;
(...skipping 3519 matching lines...) Expand 10 before | Expand all | Expand 10 after
5059 __ mov(r2, Operand(0)); 5059 __ mov(r2, Operand(0));
5060 __ GetBuiltinEntry(r3, Builtins::CALL_NON_FUNCTION); 5060 __ GetBuiltinEntry(r3, Builtins::CALL_NON_FUNCTION);
5061 __ Jump(Handle<Code>(Builtins::builtin(Builtins::ArgumentsAdaptorTrampoline)), 5061 __ Jump(Handle<Code>(Builtins::builtin(Builtins::ArgumentsAdaptorTrampoline)),
5062 RelocInfo::CODE_TARGET); 5062 RelocInfo::CODE_TARGET);
5063 } 5063 }
5064 5064
5065 5065
5066 #undef __ 5066 #undef __
5067 5067
5068 } } // namespace v8::internal 5068 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698