Lines Matching refs:LoopControlShift
271 uint32_t operator>>(const spv::LoopControlShift& lhs, in operator >>()
272 const spv::LoopControlShift& rhs) { in operator >>()
301 const auto loop_control = inst->GetOperandAs<spv::LoopControlShift>(2); in ValidateLoopMerge()
302 if ((loop_control >> spv::LoopControlShift::Unroll) & 0x1 && in ValidateLoopMerge()
303 (loop_control >> spv::LoopControlShift::DontUnroll) & 0x1) { in ValidateLoopMerge()
307 if ((loop_control >> spv::LoopControlShift::DontUnroll) & 0x1 && in ValidateLoopMerge()
308 (loop_control >> spv::LoopControlShift::PeelCount) & 0x1) { in ValidateLoopMerge()
313 if ((loop_control >> spv::LoopControlShift::DontUnroll) & 0x1 && in ValidateLoopMerge()
314 (loop_control >> spv::LoopControlShift::PartialCount) & 0x1) { in ValidateLoopMerge()
321 if ((loop_control >> spv::LoopControlShift::DependencyLength) & 0x1) { in ValidateLoopMerge()
324 if ((loop_control >> spv::LoopControlShift::MinIterations) & 0x1) { in ValidateLoopMerge()
327 if ((loop_control >> spv::LoopControlShift::MaxIterations) & 0x1) { in ValidateLoopMerge()
330 if ((loop_control >> spv::LoopControlShift::IterationMultiple) & 0x1) { in ValidateLoopMerge()
339 if ((loop_control >> spv::LoopControlShift::PeelCount) & 0x1) { in ValidateLoopMerge()
342 if ((loop_control >> spv::LoopControlShift::PartialCount) & 0x1) { in ValidateLoopMerge()