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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 } | 100 } |
101 | 101 |
102 // Make sure that the global object of the context we're about to | 102 // Make sure that the global object of the context we're about to |
103 // make the current one is indeed a global object. | 103 // make the current one is indeed a global object. |
104 ASSERT(function->context()->global_object()->IsGlobalObject()); | 104 ASSERT(function->context()->global_object()->IsGlobalObject()); |
105 | 105 |
106 { | 106 { |
107 // Save and restore context around invocation and block the | 107 // Save and restore context around invocation and block the |
108 // allocation of handles without explicit handle scopes. | 108 // allocation of handles without explicit handle scopes. |
109 SaveContext save(isolate); | 109 SaveContext save(isolate); |
110 NoHandleAllocation na(isolate); | 110 RequireNewHandleScope rnhs(isolate); |
111 JSEntryFunction stub_entry = FUNCTION_CAST<JSEntryFunction>(code->entry()); | 111 JSEntryFunction stub_entry = FUNCTION_CAST<JSEntryFunction>(code->entry()); |
112 | 112 |
113 // Call the function through the right JS entry stub. | 113 // Call the function through the right JS entry stub. |
114 byte* function_entry = function->code()->entry(); | 114 byte* function_entry = function->code()->entry(); |
115 JSFunction* func = *function; | 115 JSFunction* func = *function; |
116 Object* recv = *receiver; | 116 Object* recv = *receiver; |
117 Object*** argv = reinterpret_cast<Object***>(args); | 117 Object*** argv = reinterpret_cast<Object***>(args); |
118 value = | 118 value = |
119 CALL_GENERATED_CODE(stub_entry, function_entry, func, recv, argc, argv); | 119 CALL_GENERATED_CODE(stub_entry, function_entry, func, recv, argc, argv); |
120 } | 120 } |
(...skipping 800 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
921 } | 921 } |
922 if (stack_guard->IsFullDeopt()) { | 922 if (stack_guard->IsFullDeopt()) { |
923 stack_guard->Continue(FULL_DEOPT); | 923 stack_guard->Continue(FULL_DEOPT); |
924 Deoptimizer::DeoptimizeAll(isolate); | 924 Deoptimizer::DeoptimizeAll(isolate); |
925 } | 925 } |
926 return isolate->heap()->undefined_value(); | 926 return isolate->heap()->undefined_value(); |
927 } | 927 } |
928 | 928 |
929 | 929 |
930 } } // namespace v8::internal | 930 } } // namespace v8::internal |
OLD | NEW |