Commit 48d66504 authored by Michael Starzinger's avatar Michael Starzinger Committed by Commit Bot

[wasm] Make {RelocInfo::WASM_CALL} shareable.

R=clemensh@chromium.org

Change-Id: I89339f2d9035d1882e8d29a9119f1bc2d68927e5
Reviewed-on: https://chromium-review.googlesource.com/1105759Reviewed-by: 's avatarClemens Hammacher <clemensh@chromium.org>
Commit-Queue: Michael Starzinger <mstarzinger@chromium.org>
Cr-Commit-Position: refs/heads/master@{#53879}
parent a77b4e68
...@@ -431,8 +431,8 @@ class RelocInfo { ...@@ -431,8 +431,8 @@ class RelocInfo {
EMBEDDED_OBJECT, // LAST_GCED_ENUM EMBEDDED_OBJECT, // LAST_GCED_ENUM
JS_TO_WASM_CALL, JS_TO_WASM_CALL,
WASM_CALL, WASM_CALL, // FIRST_SHAREABLE_RELOC_MODE
WASM_STUB_CALL, // FIRST_SHAREABLE_RELOC_MODE WASM_STUB_CALL,
RUNTIME_ENTRY, RUNTIME_ENTRY,
COMMENT, COMMENT,
...@@ -471,7 +471,7 @@ class RelocInfo { ...@@ -471,7 +471,7 @@ class RelocInfo {
FIRST_REAL_RELOC_MODE = CODE_TARGET, FIRST_REAL_RELOC_MODE = CODE_TARGET,
LAST_REAL_RELOC_MODE = VENEER_POOL, LAST_REAL_RELOC_MODE = VENEER_POOL,
LAST_GCED_ENUM = EMBEDDED_OBJECT, LAST_GCED_ENUM = EMBEDDED_OBJECT,
FIRST_SHAREABLE_RELOC_MODE = WASM_STUB_CALL, FIRST_SHAREABLE_RELOC_MODE = WASM_CALL,
}; };
STATIC_ASSERT(NUMBER_OF_MODES <= kBitsPerInt); STATIC_ASSERT(NUMBER_OF_MODES <= kBitsPerInt);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment