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

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

Issue 264973011: Update SmiShiftLeft, SmiShiftLogicalRight, SmiShiftArithmeticRight and SmiDiv to support x32 port. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 7 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/x64/macro-assembler-x64.h » ('j') | src/x64/macro-assembler-x64.cc » ('J')
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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "v8.h" 5 #include "v8.h"
6 6
7 #if V8_TARGET_ARCH_X64 7 #if V8_TARGET_ARCH_X64
8 8
9 #include "code-stubs.h" 9 #include "code-stubs.h"
10 #include "codegen.h" 10 #include "codegen.h"
(...skipping 2296 matching lines...) Expand 10 before | Expand all | Expand 10 after
2307 CallIC(stub.GetCode(), expr->BinaryOperationFeedbackId()); 2307 CallIC(stub.GetCode(), expr->BinaryOperationFeedbackId());
2308 patch_site.EmitPatchInfo(); 2308 patch_site.EmitPatchInfo();
2309 __ jmp(&done, Label::kNear); 2309 __ jmp(&done, Label::kNear);
2310 2310
2311 __ bind(&smi_case); 2311 __ bind(&smi_case);
2312 switch (op) { 2312 switch (op) {
2313 case Token::SAR: 2313 case Token::SAR:
2314 __ SmiShiftArithmeticRight(rax, rdx, rcx); 2314 __ SmiShiftArithmeticRight(rax, rdx, rcx);
2315 break; 2315 break;
2316 case Token::SHL: 2316 case Token::SHL:
2317 __ SmiShiftLeft(rax, rdx, rcx); 2317 __ SmiShiftLeft(rax, rdx, rcx, &stub_call);
2318 break; 2318 break;
2319 case Token::SHR: 2319 case Token::SHR:
2320 __ SmiShiftLogicalRight(rax, rdx, rcx, &stub_call); 2320 __ SmiShiftLogicalRight(rax, rdx, rcx, &stub_call);
2321 break; 2321 break;
2322 case Token::ADD: 2322 case Token::ADD:
2323 __ SmiAdd(rax, rdx, rcx, &stub_call); 2323 __ SmiAdd(rax, rdx, rcx, &stub_call);
2324 break; 2324 break;
2325 case Token::SUB: 2325 case Token::SUB:
2326 __ SmiSub(rax, rdx, rcx, &stub_call); 2326 __ SmiSub(rax, rdx, rcx, &stub_call);
2327 break; 2327 break;
(...skipping 2526 matching lines...) Expand 10 before | Expand all | Expand 10 after
4854 ASSERT_EQ(isolate->builtins()->OsrAfterStackCheck()->entry(), 4854 ASSERT_EQ(isolate->builtins()->OsrAfterStackCheck()->entry(),
4855 Assembler::target_address_at(call_target_address, 4855 Assembler::target_address_at(call_target_address,
4856 unoptimized_code)); 4856 unoptimized_code));
4857 return OSR_AFTER_STACK_CHECK; 4857 return OSR_AFTER_STACK_CHECK;
4858 } 4858 }
4859 4859
4860 4860
4861 } } // namespace v8::internal 4861 } } // namespace v8::internal
4862 4862
4863 #endif // V8_TARGET_ARCH_X64 4863 #endif // V8_TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « no previous file | src/x64/macro-assembler-x64.h » ('j') | src/x64/macro-assembler-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698