| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |