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

Unified Diff: src/api.cc

Issue 2761293002: Correctly annotate v8::StackTrace and v8::StackFrame API methods (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/api.cc
diff --git a/src/api.cc b/src/api.cc
index c7ec5722e4f6e52c89fe8355cd4f9a130df9737e..753be0c99b6ce25482a7eca6aac396876666abbc 100644
--- a/src/api.cc
+++ b/src/api.cc
@@ -2841,7 +2841,7 @@ void Message::PrintCurrentStackTrace(Isolate* isolate, FILE* out) {
Local<StackFrame> StackTrace::GetFrame(uint32_t index) const {
i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate();
- ENTER_V8(isolate);
+ ENTER_V8_NO_SCRIPT_NO_EXCEPTION(isolate);
EscapableHandleScope scope(reinterpret_cast<Isolate*>(isolate));
auto self = Utils::OpenHandle(this);
auto obj = i::JSReceiver::GetElement(isolate, self, index).ToHandleChecked();
@@ -2865,8 +2865,7 @@ Local<StackTrace> StackTrace::CurrentStackTrace(
int frame_limit,
StackTraceOptions options) {
i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
- ENTER_V8(i_isolate);
- // TODO(dcarney): remove when ScriptDebugServer is fixed.
mmoroz 2017/03/21 13:12:58 Looks like dcarney@ is not at Google anymore. Shou
jochen (gone - plz use gerrit) 2017/03/22 09:59:06 yeah, eventually we should do that... however, we'
mmoroz 2017/03/22 11:55:43 Yeah, I didn't mean to simply delete others. Sorry
jochen (gone - plz use gerrit) 2017/03/22 12:45:33 great! I'd do that in separate CLs, however. in t
mmoroz 2017/03/22 13:34:17 Done.
+ ENTER_V8_NO_SCRIPT_NO_EXCEPTION(i_isolate);
options = static_cast<StackTraceOptions>(
static_cast<int>(options) | kExposeFramesAcrossSecurityOrigins);
mmoroz 2017/03/21 13:12:58 Why do we need to expose frames across security or
jochen (gone - plz use gerrit) 2017/03/22 09:59:06 when we expose a stack to javascript, e.g. via new
mmoroz 2017/03/22 11:55:43 Acknowledged.
i::Handle<i::JSArray> stackTrace =
@@ -2880,7 +2879,7 @@ Local<StackTrace> StackTrace::CurrentStackTrace(
static int getIntProperty(const StackFrame* f, const char* propertyName,
int defaultValue) {
i::Isolate* isolate = Utils::OpenHandle(f)->GetIsolate();
- ENTER_V8(isolate);
+ ENTER_V8_NO_SCRIPT_NO_EXCEPTION(isolate);
i::HandleScope scope(isolate);
i::Handle<i::JSObject> self = Utils::OpenHandle(f);
i::Handle<i::Object> obj =
@@ -2907,7 +2906,7 @@ int StackFrame::GetScriptId() const {
static Local<String> getStringProperty(const StackFrame* f,
const char* propertyName) {
i::Isolate* isolate = Utils::OpenHandle(f)->GetIsolate();
- ENTER_V8(isolate);
+ ENTER_V8_NO_SCRIPT_NO_EXCEPTION(isolate);
EscapableHandleScope scope(reinterpret_cast<Isolate*>(isolate));
i::Handle<i::JSObject> self = Utils::OpenHandle(f);
i::Handle<i::Object> obj =
@@ -2935,7 +2934,7 @@ Local<String> StackFrame::GetFunctionName() const {
static bool getBoolProperty(const StackFrame* f, const char* propertyName) {
i::Isolate* isolate = Utils::OpenHandle(f)->GetIsolate();
- ENTER_V8(isolate);
+ ENTER_V8_NO_SCRIPT_NO_EXCEPTION(isolate);
i::HandleScope scope(isolate);
i::Handle<i::JSObject> self = Utils::OpenHandle(f);
i::Handle<i::Object> obj =
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698