angr.analyses.forward_analysis.job_info

class angr.analyses.forward_analysis.job_info.JobInfo

Bases: Generic

Stores information of each job.

__init__(key, job)
Parameters:
  • key (JobKey)

  • job (JobType)

property job: JobType

Get the latest available job.

Returns:

The latest available job.

property merged_jobs
property widened_jobs
add_job(job, merged=False, widened=False)

Appended a new job to this JobInfo node. :type job: :param job: The new job to append. :type bool merged: :param bool merged: Whether it is a merged job or not. :type bool widened: :param bool widened: Whether it is a widened job or not.