Searched refs:IdxMode (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | TargetLowering.h | 1521 LegalizeAction getIndexedLoadAction(unsigned IdxMode, MVT VT) const { in getIndexedLoadAction() argument 1522 return getIndexedModeAction(IdxMode, VT, IMAB_Load); in getIndexedLoadAction() 1526 bool isIndexedLoadLegal(unsigned IdxMode, EVT VT) const { in isIndexedLoadLegal() argument 1528 (getIndexedLoadAction(IdxMode, VT.getSimpleVT()) == Legal || in isIndexedLoadLegal() 1529 getIndexedLoadAction(IdxMode, VT.getSimpleVT()) == Custom); in isIndexedLoadLegal() 1535 LegalizeAction getIndexedStoreAction(unsigned IdxMode, MVT VT) const { in getIndexedStoreAction() argument 1536 return getIndexedModeAction(IdxMode, VT, IMAB_Store); in getIndexedStoreAction() 1540 bool isIndexedStoreLegal(unsigned IdxMode, EVT VT) const { in isIndexedStoreLegal() argument 1542 (getIndexedStoreAction(IdxMode, VT.getSimpleVT()) == Legal || in isIndexedStoreLegal() 1543 getIndexedStoreAction(IdxMode, VT.getSimpleVT()) == Custom); in isIndexedStoreLegal() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMAddressingModes.h | 401 unsigned IdxMode = 0) { 404 return Imm12 | ((int)isSub << 12) | (SO << 13) | (IdxMode << 16) ; 433 unsigned IdxMode = 0) { 435 return ((int)isSub << 8) | Offset | (IdxMode << 9);
|
H A D | ARMInstPrinter.cpp | 535 unsigned IdxMode = ARM_AM::getAM2IdxMode(MO3.getImm()); in printAddrMode2Operand() local 536 assert(IdxMode != ARMII::IndexModePost && "Should be pre or offset index op"); in printAddrMode2Operand()
|