Home
last modified time | relevance | path

Searched refs:condVal (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcInstrAliases.td15 multiclass intcond_mov_alias<string cond, int condVal, string ccreg,
22 (movrr IntRegs:$rd, IntRegs:$rs2, condVal)>;
27 (movri IntRegs:$rd, i32imm:$simm11, condVal)>;
32 (fmovs FPRegs:$rd, FPRegs:$rs2, condVal)>;
37 (fmovd DFPRegs:$rd, DFPRegs:$rs2, condVal)>;
41 multiclass fpcond_mov_alias<string cond, int condVal,
47 (movrr IntRegs:$rd, FCCRegs:$cc, IntRegs:$rs2, condVal)>;
51 (movri IntRegs:$rd, FCCRegs:$cc, i32imm:$simm11, condVal)>;
55 (fmovs FPRegs:$rd, FCCRegs:$cc, FPRegs:$rs2, condVal)>;
59 (fmovd DFPRegs:$rd, FCCRegs:$cc, DFPRegs:$rs2, condVal)>;
[all …]
/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenStmt.cpp600 mlir::Value condVal = evaluateExprAsBool(s.getCond()); in emitCXXForRangeStmt() local
601 builder.createCondition(condVal); in emitCXXForRangeStmt()
668 mlir::Value condVal; in emitForStmt() local
677 condVal = evaluateExprAsBool(s.getCond()); in emitForStmt()
679 condVal = b.create<cir::ConstantOp>(loc, builder.getTrueAttr()); in emitForStmt()
681 builder.createCondition(condVal); in emitForStmt()
739 mlir::Value condVal = evaluateExprAsBool(s.getCond()); in emitDoStmt() local
740 builder.createCondition(condVal); in emitDoStmt()
787 mlir::Value condVal; in emitWhileStmt() local
795 condVal = evaluateExprAsBool(s.getCond()); in emitWhileStmt()
[all …]