Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/include/llvm/Target/
DTargetLowering.h372 assert(Op < array_lengthof(OpActions[0]) && "Table isn't big enough!"); in getOperationAction()
374 return (LegalizeAction)OpActions[I][Op]; in getOperationAction()
1057 assert(Op < array_lengthof(OpActions[0]) && "Table isn't big enough!"); in setOperationAction()
1058 OpActions[(unsigned)VT.SimpleTy][Op] = (uint8_t)Action; in setOperationAction()
1785 uint8_t OpActions[MVT::LAST_VALUETYPE][ISD::BUILTIN_OP_END]; variable
/external/llvm/include/llvm/Target/
DTargetLowering.h602 if (Op > array_lengthof(OpActions[0])) return Custom; in getOperationAction()
603 return OpActions[(unsigned)VT.getSimpleVT().SimpleTy][Op]; in getOperationAction()
1427 assert(Op < array_lengthof(OpActions[0]) && "Table isn't big enough!"); in setOperationAction()
1428 OpActions[(unsigned)VT.SimpleTy][Op] = Action; in setOperationAction()
2018 LegalizeAction OpActions[MVT::LAST_VALUETYPE][ISD::BUILTIN_OP_END]; variable
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DTargetLowering.h789 if (Op >= array_lengthof(OpActions[0])) return Custom; in getOperationAction()
790 return OpActions[(unsigned)VT.getSimpleVT().SimpleTy][Op]; in getOperationAction()
1800 assert(Op < array_lengthof(OpActions[0]) && "Table isn't big enough!"); in setOperationAction()
1801 OpActions[(unsigned)VT.SimpleTy][Op] = Action; in setOperationAction()
2471 LegalizeAction OpActions[MVT::LAST_VALUETYPE][ISD::BUILTIN_OP_END]; variable
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DTargetLoweringBase.cpp576 memset(OpActions, 0, sizeof(OpActions)); in initActions()
/external/llvm/lib/CodeGen/
DTargetLoweringBase.cpp844 memset(OpActions, 0, sizeof(OpActions)); in initActions()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DTargetLowering.cpp549 memset(OpActions, 0, sizeof(OpActions)); in TargetLowering()