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 5935 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5946 __ ret(2 * kPointerSize); | 5946 __ ret(2 * kPointerSize); |
5947 } | 5947 } |
5948 | 5948 |
5949 | 5949 |
5950 struct AheadOfTimeWriteBarrierStubList { | 5950 struct AheadOfTimeWriteBarrierStubList { |
5951 Register object, value, address; | 5951 Register object, value, address; |
5952 RememberedSetAction action; | 5952 RememberedSetAction action; |
5953 }; | 5953 }; |
5954 | 5954 |
5955 | 5955 |
| 5956 #define REG(Name) { kRegister ## Name ## Code } |
| 5957 |
5956 struct AheadOfTimeWriteBarrierStubList kAheadOfTime[] = { | 5958 struct AheadOfTimeWriteBarrierStubList kAheadOfTime[] = { |
5957 // Used in RegExpExecStub. | 5959 // Used in RegExpExecStub. |
5958 { rbx, rax, rdi, EMIT_REMEMBERED_SET }, | 5960 { REG(Rbx), REG(Rax), REG(Rdi), EMIT_REMEMBERED_SET }, |
5959 // Used in CompileArrayPushCall. | 5961 // Used in CompileArrayPushCall. |
5960 { rbx, rcx, rdx, EMIT_REMEMBERED_SET }, | 5962 { REG(Rbx), REG(Rcx), REG(Rdx), EMIT_REMEMBERED_SET }, |
5961 // Used in CompileStoreGlobal. | 5963 // Used in CompileStoreGlobal. |
5962 { rbx, rcx, rdx, OMIT_REMEMBERED_SET }, | 5964 { REG(Rbx), REG(Rcx), REG(Rdx), OMIT_REMEMBERED_SET }, |
5963 // Used in StoreStubCompiler::CompileStoreField and | 5965 // Used in StoreStubCompiler::CompileStoreField and |
5964 // KeyedStoreStubCompiler::CompileStoreField via GenerateStoreField. | 5966 // KeyedStoreStubCompiler::CompileStoreField via GenerateStoreField. |
5965 { rdx, rcx, rbx, EMIT_REMEMBERED_SET }, | 5967 { REG(Rdx), REG(Rcx), REG(Rbx), EMIT_REMEMBERED_SET }, |
5966 // GenerateStoreField calls the stub with two different permutations of | 5968 // GenerateStoreField calls the stub with two different permutations of |
5967 // registers. This is the second. | 5969 // registers. This is the second. |
5968 { rbx, rcx, rdx, EMIT_REMEMBERED_SET }, | 5970 { REG(Rbx), REG(Rcx), REG(Rdx), EMIT_REMEMBERED_SET }, |
5969 // StoreIC::GenerateNormal via GenerateDictionaryStore. | 5971 // StoreIC::GenerateNormal via GenerateDictionaryStore. |
5970 { rbx, r8, r9, EMIT_REMEMBERED_SET }, | 5972 { REG(Rbx), REG(R8), REG(R9), EMIT_REMEMBERED_SET }, |
5971 // KeyedStoreIC::GenerateGeneric. | 5973 // KeyedStoreIC::GenerateGeneric. |
5972 { rbx, rdx, rcx, EMIT_REMEMBERED_SET}, | 5974 { REG(Rbx), REG(Rdx), REG(Rcx), EMIT_REMEMBERED_SET}, |
5973 // KeyedStoreStubCompiler::GenerateStoreFastElement. | 5975 // KeyedStoreStubCompiler::GenerateStoreFastElement. |
5974 { rdi, rbx, rcx, EMIT_REMEMBERED_SET}, | 5976 { REG(Rdi), REG(Rbx), REG(Rcx), EMIT_REMEMBERED_SET}, |
5975 { rdx, rdi, rbx, EMIT_REMEMBERED_SET}, | 5977 { REG(Rdx), REG(Rdi), REG(Rbx), EMIT_REMEMBERED_SET}, |
5976 // ElementsTransitionGenerator::GenerateSmiOnlyToObject | 5978 // ElementsTransitionGenerator::GenerateSmiOnlyToObject |
5977 // and ElementsTransitionGenerator::GenerateSmiOnlyToObject | 5979 // and ElementsTransitionGenerator::GenerateSmiOnlyToObject |
5978 // and ElementsTransitionGenerator::GenerateDoubleToObject | 5980 // and ElementsTransitionGenerator::GenerateDoubleToObject |
5979 { rdx, rbx, rdi, EMIT_REMEMBERED_SET}, | 5981 { REG(Rdx), REG(Rbx), REG(Rdi), EMIT_REMEMBERED_SET}, |
5980 { rdx, rbx, rdi, OMIT_REMEMBERED_SET}, | 5982 { REG(Rdx), REG(Rbx), REG(Rdi), OMIT_REMEMBERED_SET}, |
5981 // ElementsTransitionGenerator::GenerateSmiOnlyToDouble | 5983 // ElementsTransitionGenerator::GenerateSmiOnlyToDouble |
5982 // and ElementsTransitionGenerator::GenerateDoubleToObject | 5984 // and ElementsTransitionGenerator::GenerateDoubleToObject |
5983 { rdx, r11, r15, EMIT_REMEMBERED_SET}, | 5985 { REG(Rdx), REG(R11), REG(R15), EMIT_REMEMBERED_SET}, |
5984 // ElementsTransitionGenerator::GenerateDoubleToObject | 5986 // ElementsTransitionGenerator::GenerateDoubleToObject |
5985 { r11, rax, r15, EMIT_REMEMBERED_SET}, | 5987 { REG(R11), REG(Rax), REG(R15), EMIT_REMEMBERED_SET}, |
5986 // StoreArrayLiteralElementStub::Generate | 5988 // StoreArrayLiteralElementStub::Generate |
5987 { rbx, rax, rcx, EMIT_REMEMBERED_SET}, | 5989 { REG(Rbx), REG(Rax), REG(Rcx), EMIT_REMEMBERED_SET}, |
5988 // Null termination. | 5990 // Null termination. |
5989 { no_reg, no_reg, no_reg, EMIT_REMEMBERED_SET} | 5991 { REG(None), REG(None), REG(None), EMIT_REMEMBERED_SET} |
5990 }; | 5992 }; |
5991 | 5993 |
| 5994 #undef REG |
5992 | 5995 |
5993 bool RecordWriteStub::IsPregenerated() { | 5996 bool RecordWriteStub::IsPregenerated() { |
5994 for (AheadOfTimeWriteBarrierStubList* entry = kAheadOfTime; | 5997 for (AheadOfTimeWriteBarrierStubList* entry = kAheadOfTime; |
5995 !entry->object.is(no_reg); | 5998 !entry->object.is(no_reg); |
5996 entry++) { | 5999 entry++) { |
5997 if (object_.is(entry->object) && | 6000 if (object_.is(entry->object) && |
5998 value_.is(entry->value) && | 6001 value_.is(entry->value) && |
5999 address_.is(entry->address) && | 6002 address_.is(entry->address) && |
6000 remembered_set_action_ == entry->action && | 6003 remembered_set_action_ == entry->action && |
6001 save_fp_regs_mode_ == kDontSaveFPRegs) { | 6004 save_fp_regs_mode_ == kDontSaveFPRegs) { |
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6305 xmm0, | 6308 xmm0, |
6306 &slow_elements); | 6309 &slow_elements); |
6307 __ ret(0); | 6310 __ ret(0); |
6308 } | 6311 } |
6309 | 6312 |
6310 #undef __ | 6313 #undef __ |
6311 | 6314 |
6312 } } // namespace v8::internal | 6315 } } // namespace v8::internal |
6313 | 6316 |
6314 #endif // V8_TARGET_ARCH_X64 | 6317 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |