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

Side by Side Diff: src/ia32/code-stubs-ia32.cc

Issue 2637923002: Remove some dead fields from isolate.h (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « src/arm/code-stubs-arm.cc ('k') | src/isolate.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 // 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 #if V8_TARGET_ARCH_IA32 5 #if V8_TARGET_ARCH_IA32
6 6
7 #include "src/code-stubs.h" 7 #include "src/code-stubs.h"
8 #include "src/api-arguments.h" 8 #include "src/api-arguments.h"
9 #include "src/base/bits.h" 9 #include "src/base/bits.h"
10 #include "src/bootstrapper.h" 10 #include "src/bootstrapper.h"
(...skipping 1604 matching lines...) Expand 10 before | Expand all | Expand 10 after
1615 CreateWeakCellStub::GenerateAheadOfTime(isolate); 1615 CreateWeakCellStub::GenerateAheadOfTime(isolate);
1616 BinaryOpICStub::GenerateAheadOfTime(isolate); 1616 BinaryOpICStub::GenerateAheadOfTime(isolate);
1617 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); 1617 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate);
1618 StoreFastElementStub::GenerateAheadOfTime(isolate); 1618 StoreFastElementStub::GenerateAheadOfTime(isolate);
1619 } 1619 }
1620 1620
1621 1621
1622 void CodeStub::GenerateFPStubs(Isolate* isolate) { 1622 void CodeStub::GenerateFPStubs(Isolate* isolate) {
1623 // Generate if not already in cache. 1623 // Generate if not already in cache.
1624 CEntryStub(isolate, 1, kSaveFPRegs).GetCode(); 1624 CEntryStub(isolate, 1, kSaveFPRegs).GetCode();
1625 isolate->set_fp_stubs_generated(true);
1626 } 1625 }
1627 1626
1628 1627
1629 void CEntryStub::GenerateAheadOfTime(Isolate* isolate) { 1628 void CEntryStub::GenerateAheadOfTime(Isolate* isolate) {
1630 CEntryStub stub(isolate, 1, kDontSaveFPRegs); 1629 CEntryStub stub(isolate, 1, kDontSaveFPRegs);
1631 stub.GetCode(); 1630 stub.GetCode();
1632 } 1631 }
1633 1632
1634 1633
1635 void CEntryStub::Generate(MacroAssembler* masm) { 1634 void CEntryStub::Generate(MacroAssembler* masm) {
(...skipping 2559 matching lines...) Expand 10 before | Expand all | Expand 10 after
4195 kStackUnwindSpace, nullptr, return_value_operand, 4194 kStackUnwindSpace, nullptr, return_value_operand,
4196 NULL); 4195 NULL);
4197 } 4196 }
4198 4197
4199 #undef __ 4198 #undef __
4200 4199
4201 } // namespace internal 4200 } // namespace internal
4202 } // namespace v8 4201 } // namespace v8
4203 4202
4204 #endif // V8_TARGET_ARCH_IA32 4203 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/arm/code-stubs-arm.cc ('k') | src/isolate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698