Home
last modified time | relevance | path

Searched refs:operand_constraints_ (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/compiler/
Dregister-allocator-verifier.h208 OperandConstraint* operand_constraints_; member
Dregister-allocator-verifier.cc127 instr_constraint.operand_constraints_; in VerifyAssignment()
506 instr_constraint.operand_constraints_; in VerifyGapMoves()
/external/tensorflow/tensorflow/compiler/xla/service/
Dlayout_assignment.cc235 auto iter = operand_constraints_.find(key); in SetOperandLayout()
236 if (iter == operand_constraints_.end()) { in SetOperandLayout()
240 iter = operand_constraints_.insert(pair).first; in SetOperandLayout()
346 auto it = operand_constraints_.find(std::make_pair(instruction, operand_no)); in GetOperandLayoutConstraint()
347 return it == operand_constraints_.end() ? nullptr : &it->second; in GetOperandLayoutConstraint()
Dlayout_assignment.h215 std::map<OperandConstraintKey, OperandLayoutConstraint> operand_constraints_; variable