Home | History | Annotate | Download | only in pub

Lines Matching full: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
2192 the IRSB). Contains the address and length of the
2374 /* Conditional exit from the middle of an IRSB.
2453 "IRSB" stands for "IR Super Block".
2465 IRSB;
2467 /* Allocate a new, uninitialised IRSB */
2468 extern IRSB* emptyIRSB ( void );
2470 /* Deep-copy an IRSB */
2471 extern IRSB* deepCopyIRSB ( IRSB* );
2473 /* Deep-copy an IRSB, except for the statements list, which set to be
2475 extern IRSB* deepCopyIRSBExceptStmts ( IRSB* );
2477 /* Pretty-print an IRSB */
2478 extern void ppIRSB ( IRSB* );
2480 /* Append an IRStmt to an IRSB */
2481 extern void addStmtToIRSB ( IRSB*, IRStmt* );
2497 extern void sanityCheckIRSB ( IRSB* bb,