| 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 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 } | 478 } |
| 479 | 479 |
| 480 Handle<SharedFunctionInfo> NewSharedFunctionInfo( | 480 Handle<SharedFunctionInfo> NewSharedFunctionInfo( |
| 481 Handle<String> name, | 481 Handle<String> name, |
| 482 int number_of_literals, | 482 int number_of_literals, |
| 483 bool is_generator, | 483 bool is_generator, |
| 484 Handle<Code> code, | 484 Handle<Code> code, |
| 485 Handle<ScopeInfo> scope_info); | 485 Handle<ScopeInfo> scope_info); |
| 486 Handle<SharedFunctionInfo> NewSharedFunctionInfo(Handle<String> name); | 486 Handle<SharedFunctionInfo> NewSharedFunctionInfo(Handle<String> name); |
| 487 | 487 |
| 488 Handle<OptimizedCodeEntry> NewOptimizedCodeEntry( | |
| 489 Handle<Context> native_context, | |
| 490 Handle<JSFunction> function, | |
| 491 Handle<Code> code, | |
| 492 Handle<FixedArray> literals); | |
| 493 | |
| 494 Handle<JSMessageObject> NewJSMessageObject( | 488 Handle<JSMessageObject> NewJSMessageObject( |
| 495 Handle<String> type, | 489 Handle<String> type, |
| 496 Handle<JSArray> arguments, | 490 Handle<JSArray> arguments, |
| 497 int start_position, | 491 int start_position, |
| 498 int end_position, | 492 int end_position, |
| 499 Handle<Object> script, | 493 Handle<Object> script, |
| 500 Handle<Object> stack_trace, | 494 Handle<Object> stack_trace, |
| 501 Handle<Object> stack_frames); | 495 Handle<Object> stack_frames); |
| 502 | 496 |
| 503 Handle<SeededNumberDictionary> DictionaryAtNumberPut( | 497 Handle<SeededNumberDictionary> DictionaryAtNumberPut( |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 647 } | 641 } |
| 648 | 642 |
| 649 private: | 643 private: |
| 650 Isolate* isolate_; | 644 Isolate* isolate_; |
| 651 }; | 645 }; |
| 652 | 646 |
| 653 | 647 |
| 654 } } // namespace v8::internal | 648 } } // namespace v8::internal |
| 655 | 649 |
| 656 #endif // V8_FACTORY_H_ | 650 #endif // V8_FACTORY_H_ |
| OLD | NEW |