Add add_call_site + pass SourceLoc in RelocSink#1460
Merged
bnjbvr merged 2 commits intobytecodealliance:masterfrom Apr 7, 2020
Merged
Add add_call_site + pass SourceLoc in RelocSink#1460bnjbvr merged 2 commits intobytecodealliance:masterfrom
bnjbvr merged 2 commits intobytecodealliance:masterfrom
Conversation
Subscribe to Label ActionThis issue or pull request has been labeled: "cranelift" Users Subscribed to "cranelift"To subscribe or unsubscribe from this label, edit the |
Member
Author
|
In cfallin#4 (comment), @cfallin suggests to put a default empty impl for |
This allows keeping track of indirect call sites, for instance.
xeonchen
pushed a commit
to xeonchen/gecko
that referenced
this pull request
Apr 7, 2020
…ions; r=rhunt This goes hand in hand with bytecodealliance/wasmtime#1460, which will need to be merged first. This removes most of the Spidermonkey-specific machinery to collect relocations. The only remaining place is for stack-maps, which will be handled later. Differential Revision: https://phabricator.services.mozilla.com/D69394
moz-v2v-gh
pushed a commit
to mozilla/gecko-dev
that referenced
this pull request
Apr 7, 2020
…ions; r=rhunt This goes hand in hand with bytecodealliance/wasmtime#1460, which will need to be merged first. This removes most of the Spidermonkey-specific machinery to collect relocations. The only remaining place is for stack-maps, which will be handled later. Differential Revision: https://phabricator.services.mozilla.com/D69394 --HG-- extra : moz-landing-system : lando
xeonchen
pushed a commit
to xeonchen/gecko
that referenced
this pull request
Apr 10, 2020
…ions; r=rhunt This goes hand in hand with bytecodealliance/wasmtime#1460, which will need to be merged first. This removes most of the Spidermonkey-specific machinery to collect relocations. The only remaining place is for stack-maps, which will be handled later. Differential Revision: https://phabricator.services.mozilla.com/D69394
moz-v2v-gh
pushed a commit
to mozilla/gecko-dev
that referenced
this pull request
Apr 10, 2020
…ions; r=rhunt This goes hand in hand with bytecodealliance/wasmtime#1460, which will need to be merged first. This removes most of the Spidermonkey-specific machinery to collect relocations. The only remaining place is for stack-maps, which will be handled later. Differential Revision: https://phabricator.services.mozilla.com/D69394 --HG-- extra : moz-landing-system : lando
bhearsum
pushed a commit
to mozilla-releng/staging-firefox
that referenced
this pull request
May 1, 2025
…ions; r=rhunt This goes hand in hand with bytecodealliance/wasmtime#1460, which will need to be merged first. This removes most of the Spidermonkey-specific machinery to collect relocations. The only remaining place is for stack-maps, which will be handled later. Differential Revision: https://phabricator.services.mozilla.com/D69394
bhearsum
pushed a commit
to mozilla-releng/staging-firefox
that referenced
this pull request
May 1, 2025
…ions; r=rhunt This goes hand in hand with bytecodealliance/wasmtime#1460, which will need to be merged first. This removes most of the Spidermonkey-specific machinery to collect relocations. The only remaining place is for stack-maps, which will be handled later. Differential Revision: https://phabricator.services.mozilla.com/D69394
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This implements the two first bullet-points of #1453 (motivation of this PR is explained there). This is a separate refactoring that'll make the integration of the new backend easier in Spidermonkey.