decompiler  1.0.0
Classes | Public Types | Public Member Functions | Private Member Functions | Private Attributes | List of all members
CommentSorter Class Reference

A class for sorting comments into and within basic blocks. More...

#include <comment.hh>

Classes

struct  Subsort
 The sorting key for placing a Comment within a specific basic block. More...
 

Public Types

enum  { header_basic = 0, header_unplaced = 1 }
 

Public Member Functions

 CommentSorter (void)
 Constructor.
 
void setupFunctionList (uint4 tp, const Funcdata *fd, const CommentDatabase &db, bool displayUnplaced)
 Collect and sort comments specific to the given function. More...
 
void setupBlockList (const FlowBlock *bl)
 Prepare to walk comments from a single basic block. More...
 
void setupOpList (const PcodeOp *op)
 Establish a p-code landmark within the current set of comments. More...
 
void setupHeader (uint4 headerType)
 Prepare to walk comments in the header. More...
 
bool hasNext (void) const
 Return true if there are more comments to emit in the current set.
 
CommentgetNext (void) const
 Advance to the next comment.
 

Private Member Functions

bool findPosition (Subsort &subsort, Comment *comm, const Funcdata *fd)
 Establish sorting key for a Comment. More...
 

Private Attributes

map< Subsort, Comment * > commmap
 Comments for the current function, sorted by block.
 
map< Subsort, Comment * >::const_iterator start
 Iterator to current comment being walked.
 
map< Subsort, Comment * >::const_iterator stop
 Last comment in current set being walked.
 
map< Subsort, Comment * >::const_iterator opstop
 Statement landmark within current set of comments.
 
bool displayUnplacedComments
 True if unplaced comments should be displayed (in the header)
 

Detailed Description

A class for sorting comments into and within basic blocks.

The decompiler endeavors to display comments within the flow of the source code statements it generates. Comments should be placed at or near the statement that encompasses the address of the original instruction to which the comment is attached. This is complicated by the fact that instructions may get removed and transformed during decompilation and even whole basic blocks may get removed.

This class sorts comments into the basic block that contains it. As statements are emitted, comments can get picked up, in the correct order, even if there is no longer a specific p-code operation at the comment's address. The decompiler maintains information about basic blocks that have been entirely removed, in which case, the user can elect to not display the corresponding comments.

This class also acts as state for walking comments within a specific basic block or within the header.

Member Enumeration Documentation

anonymous enum
Enumerator
header_basic 

Basic header comments.

header_unplaced 

Comment that can't be placed in code flow.

Member Function Documentation

bool CommentSorter::findPosition ( Subsort subsort,
Comment comm,
const Funcdata fd 
)
private

Establish sorting key for a Comment.

Figure out position of given Comment and initialize its key.

Parameters
subsortis a reference to the key to be initialized
commis the given Comment
fdis the function owning the Comment
Returns
true if the Comment could be positioned at all

References Funcdata::beginOp(), Funcdata::beginOpAll(), BlockBasic::contains(), Funcdata::endOpAll(), Comment::getAddr(), PcodeOp::getAddr(), Funcdata::getAddress(), FlowBlock::getIndex(), SeqNum::getOrder(), PcodeOp::getParent(), PcodeOp::getSeqNum(), Comment::getType(), Comment::header, CommentSorter::Subsort::setBlock(), CommentSorter::Subsort::setHeader(), and Comment::warningheader.

void CommentSorter::setupBlockList ( const FlowBlock bl)

Prepare to walk comments from a single basic block.

Find iterators that bound everything in the basic block

Parameters
blis the basic block

References FlowBlock::getIndex(), CommentSorter::Subsort::index, CommentSorter::Subsort::order, and CommentSorter::Subsort::pos.

Referenced by PrintC::emitBlockBasic().

void CommentSorter::setupFunctionList ( uint4  tp,
const Funcdata fd,
const CommentDatabase db,
bool  displayUnplaced 
)

Collect and sort comments specific to the given function.

Only keep comments matching one of a specific set of properties

Parameters
tpis the set of properties (may be zero)
fdis the given function
dbis the container of comments to collect from
displayUnplacedis true if unplaced comments should be displayed in the header

References CommentDatabase::beginComment(), CommentDatabase::endComment(), Funcdata::getAddress(), and CommentSorter::Subsort::pos.

Referenced by PrintC::docFunction().

void CommentSorter::setupHeader ( uint4  headerType)

Prepare to walk comments in the header.

Header comments are grouped together. Set up iterators.

Parameters
headerTypeselects either header_basic or header_unplaced comments

References CommentSorter::Subsort::index, CommentSorter::Subsort::order, and CommentSorter::Subsort::pos.

Referenced by PrintC::emitCommentFuncHeader().

void CommentSorter::setupOpList ( const PcodeOp op)

Establish a p-code landmark within the current set of comments.

This will generally get called with the root p-code op of a statement being emitted by the decompiler. This establishes a key value within the basic block, so it is known where to stop emitting comments within the block for emitting the statement.

Parameters
opis the p-code representing the root of a statement

References FlowBlock::getIndex(), SeqNum::getOrder(), PcodeOp::getParent(), PcodeOp::getSeqNum(), CommentSorter::Subsort::index, CommentSorter::Subsort::order, and CommentSorter::Subsort::pos.

Referenced by PrintC::emitCommentGroup().


The documentation for this class was generated from the following files: