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

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

Issue 6764015: Made test.py not mention the defunct --crankshaft flag. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: git cl dcommit 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
« no previous file with comments | « src/x64/deoptimizer-x64.cc ('k') | src/x64/lithium-x64.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 2726 matching lines...) Expand 10 before | Expand all | Expand 10 after
2737 __ movsd(xmm0, left_reg); 2737 __ movsd(xmm0, left_reg);
2738 #ifdef _WIN64 2738 #ifdef _WIN64
2739 ASSERT(ToRegister(right).is(rdx)); 2739 ASSERT(ToRegister(right).is(rdx));
2740 #else 2740 #else
2741 ASSERT(ToRegister(right).is(rdi)); 2741 ASSERT(ToRegister(right).is(rdi));
2742 #endif 2742 #endif
2743 __ CallCFunction( 2743 __ CallCFunction(
2744 ExternalReference::power_double_int_function(isolate()), 2); 2744 ExternalReference::power_double_int_function(isolate()), 2);
2745 } else { 2745 } else {
2746 ASSERT(exponent_type.IsTagged()); 2746 ASSERT(exponent_type.IsTagged());
2747 CpuFeatures::Scope scope(SSE2);
2748 Register right_reg = ToRegister(right); 2747 Register right_reg = ToRegister(right);
2749 2748
2750 Label non_smi, call; 2749 Label non_smi, call;
2751 __ JumpIfNotSmi(right_reg, &non_smi); 2750 __ JumpIfNotSmi(right_reg, &non_smi);
2752 __ SmiToInteger32(right_reg, right_reg); 2751 __ SmiToInteger32(right_reg, right_reg);
2753 __ cvtlsi2sd(xmm1, right_reg); 2752 __ cvtlsi2sd(xmm1, right_reg);
2754 __ jmp(&call); 2753 __ jmp(&call);
2755 2754
2756 __ bind(&non_smi); 2755 __ bind(&non_smi);
2757 __ CmpObjectType(right_reg, HEAP_NUMBER_TYPE , kScratchRegister); 2756 __ CmpObjectType(right_reg, HEAP_NUMBER_TYPE , kScratchRegister);
(...skipping 1194 matching lines...) Expand 10 before | Expand all | Expand 10 after
3952 RegisterEnvironmentForDeoptimization(environment); 3951 RegisterEnvironmentForDeoptimization(environment);
3953 ASSERT(osr_pc_offset_ == -1); 3952 ASSERT(osr_pc_offset_ == -1);
3954 osr_pc_offset_ = masm()->pc_offset(); 3953 osr_pc_offset_ = masm()->pc_offset();
3955 } 3954 }
3956 3955
3957 #undef __ 3956 #undef __
3958 3957
3959 } } // namespace v8::internal 3958 } } // namespace v8::internal
3960 3959
3961 #endif // V8_TARGET_ARCH_X64 3960 #endif // V8_TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « src/x64/deoptimizer-x64.cc ('k') | src/x64/lithium-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698