Lines Matching defs:condition
507 void CodeAssembler::ReturnIf(TNode<BoolT> condition, TNode<Object> value) {
509 Branch(condition, &if_return, &if_continue);
1258 void CodeAssembler::GotoIf(TNode<IntegralT> condition, Label* true_label) {
1260 Branch(condition, true_label, &false_label);
1264 void CodeAssembler::GotoIfNot(TNode<IntegralT> condition, Label* false_label) {
1266 Branch(condition, &true_label, false_label);
1270 void CodeAssembler::Branch(TNode<IntegralT> condition, Label* true_label,
1273 if (TryToInt32Constant(condition, &constant)) {
1281 return raw_assembler()->Branch(condition, true_label->label_,
1285 void CodeAssembler::Branch(TNode<BoolT> condition,
1289 if (TryToInt32Constant(condition, &constant)) {
1294 Branch(condition, &vtrue, &vfalse);
1303 void CodeAssembler::Branch(TNode<BoolT> condition, Label* true_label,
1306 if (TryToInt32Constant(condition, &constant)) {
1311 Branch(condition, true_label, &vfalse);
1316 void CodeAssembler::Branch(TNode<BoolT> condition,
1320 if (TryToInt32Constant(condition, &constant)) {
1325 Branch(condition, &vtrue, false_label);