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

Side by Side Diff: src/ia32/code-stubs-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/ia32/builtins-ia32.cc ('k') | src/ic.h » ('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 2499 matching lines...) Expand 10 before | Expand all | Expand 10 after
2510 2510
2511 2511
2512 void CodeStub::GenerateStubsAheadOfTime(Isolate* isolate) { 2512 void CodeStub::GenerateStubsAheadOfTime(Isolate* isolate) {
2513 CEntryStub::GenerateAheadOfTime(isolate); 2513 CEntryStub::GenerateAheadOfTime(isolate);
2514 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); 2514 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate);
2515 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); 2515 StubFailureTrampolineStub::GenerateAheadOfTime(isolate);
2516 // It is important that the store buffer overflow stubs are generated first. 2516 // It is important that the store buffer overflow stubs are generated first.
2517 ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); 2517 ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate);
2518 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); 2518 CreateAllocationSiteStub::GenerateAheadOfTime(isolate);
2519 if (Serializer::enabled()) { 2519 if (Serializer::enabled()) {
2520 PlatformFeatureScope sse2(SSE2); 2520 PlatformFeatureScope sse2(isolate, SSE2);
2521 BinaryOpICStub::GenerateAheadOfTime(isolate); 2521 BinaryOpICStub::GenerateAheadOfTime(isolate);
2522 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); 2522 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate);
2523 } else { 2523 } else {
2524 BinaryOpICStub::GenerateAheadOfTime(isolate); 2524 BinaryOpICStub::GenerateAheadOfTime(isolate);
2525 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); 2525 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate);
2526 } 2526 }
2527 } 2527 }
2528 2528
2529 2529
2530 void CodeStub::GenerateFPStubs(Isolate* isolate) { 2530 void CodeStub::GenerateFPStubs(Isolate* isolate) {
(...skipping 2513 matching lines...) Expand 10 before | Expand all | Expand 10 after
5044 Operand(ebp, 7 * kPointerSize), 5044 Operand(ebp, 7 * kPointerSize),
5045 NULL); 5045 NULL);
5046 } 5046 }
5047 5047
5048 5048
5049 #undef __ 5049 #undef __
5050 5050
5051 } } // namespace v8::internal 5051 } } // namespace v8::internal
5052 5052
5053 #endif // V8_TARGET_ARCH_IA32 5053 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/ia32/builtins-ia32.cc ('k') | src/ic.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698