Class NewFunctionStackAnalysisCmd

java.lang.Object
ghidra.framework.cmd.BackgroundCommand
ghidra.app.cmd.function.NewFunctionStackAnalysisCmd
All Implemented Interfaces:
Command

public class NewFunctionStackAnalysisCmd extends BackgroundCommand
Command for analyzing the Stack; the command is run in the background. NOTE: referenced thunk-functions should be created prior to this command
  • Constructor Details

    • NewFunctionStackAnalysisCmd

      public NewFunctionStackAnalysisCmd(AddressSetView entries, boolean forceProcessing)
      Constructs a new command for analyzing the Stack.
      Parameters:
      entries - and address set indicating the entry points of functions that have stacks to be analyzed.
      forceProcessing - flag to force processing of stack references even if the stack has already been defined.
    • NewFunctionStackAnalysisCmd

      public NewFunctionStackAnalysisCmd(Address entry, boolean forceProcessing)
      Constructs a new command for analyzing the Stack.
      Parameters:
      entry - the entry point of the function that contains the stack to be analyzed.
      forceProcessing - flag to force processing of stack references even if the stack has already been defined.
    • NewFunctionStackAnalysisCmd

      public NewFunctionStackAnalysisCmd(AddressSetView entries, boolean doParameterAnalysis, boolean doLocalAnalysis, boolean forceProcessing)
  • Method Details