Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLowering.h1351 assert((unsigned)CC < array_lengthof(CondCodeActions) && in getCondCodeAction()
1352 ((unsigned)VT.SimpleTy >> 3) < array_lengthof(CondCodeActions[0]) && in getCondCodeAction()
1356 uint32_t Value = CondCodeActions[CC][VT.SimpleTy >> 3]; in getCondCodeAction()
2253 assert(VT.isValid() && (unsigned)CC < array_lengthof(CondCodeActions) && in setCondCodeAction()
2260 CondCodeActions[CC][VT.SimpleTy >> 3] &= ~((uint32_t)0xF << Shift); in setCondCodeAction()
2261 CondCodeActions[CC][VT.SimpleTy >> 3] |= (uint32_t)Action << Shift; in setCondCodeAction()
3008 uint32_t CondCodeActions[ISD::SETCC_INVALID][(MVT::VALUETYPE_SIZE + 7) / 8]; variable
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp734 memset(CondCodeActions, 0, sizeof(CondCodeActions)); in initActions()