Lines Matching defs:operands
340 /// Get the constant values of the operands of an operation. If any of the
346 SmallVector<Attribute> operands;
347 operands.reserve(op->getNumOperands());
350 // If any of the operands' values are uninitialized, bail out.
353 operands.push_back(cv->getValue().getConstantValue());
355 return operands;
369 std::optional<SmallVector<Attribute>> operands = getOperandValues(branch);
370 if (!operands)
373 if (Block *successor = branch.getSuccessorForOperands(*operands)) {
385 std::optional<SmallVector<Attribute>> operands = getOperandValues(branch);
386 if (!operands)
390 branch.getEntrySuccessorRegions(*operands, successors);
410 std::optional<SmallVector<Attribute>> operands = getOperandValues(op);
411 if (!operands)
416 terminator.getSuccessorRegions(*operands, successors);