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
|
2022-02-25 18:17:35 +00:00
|
|
|
index e6797c92a52ab7805261ace2156a39fe368bd747..1aed7cad8b7dfff9fc7b1f93040c3eda33693af3 100644
|
2019-05-21 17:05:21 +00:00
|
|
|
--- a/src/api/api.cc
|
|
|
|
+++ b/src/api/api.cc
|
2022-02-25 18:17:35 +00:00
|
|
|
@@ -9097,7 +9097,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
|
2022-02-25 18:17:35 +00:00
|
|
|
index 8e4ad43c1957f4ed555327588c41d049824c1dc5..54cf3b263ac5654b370897b951aa0be8f8d566e5 100644
|
2018-09-14 05:02:16 +00:00
|
|
|
--- a/src/heap/heap.cc
|
|
|
|
+++ b/src/heap/heap.cc
|
2022-02-25 18:17:35 +00:00
|
|
|
@@ -6235,9 +6235,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);
|
|
|
|
}
|
|
|
|
|