Home
last modified time | relevance | path

Searched refs:CondCodeActions (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLowering.h1601 assert((unsigned)CC < std::size(CondCodeActions) && in getCondCodeAction()
1602 ((unsigned)VT.SimpleTy >> 3) < std::size(CondCodeActions[0]) && in getCondCodeAction()
1606 uint32_t Value = CondCodeActions[CC][VT.SimpleTy >> 3]; in getCondCodeAction()
2663 assert(VT.isValid() && (unsigned)CC < std::size(CondCodeActions) && in setCondCodeAction()
2670 CondCodeActions[CC][VT.SimpleTy >> 3] &= ~((uint32_t)0xF << Shift); in setCondCodeAction()
2671 CondCodeActions[CC][VT.SimpleTy >> 3] |= (uint32_t)Action << Shift; in setCondCodeAction()
3614 uint32_t CondCodeActions[ISD::SETCC_INVALID][(MVT::VALUETYPE_SIZE + 7) / 8]; variable
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp654 memset(CondCodeActions, 0, sizeof(CondCodeActions)); in initActions()