| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 | 68 |
| 69 | 69 |
| 70 static Handle<Object> Invoke(bool is_construct, | 70 static Handle<Object> Invoke(bool is_construct, |
| 71 Handle<JSFunction> function, | 71 Handle<JSFunction> function, |
| 72 Handle<Object> receiver, | 72 Handle<Object> receiver, |
| 73 int argc, | 73 int argc, |
| 74 Handle<Object> args[], | 74 Handle<Object> args[], |
| 75 bool* has_pending_exception) { | 75 bool* has_pending_exception) { |
| 76 Isolate* isolate = function->GetIsolate(); | 76 Isolate* isolate = function->GetIsolate(); |
| 77 | 77 |
| 78 // Generated code might allocate. |
| 79 ASSERT(AllowHeapAllocation::IsAllowed()); |
| 80 |
| 78 // Entering JavaScript. | 81 // Entering JavaScript. |
| 79 VMState<JS> state(isolate); | 82 VMState<JS> state(isolate); |
| 80 | 83 |
| 81 // Placeholder for return value. | 84 // Placeholder for return value. |
| 82 MaybeObject* value = reinterpret_cast<Object*>(kZapValue); | 85 MaybeObject* value = reinterpret_cast<Object*>(kZapValue); |
| 83 | 86 |
| 84 typedef Object* (*JSEntryFunction)(byte* entry, | 87 typedef Object* (*JSEntryFunction)(byte* entry, |
| 85 Object* function, | 88 Object* function, |
| 86 Object* receiver, | 89 Object* receiver, |
| 87 int argc, | 90 int argc, |
| (...skipping 961 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1049 ASSERT(isolate->concurrent_recompilation_enabled()); | 1052 ASSERT(isolate->concurrent_recompilation_enabled()); |
| 1050 stack_guard->Continue(INSTALL_CODE); | 1053 stack_guard->Continue(INSTALL_CODE); |
| 1051 isolate->optimizing_compiler_thread()->InstallOptimizedFunctions(); | 1054 isolate->optimizing_compiler_thread()->InstallOptimizedFunctions(); |
| 1052 } | 1055 } |
| 1053 isolate->runtime_profiler()->OptimizeNow(); | 1056 isolate->runtime_profiler()->OptimizeNow(); |
| 1054 return isolate->heap()->undefined_value(); | 1057 return isolate->heap()->undefined_value(); |
| 1055 } | 1058 } |
| 1056 | 1059 |
| 1057 | 1060 |
| 1058 } } // namespace v8::internal | 1061 } } // namespace v8::internal |
| OLD | NEW |