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 1250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1261 // space for nested functions that don't need literals cloning. If | 1261 // space for nested functions that don't need literals cloning. If |
1262 // we're running with the --always-opt or the --prepare-always-opt | 1262 // we're running with the --always-opt or the --prepare-always-opt |
1263 // flag, we need to use the runtime function so that the new function | 1263 // flag, we need to use the runtime function so that the new function |
1264 // we are creating here gets a chance to have its code optimized and | 1264 // we are creating here gets a chance to have its code optimized and |
1265 // doesn't just get a copy of the existing unoptimized code. | 1265 // doesn't just get a copy of the existing unoptimized code. |
1266 if (!FLAG_always_opt && | 1266 if (!FLAG_always_opt && |
1267 !FLAG_prepare_always_opt && | 1267 !FLAG_prepare_always_opt && |
1268 !pretenure && | 1268 !pretenure && |
1269 scope()->is_function_scope() && | 1269 scope()->is_function_scope() && |
1270 info->num_literals() == 0) { | 1270 info->num_literals() == 0) { |
1271 FastNewClosureStub stub(info->language_mode()); | 1271 FastNewClosureStub stub(info->language_mode(), info->is_generator()); |
1272 __ mov(r0, Operand(info)); | 1272 __ mov(r0, Operand(info)); |
1273 __ push(r0); | 1273 __ push(r0); |
1274 __ CallStub(&stub); | 1274 __ CallStub(&stub); |
1275 } else { | 1275 } else { |
1276 __ mov(r0, Operand(info)); | 1276 __ mov(r0, Operand(info)); |
1277 __ LoadRoot(r1, pretenure ? Heap::kTrueValueRootIndex | 1277 __ LoadRoot(r1, pretenure ? Heap::kTrueValueRootIndex |
1278 : Heap::kFalseValueRootIndex); | 1278 : Heap::kFalseValueRootIndex); |
1279 __ Push(cp, r0, r1); | 1279 __ Push(cp, r0, r1); |
1280 __ CallRuntime(Runtime::kNewClosure, 3); | 1280 __ CallRuntime(Runtime::kNewClosure, 3); |
1281 } | 1281 } |
(...skipping 3298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4580 *context_length = 0; | 4580 *context_length = 0; |
4581 return previous_; | 4581 return previous_; |
4582 } | 4582 } |
4583 | 4583 |
4584 | 4584 |
4585 #undef __ | 4585 #undef __ |
4586 | 4586 |
4587 } } // namespace v8::internal | 4587 } } // namespace v8::internal |
4588 | 4588 |
4589 #endif // V8_TARGET_ARCH_ARM | 4589 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |