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

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

Issue 9455088: Remove static initializers in v8. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Lint. Created 8 years, 10 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
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 7009 matching lines...) Expand 10 before | Expand all | Expand 10 after
7020 __ ret(2 * kPointerSize); 7020 __ ret(2 * kPointerSize);
7021 } 7021 }
7022 7022
7023 7023
7024 struct AheadOfTimeWriteBarrierStubList { 7024 struct AheadOfTimeWriteBarrierStubList {
7025 Register object, value, address; 7025 Register object, value, address;
7026 RememberedSetAction action; 7026 RememberedSetAction action;
7027 }; 7027 };
7028 7028
7029 7029
7030 struct AheadOfTimeWriteBarrierStubList kAheadOfTime[] = { 7030 #define REG(Name) { kRegister ## Name ## Code }
7031
7032 static const AheadOfTimeWriteBarrierStubList kAheadOfTime[] = {
7031 // Used in RegExpExecStub. 7033 // Used in RegExpExecStub.
7032 { ebx, eax, edi, EMIT_REMEMBERED_SET }, 7034 { REG(Ebx), REG(Eax), REG(Edi), EMIT_REMEMBERED_SET },
7033 // Used in CompileArrayPushCall. 7035 // Used in CompileArrayPushCall.
7034 { ebx, ecx, edx, EMIT_REMEMBERED_SET }, 7036 { REG(Ebx), REG(Ecx), REG(Edx), EMIT_REMEMBERED_SET },
7035 { ebx, edi, edx, OMIT_REMEMBERED_SET }, 7037 { REG(Ebx), REG(Edi), REG(Edx), OMIT_REMEMBERED_SET },
7036 // Used in CompileStoreGlobal and CallFunctionStub. 7038 // Used in CompileStoreGlobal and CallFunctionStub.
7037 { ebx, ecx, edx, OMIT_REMEMBERED_SET }, 7039 { REG(Ebx), REG(Ecx), REG(Edx), OMIT_REMEMBERED_SET },
7038 // Used in StoreStubCompiler::CompileStoreField and 7040 // Used in StoreStubCompiler::CompileStoreField and
7039 // KeyedStoreStubCompiler::CompileStoreField via GenerateStoreField. 7041 // KeyedStoreStubCompiler::CompileStoreField via GenerateStoreField.
7040 { edx, ecx, ebx, EMIT_REMEMBERED_SET }, 7042 { REG(Edx), REG(Ecx), REG(Ebx), EMIT_REMEMBERED_SET },
7041 // GenerateStoreField calls the stub with two different permutations of 7043 // GenerateStoreField calls the stub with two different permutations of
7042 // registers. This is the second. 7044 // registers. This is the second.
7043 { ebx, ecx, edx, EMIT_REMEMBERED_SET }, 7045 { REG(Ebx), REG(Ecx), REG(Edx), EMIT_REMEMBERED_SET },
7044 // StoreIC::GenerateNormal via GenerateDictionaryStore 7046 // StoreIC::GenerateNormal via GenerateDictionaryStore
7045 { ebx, edi, edx, EMIT_REMEMBERED_SET }, 7047 { REG(Ebx), REG(Edi), REG(Edx), EMIT_REMEMBERED_SET },
7046 // KeyedStoreIC::GenerateGeneric. 7048 // KeyedStoreIC::GenerateGeneric.
7047 { ebx, edx, ecx, EMIT_REMEMBERED_SET}, 7049 { REG(Ebx), REG(Edx), REG(Ecx), EMIT_REMEMBERED_SET},
7048 // KeyedStoreStubCompiler::GenerateStoreFastElement. 7050 // KeyedStoreStubCompiler::GenerateStoreFastElement.
7049 { edi, ebx, ecx, EMIT_REMEMBERED_SET}, 7051 { REG(Edi), REG(Ebx), REG(Ecx), EMIT_REMEMBERED_SET},
7050 { edx, edi, ebx, EMIT_REMEMBERED_SET}, 7052 { REG(Edx), REG(Edi), REG(Ebx), EMIT_REMEMBERED_SET},
7051 // ElementsTransitionGenerator::GenerateSmiOnlyToObject 7053 // ElementsTransitionGenerator::GenerateSmiOnlyToObject
7052 // and ElementsTransitionGenerator::GenerateSmiOnlyToDouble 7054 // and ElementsTransitionGenerator::GenerateSmiOnlyToDouble
7053 // and ElementsTransitionGenerator::GenerateDoubleToObject 7055 // and ElementsTransitionGenerator::GenerateDoubleToObject
7054 { edx, ebx, edi, EMIT_REMEMBERED_SET}, 7056 { REG(Edx), REG(Ebx), REG(Edi), EMIT_REMEMBERED_SET},
7055 { edx, ebx, edi, OMIT_REMEMBERED_SET}, 7057 { REG(Edx), REG(Ebx), REG(Edi), OMIT_REMEMBERED_SET},
7056 // ElementsTransitionGenerator::GenerateDoubleToObject 7058 // ElementsTransitionGenerator::GenerateDoubleToObject
7057 { eax, edx, esi, EMIT_REMEMBERED_SET}, 7059 { REG(Eax), REG(Edx), REG(Esi), EMIT_REMEMBERED_SET},
7058 { edx, eax, edi, EMIT_REMEMBERED_SET}, 7060 { REG(Edx), REG(Eax), REG(Edi), EMIT_REMEMBERED_SET},
7059 // StoreArrayLiteralElementStub::Generate 7061 // StoreArrayLiteralElementStub::Generate
7060 { ebx, eax, ecx, EMIT_REMEMBERED_SET}, 7062 { REG(Ebx), REG(Eax), REG(Ecx), EMIT_REMEMBERED_SET},
7061 // Null termination. 7063 // Null termination.
7062 { no_reg, no_reg, no_reg, EMIT_REMEMBERED_SET} 7064 { REG(None), REG(None), REG(None), EMIT_REMEMBERED_SET}
7063 }; 7065 };
7064 7066
7067 #undef REG
7065 7068
7066 bool RecordWriteStub::IsPregenerated() { 7069 bool RecordWriteStub::IsPregenerated() {
7067 for (AheadOfTimeWriteBarrierStubList* entry = kAheadOfTime; 7070 for (const AheadOfTimeWriteBarrierStubList* entry = kAheadOfTime;
7068 !entry->object.is(no_reg); 7071 !entry->object.is(no_reg);
7069 entry++) { 7072 entry++) {
7070 if (object_.is(entry->object) && 7073 if (object_.is(entry->object) &&
7071 value_.is(entry->value) && 7074 value_.is(entry->value) &&
7072 address_.is(entry->address) && 7075 address_.is(entry->address) &&
7073 remembered_set_action_ == entry->action && 7076 remembered_set_action_ == entry->action &&
7074 save_fp_regs_mode_ == kDontSaveFPRegs) { 7077 save_fp_regs_mode_ == kDontSaveFPRegs) {
7075 return true; 7078 return true;
7076 } 7079 }
7077 } 7080 }
7078 return false; 7081 return false;
7079 } 7082 }
7080 7083
7081 7084
7082 void StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime() { 7085 void StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime() {
7083 StoreBufferOverflowStub stub1(kDontSaveFPRegs); 7086 StoreBufferOverflowStub stub1(kDontSaveFPRegs);
7084 stub1.GetCode()->set_is_pregenerated(true); 7087 stub1.GetCode()->set_is_pregenerated(true);
7085 7088
7086 CpuFeatures::TryForceFeatureScope scope(SSE2); 7089 CpuFeatures::TryForceFeatureScope scope(SSE2);
7087 if (CpuFeatures::IsSupported(SSE2)) { 7090 if (CpuFeatures::IsSupported(SSE2)) {
7088 StoreBufferOverflowStub stub2(kSaveFPRegs); 7091 StoreBufferOverflowStub stub2(kSaveFPRegs);
7089 stub2.GetCode()->set_is_pregenerated(true); 7092 stub2.GetCode()->set_is_pregenerated(true);
7090 } 7093 }
7091 } 7094 }
7092 7095
7093 7096
7094 void RecordWriteStub::GenerateFixedRegStubsAheadOfTime() { 7097 void RecordWriteStub::GenerateFixedRegStubsAheadOfTime() {
7095 for (AheadOfTimeWriteBarrierStubList* entry = kAheadOfTime; 7098 for (const AheadOfTimeWriteBarrierStubList* entry = kAheadOfTime;
7096 !entry->object.is(no_reg); 7099 !entry->object.is(no_reg);
7097 entry++) { 7100 entry++) {
7098 RecordWriteStub stub(entry->object, 7101 RecordWriteStub stub(entry->object,
7099 entry->value, 7102 entry->value,
7100 entry->address, 7103 entry->address,
7101 entry->action, 7104 entry->action,
7102 kDontSaveFPRegs); 7105 kDontSaveFPRegs);
7103 stub.GetCode()->set_is_pregenerated(true); 7106 stub.GetCode()->set_is_pregenerated(true);
7104 } 7107 }
7105 } 7108 }
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
7379 false); 7382 false);
7380 __ pop(edx); 7383 __ pop(edx);
7381 __ ret(0); 7384 __ ret(0);
7382 } 7385 }
7383 7386
7384 #undef __ 7387 #undef __
7385 7388
7386 } } // namespace v8::internal 7389 } } // namespace v8::internal
7387 7390
7388 #endif // V8_TARGET_ARCH_IA32 7391 #endif // V8_TARGET_ARCH_IA32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698