Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Target/
DTargetLowering.h641 return (LegalizeAction)((IndexedModeActions[Ty][IdxMode] & 0xf0) >> 4); in getIndexedLoadAction()
659 return (LegalizeAction)(IndexedModeActions[Ty][IdxMode] & 0x0f); in getIndexedStoreAction()
1348 IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] &= ~0xf0; in setIndexedLoadAction()
1349 IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] |= ((uint8_t)Action) <<4; in setIndexedLoadAction()
1362 IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] &= ~0x0f; in setIndexedStoreAction()
1363 IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] |= ((uint8_t)Action); in setIndexedStoreAction()
1906 uint8_t IndexedModeActions[MVT::LAST_VALUETYPE][ISD::LAST_INDEXED_MODE]; variable
/external/llvm/lib/CodeGen/
DTargetLoweringBase.cpp768 memset(IndexedModeActions, 0, sizeof(IndexedModeActions)); in initActions()