| 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 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 | 436 |
| 437 | 437 |
| 438 Handle<Struct> Factory::NewStruct(InstanceType type) { | 438 Handle<Struct> Factory::NewStruct(InstanceType type) { |
| 439 CALL_HEAP_FUNCTION( | 439 CALL_HEAP_FUNCTION( |
| 440 isolate(), | 440 isolate(), |
| 441 isolate()->heap()->AllocateStruct(type), | 441 isolate()->heap()->AllocateStruct(type), |
| 442 Struct); | 442 Struct); |
| 443 } | 443 } |
| 444 | 444 |
| 445 | 445 |
| 446 Handle<AliasedArgumentsEntry> Factory::NewAliasedArgumentsEntry( |
| 447 int aliased_context_slot) { |
| 448 Handle<AliasedArgumentsEntry> entry = Handle<AliasedArgumentsEntry>::cast( |
| 449 NewStruct(ALIASED_ARGUMENTS_ENTRY_TYPE)); |
| 450 entry->set_aliased_context_slot(aliased_context_slot); |
| 451 return entry; |
| 452 } |
| 453 |
| 454 |
| 446 Handle<DeclaredAccessorDescriptor> Factory::NewDeclaredAccessorDescriptor() { | 455 Handle<DeclaredAccessorDescriptor> Factory::NewDeclaredAccessorDescriptor() { |
| 447 return Handle<DeclaredAccessorDescriptor>::cast( | 456 return Handle<DeclaredAccessorDescriptor>::cast( |
| 448 NewStruct(DECLARED_ACCESSOR_DESCRIPTOR_TYPE)); | 457 NewStruct(DECLARED_ACCESSOR_DESCRIPTOR_TYPE)); |
| 449 } | 458 } |
| 450 | 459 |
| 451 | 460 |
| 452 Handle<DeclaredAccessorInfo> Factory::NewDeclaredAccessorInfo() { | 461 Handle<DeclaredAccessorInfo> Factory::NewDeclaredAccessorInfo() { |
| 453 Handle<DeclaredAccessorInfo> info = | 462 Handle<DeclaredAccessorInfo> info = |
| 454 Handle<DeclaredAccessorInfo>::cast( | 463 Handle<DeclaredAccessorInfo>::cast( |
| 455 NewStruct(DECLARED_ACCESSOR_INFO_TYPE)); | 464 NewStruct(DECLARED_ACCESSOR_INFO_TYPE)); |
| (...skipping 1323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1779 return Handle<Object>::null(); | 1788 return Handle<Object>::null(); |
| 1780 } | 1789 } |
| 1781 | 1790 |
| 1782 | 1791 |
| 1783 Handle<Object> Factory::ToBoolean(bool value) { | 1792 Handle<Object> Factory::ToBoolean(bool value) { |
| 1784 return value ? true_value() : false_value(); | 1793 return value ? true_value() : false_value(); |
| 1785 } | 1794 } |
| 1786 | 1795 |
| 1787 | 1796 |
| 1788 } } // namespace v8::internal | 1797 } } // namespace v8::internal |
| OLD | NEW |