34 #define BRANCH_OPT_XCC 0x1
35 #define BRANCH_OPT_PREDICT 0x2
36 #define BRANCH_OPT_ANNULL 0x4
38 #define BRANCH_CHECKS_XCC(options) \
39 ((options) & BRANCH_OPT_XCC)
41 #define BRANCH_WITH_PREDICT(options) \
42 ((options) & BRANCH_OPT_PREDICT)
44 #define BRANCH_WITH_ANNULL(options) \
45 ((options) & BRANCH_OPT_ANNULL)
void emit_ble_xcc(codegendata *cd, basicblock *target)
void emit_bne_xcc(codegendata *cd, basicblock *target)
void emit_bgt_xcc(codegendata *cd, basicblock *target)
void emit_bge_xcc(codegendata *cd, basicblock *target)
void emit_blt_xcc(codegendata *cd, basicblock *target)
void emit_beq_xcc(codegendata *cd, basicblock *target)