Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/llvm/include/llvm/Target/
H A DTargetLowering.h640 assert((unsigned)CC < array_lengthof(CondCodeActions) && in getCondCodeAction()
641 ((unsigned)VT.SimpleTy >> 4) < array_lengthof(CondCodeActions[0]) && in getCondCodeAction()
645 uint32_t Value = CondCodeActions[CC][VT.SimpleTy >> 4]; in getCondCodeAction()
1297 assert(VT.isValid() && (unsigned)CC < array_lengthof(CondCodeActions) && in setCondCodeAction()
1303 CondCodeActions[CC][VT.SimpleTy >> 4] &= ~((uint32_t)0x3 << Shift); in setCondCodeAction()
1304 CondCodeActions[CC][VT.SimpleTy >> 4] |= (uint32_t)Action << Shift; in setCondCodeAction()
1782 uint32_t CondCodeActions[ISD::SETCC_INVALID][(MVT::LAST_VALUETYPE + 15) / 16]; variable
/minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp747 memset(CondCodeActions, 0, sizeof(CondCodeActions)); in initActions()