Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/include/llvm/Target/
DTargetLowering.h476 assert((unsigned)CC < array_lengthof(CondCodeActions) && in getCondCodeAction()
477 (unsigned)VT.getSimpleVT().SimpleTy < sizeof(CondCodeActions[0])*4 && in getCondCodeAction()
480 ((CondCodeActions[CC] >> (2*VT.getSimpleVT().SimpleTy)) & 3); in getCondCodeAction()
1110 (unsigned)CC < array_lengthof(CondCodeActions) && in setCondCodeAction()
1112 CondCodeActions[(unsigned)CC] &= ~(uint64_t(3UL) << VT.SimpleTy*2); in setCondCodeAction()
1113 CondCodeActions[(unsigned)CC] |= (uint64_t)Action << VT.SimpleTy*2; in setCondCodeAction()
1807 uint64_t CondCodeActions[ISD::SETCC_INVALID]; variable
/external/llvm/include/llvm/Target/
DTargetLowering.h747 assert((unsigned)CC < array_lengthof(CondCodeActions) && in getCondCodeAction()
748 ((unsigned)VT.SimpleTy >> 3) < array_lengthof(CondCodeActions[0]) && in getCondCodeAction()
752 uint32_t Value = CondCodeActions[CC][VT.SimpleTy >> 3]; in getCondCodeAction()
1483 assert(VT.isValid() && (unsigned)CC < array_lengthof(CondCodeActions) && in setCondCodeAction()
1490 CondCodeActions[CC][VT.SimpleTy >> 3] &= ~((uint32_t)0xF << Shift); in setCondCodeAction()
1491 CondCodeActions[CC][VT.SimpleTy >> 3] |= (uint32_t)Action << Shift; in setCondCodeAction()
2044 uint32_t CondCodeActions[ISD::SETCC_INVALID][(MVT::LAST_VALUETYPE + 7) / 8]; variable
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DTargetLowering.h1034 assert((unsigned)CC < array_lengthof(CondCodeActions) && in getCondCodeAction()
1035 ((unsigned)VT.SimpleTy >> 3) < array_lengthof(CondCodeActions[0]) && in getCondCodeAction()
1039 uint32_t Value = CondCodeActions[CC][VT.SimpleTy >> 3]; in getCondCodeAction()
1856 assert(VT.isValid() && (unsigned)CC < array_lengthof(CondCodeActions) && in setCondCodeAction()
1863 CondCodeActions[CC][VT.SimpleTy >> 3] &= ~((uint32_t)0xF << Shift); in setCondCodeAction()
1864 CondCodeActions[CC][VT.SimpleTy >> 3] |= (uint32_t)Action << Shift; in setCondCodeAction()
2497 uint32_t CondCodeActions[ISD::SETCC_INVALID][(MVT::LAST_VALUETYPE + 7) / 8]; variable
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DTargetLoweringBase.cpp580 memset(CondCodeActions, 0, sizeof(CondCodeActions)); in initActions()
/external/llvm/lib/CodeGen/
DTargetLoweringBase.cpp848 memset(CondCodeActions, 0, sizeof(CondCodeActions)); in initActions()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DTargetLowering.cpp553 memset(CondCodeActions, 0, sizeof(CondCodeActions)); in TargetLowering()