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 2267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2278 | 2278 |
2279 __ bind(&done); | 2279 __ bind(&done); |
2280 context()->Plug(result_register()); | 2280 context()->Plug(result_register()); |
2281 } | 2281 } |
2282 | 2282 |
2283 | 2283 |
2284 void FullCodeGenerator::EmitCreateIteratorResult(bool done) { | 2284 void FullCodeGenerator::EmitCreateIteratorResult(bool done) { |
2285 Label gc_required; | 2285 Label gc_required; |
2286 Label allocated; | 2286 Label allocated; |
2287 | 2287 |
2288 Handle<Map> map(isolate()->native_context()->iterator_result_map()); | 2288 Handle<Map> map(isolate()->native_context()->generator_result_map()); |
2289 | 2289 |
2290 __ Allocate(map->instance_size(), v0, a2, a3, &gc_required, TAG_OBJECT); | 2290 __ Allocate(map->instance_size(), v0, a2, a3, &gc_required, TAG_OBJECT); |
2291 __ jmp(&allocated); | 2291 __ jmp(&allocated); |
2292 | 2292 |
2293 __ bind(&gc_required); | 2293 __ bind(&gc_required); |
2294 __ Push(Smi::FromInt(map->instance_size())); | 2294 __ Push(Smi::FromInt(map->instance_size())); |
2295 __ CallRuntime(Runtime::kHiddenAllocateInNewSpace, 1); | 2295 __ CallRuntime(Runtime::kHiddenAllocateInNewSpace, 1); |
2296 __ lw(context_register(), | 2296 __ lw(context_register(), |
2297 MemOperand(fp, StandardFrameConstants::kContextOffset)); | 2297 MemOperand(fp, StandardFrameConstants::kContextOffset)); |
2298 | 2298 |
(...skipping 2663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4962 Assembler::target_address_at(pc_immediate_load_address)) == | 4962 Assembler::target_address_at(pc_immediate_load_address)) == |
4963 reinterpret_cast<uint32_t>( | 4963 reinterpret_cast<uint32_t>( |
4964 isolate->builtins()->OsrAfterStackCheck()->entry())); | 4964 isolate->builtins()->OsrAfterStackCheck()->entry())); |
4965 return OSR_AFTER_STACK_CHECK; | 4965 return OSR_AFTER_STACK_CHECK; |
4966 } | 4966 } |
4967 | 4967 |
4968 | 4968 |
4969 } } // namespace v8::internal | 4969 } } // namespace v8::internal |
4970 | 4970 |
4971 #endif // V8_TARGET_ARCH_MIPS | 4971 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |