Lines Matching defs:condition
61 void StubBuilder::Branch(GateRef condition, Label *trueLabel, Label *falseLabel, const char* comment)
63 return BranchPredict(condition, trueLabel, falseLabel, BranchWeight::ONE_WEIGHT, BranchWeight::ONE_WEIGHT, comment);
66 void StubBuilder::BranchPredict(GateRef condition, Label *trueLabel, Label *falseLabel, uint32_t trueWeight,
71 GateRef ifBranch = env_->GetBuilder()->Branch(currentControl, condition, trueWeight, falseWeight, comment);
1164 auto condition = Int32UnsignedGreaterThan(length, Int32(INT32_MAX));
1167 BRANCH(condition, &overflow, ¬Overflow);
1400 // if condition:(objHandle->IsJSArray() || objHandle->IsTypedArray()) &&
3626 // if branch condition : entry != -1
3664 // if branch condition : entry != -1
7491 GateRef condition = env->GetBuilder()->ExtractValue(MachineType::I1, res, Int32(1));
7492 BRANCH(condition, &overflow, ¬Overflow);
8775 void StubBuilder::Assert(int messageId, int line, GateRef glue, GateRef condition, Label *nextLabel)
8780 BRANCH(condition, &ok, ¬Ok);