Merge remote-tracking branch 'origin/Ghidra_11.3'

This commit is contained in:
Ryan Kurtz 2025-01-27 10:23:27 -05:00
commit 21893b10f6
3 changed files with 6 additions and 8 deletions

View file

@ -36,16 +36,16 @@ public class InputContextScraper {
}
/**
* Get set of all valid input contexts that affect constructor selection.
* {@return the set of all valid input contexts that affect constructor selection.}
*
* <ol>
* <li>Start with mask of the language's default context
* <li>Start with mask of the language's default context</li>
* <li>Scrape language for <code>globalset</code> context variables and OR their masks into our
* mask
* mask</li>
* <li>Flip bits of our mask to get mask of context variables not used as input
* (local/transient)
* (local/transient)</li>
* <li>Check constructor constraints and use mask to get values of relevant input context
* variables
* variables</li>
* </ol>
*/
public Set<AssemblyPatternBlock> scrapeInputContexts() {

View file

@ -36,8 +36,6 @@ public class HighCodeSymbol extends HighSymbol {
/**
* Construct with a backing CodeSymbol. An attempt is made to also find a backing Data object.
* @param sym is the backing CodeSymbol
* @param dataType is the (possibly distinct) data-type associated with the new HighSymbol
* @param sz is the storage size, in bytes, of the symbol
* @param func is the decompiler function model owning the new HighSymbol
*/
public HighCodeSymbol(CodeSymbol sym, HighFunction func) {