Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Target/
DTargetLowering.h487 return (LegalizeAction)((IndexedModeActions[Ty][IdxMode] & 0xf0) >> 4); in getIndexedLoadAction()
505 return (LegalizeAction)(IndexedModeActions[Ty][IdxMode] & 0x0f); in getIndexedStoreAction()
992 IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] &= ~0xf0; in setIndexedLoadAction()
993 IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] |= ((uint8_t)Action) <<4; in setIndexedLoadAction()
1006 IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] &= ~0x0f; in setIndexedStoreAction()
1007 IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] |= ((uint8_t)Action); in setIndexedStoreAction()
1411 uint8_t IndexedModeActions[MVT::LAST_VALUETYPE][ISD::LAST_INDEXED_MODE]; variable
/external/llvm/lib/CodeGen/
DTargetLoweringBase.cpp668 memset(IndexedModeActions, 0, sizeof(IndexedModeActions)); in initActions()