OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 | 122 |
123 const int kInterceptorOrAccessCheckNeededMask = | 123 const int kInterceptorOrAccessCheckNeededMask = |
124 (1 << Map::kHasNamedInterceptor) | (1 << Map::kIsAccessCheckNeeded); | 124 (1 << Map::kHasNamedInterceptor) | (1 << Map::kIsAccessCheckNeeded); |
125 | 125 |
126 // Bail out if the receiver has a named interceptor or requires access checks. | 126 // Bail out if the receiver has a named interceptor or requires access checks. |
127 __ test_b(FieldOperand(r0, Map::kBitFieldOffset), | 127 __ test_b(FieldOperand(r0, Map::kBitFieldOffset), |
128 kInterceptorOrAccessCheckNeededMask); | 128 kInterceptorOrAccessCheckNeededMask); |
129 __ j(not_zero, miss_label); | 129 __ j(not_zero, miss_label); |
130 | 130 |
131 // Check that receiver is a JSObject. | 131 // Check that receiver is a JSObject. |
132 __ CmpInstanceType(r0, FIRST_JS_OBJECT_TYPE); | 132 __ CmpInstanceType(r0, FIRST_SPEC_OBJECT_TYPE); |
133 __ j(below, miss_label); | 133 __ j(below, miss_label); |
134 | 134 |
135 // Load properties array. | 135 // Load properties array. |
136 Register properties = r0; | 136 Register properties = r0; |
137 __ mov(properties, FieldOperand(receiver, JSObject::kPropertiesOffset)); | 137 __ mov(properties, FieldOperand(receiver, JSObject::kPropertiesOffset)); |
138 | 138 |
139 // Check that the properties array is a dictionary. | 139 // Check that the properties array is a dictionary. |
140 __ cmp(FieldOperand(properties, HeapObject::kMapOffset), | 140 __ cmp(FieldOperand(properties, HeapObject::kMapOffset), |
141 Immediate(masm->isolate()->factory()->hash_table_map())); | 141 Immediate(masm->isolate()->factory()->hash_table_map())); |
142 __ j(not_equal, miss_label); | 142 __ j(not_equal, miss_label); |
(...skipping 3724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3867 masm->isolate()->builtins()->KeyedStoreIC_MissForceGeneric(); | 3867 masm->isolate()->builtins()->KeyedStoreIC_MissForceGeneric(); |
3868 __ jmp(ic_force_generic, RelocInfo::CODE_TARGET); | 3868 __ jmp(ic_force_generic, RelocInfo::CODE_TARGET); |
3869 } | 3869 } |
3870 | 3870 |
3871 | 3871 |
3872 #undef __ | 3872 #undef __ |
3873 | 3873 |
3874 } } // namespace v8::internal | 3874 } } // namespace v8::internal |
3875 | 3875 |
3876 #endif // V8_TARGET_ARCH_IA32 | 3876 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |