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 2391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2402 LoadTransitionedArrayMapConditional(FAST_SMI_ELEMENTS, | 2402 LoadTransitionedArrayMapConditional(FAST_SMI_ELEMENTS, |
2403 FAST_HOLEY_SMI_ELEMENTS, | 2403 FAST_HOLEY_SMI_ELEMENTS, |
2404 map_out, | 2404 map_out, |
2405 scratch, | 2405 scratch, |
2406 &done); | 2406 &done); |
2407 } | 2407 } |
2408 bind(&done); | 2408 bind(&done); |
2409 } | 2409 } |
2410 | 2410 |
2411 | 2411 |
| 2412 void MacroAssembler::LoadGlobalContext(Register global_context) { |
| 2413 // Load the global or builtins object from the current context. |
| 2414 mov(global_context, |
| 2415 Operand(esi, Context::SlotOffset(Context::GLOBAL_OBJECT_INDEX))); |
| 2416 // Load the native context from the global or builtins object. |
| 2417 mov(global_context, |
| 2418 FieldOperand(global_context, GlobalObject::kNativeContextOffset)); |
| 2419 } |
| 2420 |
| 2421 |
2412 void MacroAssembler::LoadGlobalFunction(int index, Register function) { | 2422 void MacroAssembler::LoadGlobalFunction(int index, Register function) { |
2413 // Load the global or builtins object from the current context. | 2423 LoadGlobalContext(function); |
2414 mov(function, | |
2415 Operand(esi, Context::SlotOffset(Context::GLOBAL_OBJECT_INDEX))); | |
2416 // Load the native context from the global or builtins object. | |
2417 mov(function, FieldOperand(function, GlobalObject::kNativeContextOffset)); | |
2418 // Load the function from the native context. | 2424 // Load the function from the native context. |
2419 mov(function, Operand(function, Context::SlotOffset(index))); | 2425 mov(function, Operand(function, Context::SlotOffset(index))); |
2420 } | 2426 } |
2421 | 2427 |
2422 | 2428 |
2423 void MacroAssembler::LoadGlobalFunctionInitialMap(Register function, | 2429 void MacroAssembler::LoadGlobalFunctionInitialMap(Register function, |
2424 Register map) { | 2430 Register map) { |
2425 // Load the initial map. The global functions all have initial maps. | 2431 // Load the initial map. The global functions all have initial maps. |
2426 mov(map, FieldOperand(function, JSFunction::kPrototypeOrInitialMapOffset)); | 2432 mov(map, FieldOperand(function, JSFunction::kPrototypeOrInitialMapOffset)); |
2427 if (emit_debug_code()) { | 2433 if (emit_debug_code()) { |
(...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3081 j(greater, &no_info_available); | 3087 j(greater, &no_info_available); |
3082 cmp(MemOperand(scratch_reg, -AllocationSiteInfo::kSize), | 3088 cmp(MemOperand(scratch_reg, -AllocationSiteInfo::kSize), |
3083 Immediate(Handle<Map>(isolate()->heap()->allocation_site_info_map()))); | 3089 Immediate(Handle<Map>(isolate()->heap()->allocation_site_info_map()))); |
3084 bind(&no_info_available); | 3090 bind(&no_info_available); |
3085 } | 3091 } |
3086 | 3092 |
3087 | 3093 |
3088 } } // namespace v8::internal | 3094 } } // namespace v8::internal |
3089 | 3095 |
3090 #endif // V8_TARGET_ARCH_IA32 | 3096 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |