Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: src/execution.cc

Issue 203223013: Introduce API to trigger exception on JS execution. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: addressed comment Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 // Entering JavaScript. 78 // Entering JavaScript.
79 VMState<JS> state(isolate); 79 VMState<JS> state(isolate);
80 CHECK(AllowJavascriptExecution::IsAllowed(isolate)); 80 CHECK(AllowJavascriptExecution::IsAllowed(isolate));
81 if (!ThrowOnJavascriptExecution::IsAllowed(isolate)) {
82 isolate->ThrowIllegalOperation();
83 *has_pending_exception = true;
84 isolate->ReportPendingMessages();
85 return Handle<Object>();
86 }
81 87
82 // Placeholder for return value. 88 // Placeholder for return value.
83 MaybeObject* value = reinterpret_cast<Object*>(kZapValue); 89 MaybeObject* value = reinterpret_cast<Object*>(kZapValue);
84 90
85 typedef Object* (*JSEntryFunction)(byte* entry, 91 typedef Object* (*JSEntryFunction)(byte* entry,
86 Object* function, 92 Object* function,
87 Object* receiver, 93 Object* receiver,
88 int argc, 94 int argc,
89 Object*** args); 95 Object*** args);
90 96
(...skipping 959 matching lines...) Expand 10 before | Expand all | Expand 10 after
1050 ASSERT(isolate->concurrent_recompilation_enabled()); 1056 ASSERT(isolate->concurrent_recompilation_enabled());
1051 stack_guard->Continue(INSTALL_CODE); 1057 stack_guard->Continue(INSTALL_CODE);
1052 isolate->optimizing_compiler_thread()->InstallOptimizedFunctions(); 1058 isolate->optimizing_compiler_thread()->InstallOptimizedFunctions();
1053 } 1059 }
1054 isolate->runtime_profiler()->OptimizeNow(); 1060 isolate->runtime_profiler()->OptimizeNow();
1055 return isolate->heap()->undefined_value(); 1061 return isolate->heap()->undefined_value();
1056 } 1062 }
1057 1063
1058 1064
1059 } } // namespace v8::internal 1065 } } // namespace v8::internal
OLDNEW
« include/v8.h ('K') | « src/assert-scope.h ('k') | test/cctest/test-api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698