OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
444 | 444 |
445 | 445 |
446 Handle<Struct> Factory::NewStruct(InstanceType type) { | 446 Handle<Struct> Factory::NewStruct(InstanceType type) { |
447 CALL_HEAP_FUNCTION( | 447 CALL_HEAP_FUNCTION( |
448 isolate(), | 448 isolate(), |
449 isolate()->heap()->AllocateStruct(type), | 449 isolate()->heap()->AllocateStruct(type), |
450 Struct); | 450 Struct); |
451 } | 451 } |
452 | 452 |
453 | 453 |
| 454 Handle<AliasedArgumentsEntry> Factory::NewAliasedArgumentsEntry( |
| 455 int aliased_context_slot) { |
| 456 Handle<AliasedArgumentsEntry> entry = Handle<AliasedArgumentsEntry>::cast( |
| 457 NewStruct(ALIASED_ARGUMENTS_ENTRY_TYPE)); |
| 458 entry->set_aliased_context_slot(aliased_context_slot); |
| 459 return entry; |
| 460 } |
| 461 |
| 462 |
454 Handle<DeclaredAccessorDescriptor> Factory::NewDeclaredAccessorDescriptor() { | 463 Handle<DeclaredAccessorDescriptor> Factory::NewDeclaredAccessorDescriptor() { |
455 return Handle<DeclaredAccessorDescriptor>::cast( | 464 return Handle<DeclaredAccessorDescriptor>::cast( |
456 NewStruct(DECLARED_ACCESSOR_DESCRIPTOR_TYPE)); | 465 NewStruct(DECLARED_ACCESSOR_DESCRIPTOR_TYPE)); |
457 } | 466 } |
458 | 467 |
459 | 468 |
460 Handle<DeclaredAccessorInfo> Factory::NewDeclaredAccessorInfo() { | 469 Handle<DeclaredAccessorInfo> Factory::NewDeclaredAccessorInfo() { |
461 Handle<DeclaredAccessorInfo> info = | 470 Handle<DeclaredAccessorInfo> info = |
462 Handle<DeclaredAccessorInfo>::cast( | 471 Handle<DeclaredAccessorInfo>::cast( |
463 NewStruct(DECLARED_ACCESSOR_INFO_TYPE)); | 472 NewStruct(DECLARED_ACCESSOR_INFO_TYPE)); |
(...skipping 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1788 return Handle<Object>::null(); | 1797 return Handle<Object>::null(); |
1789 } | 1798 } |
1790 | 1799 |
1791 | 1800 |
1792 Handle<Object> Factory::ToBoolean(bool value) { | 1801 Handle<Object> Factory::ToBoolean(bool value) { |
1793 return value ? true_value() : false_value(); | 1802 return value ? true_value() : false_value(); |
1794 } | 1803 } |
1795 | 1804 |
1796 | 1805 |
1797 } } // namespace v8::internal | 1806 } } // namespace v8::internal |
OLD | NEW |