Home | History | Annotate | Download | only in pub

Lines Matching refs:IRSB

54    'IRSB').  Each code block typically represents from 1 to perhaps 50
56 Each IRSB contains three things:
58 value present in the IRSB
60 - a jump that exits from the end the IRSB
62 conditional exit statements that cause control to leave the IRSB
170 The IR is fully typed. For every IRSB (IR block) it is possible to
1928 the IRSB). Contains the address and length of the
2113 /* Conditional exit from the middle of an IRSB.
2186 "IRSB" stands for "IR Super Block".
2197 IRSB;
2199 /* Allocate a new, uninitialised IRSB */
2200 extern IRSB* emptyIRSB ( void );
2202 /* Deep-copy an IRSB */
2203 extern IRSB* deepCopyIRSB ( IRSB* );
2205 /* Deep-copy an IRSB, except for the statements list, which set to be
2207 extern IRSB* deepCopyIRSBExceptStmts ( IRSB* );
2209 /* Pretty-print an IRSB */
2210 extern void ppIRSB ( IRSB* );
2212 /* Append an IRStmt to an IRSB */
2213 extern void addStmtToIRSB ( IRSB*, IRStmt* );
2229 extern void sanityCheckIRSB ( IRSB* bb,