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

Unified Diff: src/objects.cc

Issue 2744383002: Revert of [wasm] Initial signal handler (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 | « src/objects.h ('k') | src/objects-inl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index e408b290d6a65ea3b8383e1a983d78de57619d70..4e67e0f2438a5f599945c4fc1fd3d03f72305b49 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -13829,12 +13829,6 @@
void Code::Relocate(intptr_t delta) {
- if (trap_handler::UseTrapHandler() && is_wasm_code()) {
- const int index = trap_handler_index()->value();
- if (index >= 0) {
- trap_handler::UpdateHandlerDataCodePointer(index, instruction_start());
- }
- }
for (RelocIterator it(this, RelocInfo::kApplyMask); !it.done(); it.next()) {
it.rinfo()->apply(delta);
}
« no previous file with comments | « src/objects.h ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698