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

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

Issue 6299005: Add EmitGoto in x64 lithium codegen Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 11 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 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 547 matching lines...) Expand 10 before | Expand all | Expand 10 after
558 Abort("Unimplemented: %s", "EmitBranch"); 558 Abort("Unimplemented: %s", "EmitBranch");
559 } 559 }
560 560
561 561
562 void LCodeGen::DoBranch(LBranch* instr) { 562 void LCodeGen::DoBranch(LBranch* instr) {
563 Abort("Unimplemented: %s", "DoBranch"); 563 Abort("Unimplemented: %s", "DoBranch");
564 } 564 }
565 565
566 566
567 void LCodeGen::EmitGoto(int block, LDeferredCode* deferred_stack_check) { 567 void LCodeGen::EmitGoto(int block, LDeferredCode* deferred_stack_check) {
568 Abort("Unimplemented: %s", "EmitGoto"); 568 block = chunk_->LookupDestination(block);
569 int next_block = GetNextEmittedBlock(current_block_);
570 if (block != next_block) {
571 // Perform stack overflow check if this goto needs it before jumping.
572 if (deferred_stack_check != NULL) {
573 __ CompareRoot(rsp, Heap::kStackLimitRootIndex);
574 __ j(above_equal, chunk_->GetAssemblyLabel(block));
575 __ jmp(deferred_stack_check->entry());
576 deferred_stack_check->SetExit(chunk_->GetAssemblyLabel(block));
577 } else {
578 __ jmp(chunk_->GetAssemblyLabel(block));
579 }
580 }
569 } 581 }
570 582
571 583
572 void LCodeGen::DoDeferredStackCheck(LGoto* instr) { 584 void LCodeGen::DoDeferredStackCheck(LGoto* instr) {
573 Abort("Unimplemented: %s", "DoDeferredStackCheck"); 585 Abort("Unimplemented: %s", "DoDeferredStackCheck");
574 } 586 }
575 587
576 588
577 void LCodeGen::DoGoto(LGoto* instr) { 589 void LCodeGen::DoGoto(LGoto* instr) {
578 class DeferredStackCheck: public LDeferredCode { 590 class DeferredStackCheck: public LDeferredCode {
(...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after
1148 1160
1149 1161
1150 void LCodeGen::DoDeleteProperty(LDeleteProperty* instr) { 1162 void LCodeGen::DoDeleteProperty(LDeleteProperty* instr) {
1151 Abort("Unimplemented: %s", "DoDeleteProperty"); 1163 Abort("Unimplemented: %s", "DoDeleteProperty");
1152 } 1164 }
1153 1165
1154 1166
1155 void LCodeGen::DoStackCheck(LStackCheck* instr) { 1167 void LCodeGen::DoStackCheck(LStackCheck* instr) {
1156 // Perform stack overflow check. 1168 // Perform stack overflow check.
1157 NearLabel done; 1169 NearLabel done;
1158 ExternalReference stack_limit = ExternalReference::address_of_stack_limit();
1159 __ CompareRoot(rsp, Heap::kStackLimitRootIndex); 1170 __ CompareRoot(rsp, Heap::kStackLimitRootIndex);
1160 __ j(above_equal, &done); 1171 __ j(above_equal, &done);
1161 1172
1162 StackCheckStub stub; 1173 StackCheckStub stub;
1163 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); 1174 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr);
1164 __ bind(&done); 1175 __ bind(&done);
1165 } 1176 }
1166 1177
1167 1178
1168 void LCodeGen::DoOsrEntry(LOsrEntry* instr) { 1179 void LCodeGen::DoOsrEntry(LOsrEntry* instr) {
1169 Abort("Unimplemented: %s", "DoOsrEntry"); 1180 Abort("Unimplemented: %s", "DoOsrEntry");
1170 } 1181 }
1171 1182
1172 #undef __ 1183 #undef __
1173 1184
1174 } } // namespace v8::internal 1185 } } // namespace v8::internal
1175 1186
1176 #endif // V8_TARGET_ARCH_X64 1187 #endif // V8_TARGET_ARCH_X64
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