OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
677 Handle<JSArray>::cast(NewJSObject(Top::array_function(), pretenure)); | 677 Handle<JSArray>::cast(NewJSObject(Top::array_function(), pretenure)); |
678 result->SetContent(*elements); | 678 result->SetContent(*elements); |
679 return result; | 679 return result; |
680 } | 680 } |
681 | 681 |
682 | 682 |
683 Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo( | 683 Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo( |
684 Handle<String> name, | 684 Handle<String> name, |
685 int number_of_literals, | 685 int number_of_literals, |
686 Handle<Code> code, | 686 Handle<Code> code, |
687 Handle<Object> scope_info) { | 687 Handle<SerializedScopeInfo> scope_info) { |
688 Handle<SharedFunctionInfo> shared = NewSharedFunctionInfo(name); | 688 Handle<SharedFunctionInfo> shared = NewSharedFunctionInfo(name); |
689 shared->set_code(*code); | 689 shared->set_code(*code); |
690 shared->set_scope_info(*scope_info); | 690 shared->set_scope_info(*scope_info); |
691 int literals_array_size = number_of_literals; | 691 int literals_array_size = number_of_literals; |
692 // If the function contains object, regexp or array literals, | 692 // If the function contains object, regexp or array literals, |
693 // allocate extra space for a literals array prefix containing the | 693 // allocate extra space for a literals array prefix containing the |
694 // context. | 694 // context. |
695 if (number_of_literals > 0) { | 695 if (number_of_literals > 0) { |
696 literals_array_size += JSFunction::kLiteralsPrefixSize; | 696 literals_array_size += JSFunction::kLiteralsPrefixSize; |
697 } | 697 } |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
994 Execution::ConfigureInstance(instance, | 994 Execution::ConfigureInstance(instance, |
995 instance_template, | 995 instance_template, |
996 pending_exception); | 996 pending_exception); |
997 } else { | 997 } else { |
998 *pending_exception = false; | 998 *pending_exception = false; |
999 } | 999 } |
1000 } | 1000 } |
1001 | 1001 |
1002 | 1002 |
1003 } } // namespace v8::internal | 1003 } } // namespace v8::internal |
OLD | NEW |