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

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

Issue 23881004: Delete useless CompileStoreGlobal (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: clean up more code Created 7 years, 3 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 | « no previous file | src/arm/stub-cache-arm.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 6413 matching lines...) Expand 10 before | Expand all | Expand 10 after
6424 6424
6425 #define REG(Name) { kRegister_ ## Name ## _Code } 6425 #define REG(Name) { kRegister_ ## Name ## _Code }
6426 6426
6427 static const AheadOfTimeWriteBarrierStubList kAheadOfTime[] = { 6427 static const AheadOfTimeWriteBarrierStubList kAheadOfTime[] = {
6428 // Used in RegExpExecStub. 6428 // Used in RegExpExecStub.
6429 { REG(r6), REG(r4), REG(r7), EMIT_REMEMBERED_SET }, 6429 { REG(r6), REG(r4), REG(r7), EMIT_REMEMBERED_SET },
6430 // Used in CompileArrayPushCall. 6430 // Used in CompileArrayPushCall.
6431 // Also used in StoreIC::GenerateNormal via GenerateDictionaryStore. 6431 // Also used in StoreIC::GenerateNormal via GenerateDictionaryStore.
6432 // Also used in KeyedStoreIC::GenerateGeneric. 6432 // Also used in KeyedStoreIC::GenerateGeneric.
6433 { REG(r3), REG(r4), REG(r5), EMIT_REMEMBERED_SET }, 6433 { REG(r3), REG(r4), REG(r5), EMIT_REMEMBERED_SET },
6434 // Used in CompileStoreGlobal.
6435 { REG(r4), REG(r1), REG(r2), OMIT_REMEMBERED_SET },
6436 // Used in StoreStubCompiler::CompileStoreField via GenerateStoreField. 6434 // Used in StoreStubCompiler::CompileStoreField via GenerateStoreField.
6437 { REG(r1), REG(r2), REG(r3), EMIT_REMEMBERED_SET }, 6435 { REG(r1), REG(r2), REG(r3), EMIT_REMEMBERED_SET },
6438 { REG(r3), REG(r2), REG(r1), EMIT_REMEMBERED_SET }, 6436 { REG(r3), REG(r2), REG(r1), EMIT_REMEMBERED_SET },
6439 // Used in KeyedStoreStubCompiler::CompileStoreField via GenerateStoreField. 6437 // Used in KeyedStoreStubCompiler::CompileStoreField via GenerateStoreField.
6440 { REG(r2), REG(r1), REG(r3), EMIT_REMEMBERED_SET }, 6438 { REG(r2), REG(r1), REG(r3), EMIT_REMEMBERED_SET },
6441 { REG(r3), REG(r1), REG(r2), EMIT_REMEMBERED_SET }, 6439 { REG(r3), REG(r1), REG(r2), EMIT_REMEMBERED_SET },
6442 // KeyedStoreStubCompiler::GenerateStoreFastElement. 6440 // KeyedStoreStubCompiler::GenerateStoreFastElement.
6443 { REG(r3), REG(r2), REG(r4), EMIT_REMEMBERED_SET }, 6441 { REG(r3), REG(r2), REG(r4), EMIT_REMEMBERED_SET },
6444 { REG(r2), REG(r3), REG(r4), EMIT_REMEMBERED_SET }, 6442 { REG(r2), REG(r3), REG(r4), EMIT_REMEMBERED_SET },
6445 // ElementsTransitionGenerator::GenerateMapChangeElementTransition 6443 // ElementsTransitionGenerator::GenerateMapChangeElementTransition
(...skipping 692 matching lines...) Expand 10 before | Expand all | Expand 10 after
7138 __ bind(&fast_elements_case); 7136 __ bind(&fast_elements_case);
7139 GenerateCase(masm, FAST_ELEMENTS); 7137 GenerateCase(masm, FAST_ELEMENTS);
7140 } 7138 }
7141 7139
7142 7140
7143 #undef __ 7141 #undef __
7144 7142
7145 } } // namespace v8::internal 7143 } } // namespace v8::internal
7146 7144
7147 #endif // V8_TARGET_ARCH_ARM 7145 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « no previous file | src/arm/stub-cache-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698