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

Side by Side Diff: src/ia32/builtins-ia32.cc

Issue 250553005: Added an Isolate* field to NoTrackDoubleFieldsForSerializerScope, PlatformFeatureScope and BinaryOp… (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Feedback. Rebased. Created 6 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/code-stubs.h ('k') | src/ia32/code-stubs-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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 685 matching lines...) Expand 10 before | Expand all | Expand 10 after
696 } 696 }
697 697
698 698
699 void Builtins::Generate_NotifyStubFailure(MacroAssembler* masm) { 699 void Builtins::Generate_NotifyStubFailure(MacroAssembler* masm) {
700 Generate_NotifyStubFailureHelper(masm, kDontSaveFPRegs); 700 Generate_NotifyStubFailureHelper(masm, kDontSaveFPRegs);
701 } 701 }
702 702
703 703
704 void Builtins::Generate_NotifyStubFailureSaveDoubles(MacroAssembler* masm) { 704 void Builtins::Generate_NotifyStubFailureSaveDoubles(MacroAssembler* masm) {
705 if (Serializer::enabled()) { 705 if (Serializer::enabled()) {
706 PlatformFeatureScope sse2(SSE2); 706 PlatformFeatureScope sse2(masm->isolate(), SSE2);
707 Generate_NotifyStubFailureHelper(masm, kSaveFPRegs); 707 Generate_NotifyStubFailureHelper(masm, kSaveFPRegs);
708 } else { 708 } else {
709 Generate_NotifyStubFailureHelper(masm, kSaveFPRegs); 709 Generate_NotifyStubFailureHelper(masm, kSaveFPRegs);
710 } 710 }
711 } 711 }
712 712
713 713
714 static void Generate_NotifyDeoptimizedHelper(MacroAssembler* masm, 714 static void Generate_NotifyDeoptimizedHelper(MacroAssembler* masm,
715 Deoptimizer::BailoutType type) { 715 Deoptimizer::BailoutType type) {
716 { 716 {
(...skipping 747 matching lines...) Expand 10 before | Expand all | Expand 10 after
1464 1464
1465 __ bind(&ok); 1465 __ bind(&ok);
1466 __ ret(0); 1466 __ ret(0);
1467 } 1467 }
1468 1468
1469 #undef __ 1469 #undef __
1470 } 1470 }
1471 } // namespace v8::internal 1471 } // namespace v8::internal
1472 1472
1473 #endif // V8_TARGET_ARCH_IA32 1473 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/code-stubs.h ('k') | src/ia32/code-stubs-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698