Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Target/
DTargetLowering.h459 return (LegalizeAction)((IndexedModeActions[Ty][IdxMode] & 0xf0) >> 4); in getIndexedLoadAction()
480 return (LegalizeAction)(IndexedModeActions[Ty][IdxMode] & 0x0f); in getIndexedStoreAction()
1132 IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] &= ~0xf0; in setIndexedLoadAction()
1133 IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] |= ((uint8_t)Action) <<4; in setIndexedLoadAction()
1145 IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] &= ~0x0f; in setIndexedStoreAction()
1146 IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] |= ((uint8_t)Action); in setIndexedStoreAction()
1931 uint8_t IndexedModeActions[MVT::LAST_VALUETYPE][ISD::LAST_INDEXED_MODE]; variable
/external/llvm/lib/CodeGen/SelectionDAG/
DTargetLowering.cpp523 memset(IndexedModeActions, 0, sizeof(IndexedModeActions)); in TargetLowering()