2018-10-24 18:24:11 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Ales Pergl <alpergl@microsoft.com>
|
|
|
|
Date: Mon, 22 Oct 2018 10:47:12 -0700
|
|
|
|
Subject: dcheck.patch
|
|
|
|
|
2019-12-13 17:18:45 +00:00
|
|
|
https://github.com/auchenberg/volkswagen
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2019-05-21 17:05:21 +00:00
|
|
|
diff --git a/src/api/api.cc b/src/api/api.cc
|
2020-08-15 01:51:28 +00:00
|
|
|
index acb9b0ed3dfbb5286a9990ffaa7197045ea692fe..99c4437feb2fdf6136249a71d036c1eb40f6e1ae 100644
|
2019-05-21 17:05:21 +00:00
|
|
|
--- a/src/api/api.cc
|
|
|
|
+++ b/src/api/api.cc
|
2020-08-15 01:51:28 +00:00
|
|
|
@@ -8733,7 +8733,7 @@ void Isolate::SetPromiseRejectCallback(PromiseRejectCallback callback) {
|
2019-05-21 17:05:21 +00:00
|
|
|
}
|
2018-09-14 05:02:16 +00:00
|
|
|
|
2020-03-03 21:35:05 +00:00
|
|
|
void Isolate::PerformMicrotaskCheckpoint() {
|
2018-09-14 05:02:16 +00:00
|
|
|
- DCHECK_NE(MicrotasksPolicy::kScoped, GetMicrotasksPolicy());
|
2020-03-03 21:35:05 +00:00
|
|
|
+ //DCHECK_NE(MicrotasksPolicy::kScoped, GetMicrotasksPolicy());
|
2019-01-24 09:42:21 +00:00
|
|
|
i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
|
2020-03-03 21:35:05 +00:00
|
|
|
isolate->default_microtask_queue()->PerformCheckpoint(this);
|
2018-09-14 05:02:16 +00:00
|
|
|
}
|
|
|
|
diff --git a/src/heap/heap.cc b/src/heap/heap.cc
|
2020-08-15 01:51:28 +00:00
|
|
|
index ec30f2aef4fbddcb720b9930ac19ae1dc6e01e80..49341b2997af3125e3ff17e7fa4de65a1bc9073f 100644
|
2018-09-14 05:02:16 +00:00
|
|
|
--- a/src/heap/heap.cc
|
|
|
|
+++ b/src/heap/heap.cc
|
2020-08-15 01:51:28 +00:00
|
|
|
@@ -5609,9 +5609,9 @@ void Heap::TearDown() {
|
2018-09-14 05:02:16 +00:00
|
|
|
void Heap::AddGCPrologueCallback(v8::Isolate::GCCallbackWithData callback,
|
|
|
|
GCType gc_type, void* data) {
|
|
|
|
DCHECK_NOT_NULL(callback);
|
|
|
|
- DCHECK(gc_prologue_callbacks_.end() ==
|
|
|
|
- std::find(gc_prologue_callbacks_.begin(), gc_prologue_callbacks_.end(),
|
|
|
|
- GCCallbackTuple(callback, gc_type, data)));
|
|
|
|
+// DCHECK(gc_prologue_callbacks_.end() ==
|
|
|
|
+// std::find(gc_prologue_callbacks_.begin(), gc_prologue_callbacks_.end(),
|
|
|
|
+// GCCallbackTuple(callback, gc_type, data)));
|
|
|
|
gc_prologue_callbacks_.emplace_back(callback, gc_type, data);
|
|
|
|
}
|
|
|
|
|