GIMPLE_COND
Build a
GIMPLE_COND
statement.A
GIMPLE_COND
statement comparesLHS
andRHS
and if the condition inPRED_CODE
is true, jump to the label int_label
, otherwise jump to the label inf_label
.PRED_CODE
are relational operator tree codes likeEQ_EXPR
,LT_EXPR
,LE_EXPR
,NE_EXPR
, etc.
Build a
GIMPLE_COND
statement from the conditional expression treeCOND
.T_LABEL
andF_LABEL
are as ingimple_build_cond
.
Return the code of the predicate computed by conditional statement
G
.
Set
CODE
to be the predicate code for the conditional statementG
.
Return the
LHS
of the predicate computed by conditional statementG
.
Set
LHS
to be theLHS
operand of the predicate computed by conditional statementG
.
Return the
RHS
operand of the predicate computed by conditionalG
.
Set
RHS
to be theRHS
operand of the predicate computed by conditional statementG
.
Return the label used by conditional statement
G
when its predicate evaluates to true.
Set
LABEL
to be the label used by conditional statementG
when its predicate evaluates to true.
Set
LABEL
to be the label used by conditional statementG
when its predicate evaluates to false.
Return the label used by conditional statement
G
when its predicate evaluates to false.