/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | TargetLowering.h | 1116 LegalizeAction getIndexedLoadAction(unsigned IdxMode, MVT VT) const { in getIndexedLoadAction() argument 1117 return getIndexedModeAction(IdxMode, VT, IMAB_Load); in getIndexedLoadAction() 1121 bool isIndexedLoadLegal(unsigned IdxMode, EVT VT) const { in isIndexedLoadLegal() argument 1123 (getIndexedLoadAction(IdxMode, VT.getSimpleVT()) == Legal || in isIndexedLoadLegal() 1124 getIndexedLoadAction(IdxMode, VT.getSimpleVT()) == Custom); in isIndexedLoadLegal() 1130 LegalizeAction getIndexedStoreAction(unsigned IdxMode, MVT VT) const { in getIndexedStoreAction() argument 1131 return getIndexedModeAction(IdxMode, VT, IMAB_Store); in getIndexedStoreAction() 1135 bool isIndexedStoreLegal(unsigned IdxMode, EVT VT) const { in isIndexedStoreLegal() argument 1137 (getIndexedStoreAction(IdxMode, VT.getSimpleVT()) == Legal || in isIndexedStoreLegal() 1138 getIndexedStoreAction(IdxMode, VT.getSimpleVT()) == Custom); in isIndexedStoreLegal() [all …]
|
/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | TargetLowering.h | 1268 LegalizeAction getIndexedLoadAction(unsigned IdxMode, MVT VT) const { in getIndexedLoadAction() argument 1269 return getIndexedModeAction(IdxMode, VT, IMAB_Load); in getIndexedLoadAction() 1273 bool isIndexedLoadLegal(unsigned IdxMode, EVT VT) const { in isIndexedLoadLegal() argument 1275 (getIndexedLoadAction(IdxMode, VT.getSimpleVT()) == Legal || in isIndexedLoadLegal() 1276 getIndexedLoadAction(IdxMode, VT.getSimpleVT()) == Custom); in isIndexedLoadLegal() 1282 LegalizeAction getIndexedStoreAction(unsigned IdxMode, MVT VT) const { in getIndexedStoreAction() argument 1283 return getIndexedModeAction(IdxMode, VT, IMAB_Store); in getIndexedStoreAction() 1287 bool isIndexedStoreLegal(unsigned IdxMode, EVT VT) const { in isIndexedStoreLegal() argument 1289 (getIndexedStoreAction(IdxMode, VT.getSimpleVT()) == Legal || in isIndexedStoreLegal() 1290 getIndexedStoreAction(IdxMode, VT.getSimpleVT()) == Custom); in isIndexedStoreLegal() [all …]
|
/external/capstone/arch/ARM/ |
D | ARMAddressingModes.h | 443 unsigned IdxMode) in ARM_AM_getAM2Opc() argument 447 return Imm12 | ((int)isSub << 12) | (SO << 13) | (IdxMode << 16) ; in ARM_AM_getAM2Opc() 486 unsigned IdxMode) in getAM3Opc() argument 489 return ((int)isSub << 8) | Offset | (IdxMode << 9); in getAM3Opc()
|
/external/llvm/include/llvm/Target/ |
D | TargetLowering.h | 710 getIndexedLoadAction(unsigned IdxMode, MVT VT) const { in getIndexedLoadAction() argument 711 assert(IdxMode < ISD::LAST_INDEXED_MODE && VT.isValid() && in getIndexedLoadAction() 714 return (LegalizeAction)((IndexedModeActions[Ty][IdxMode] & 0xf0) >> 4); in getIndexedLoadAction() 718 bool isIndexedLoadLegal(unsigned IdxMode, EVT VT) const { in isIndexedLoadLegal() argument 720 (getIndexedLoadAction(IdxMode, VT.getSimpleVT()) == Legal || in isIndexedLoadLegal() 721 getIndexedLoadAction(IdxMode, VT.getSimpleVT()) == Custom); in isIndexedLoadLegal() 728 getIndexedStoreAction(unsigned IdxMode, MVT VT) const { in getIndexedStoreAction() argument 729 assert(IdxMode < ISD::LAST_INDEXED_MODE && VT.isValid() && in getIndexedStoreAction() 732 return (LegalizeAction)(IndexedModeActions[Ty][IdxMode] & 0x0f); in getIndexedStoreAction() 736 bool isIndexedStoreLegal(unsigned IdxMode, EVT VT) const { in isIndexedStoreLegal() argument [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/ |
D | ARMAddressingModes.h | 400 unsigned IdxMode = 0) { 403 return Imm12 | ((int)isSub << 12) | (SO << 13) | (IdxMode << 16) ; 432 unsigned IdxMode = 0) { 434 return ((int)isSub << 8) | Offset | (IdxMode << 9);
|
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
D | ARMAddressingModes.h | 408 unsigned IdxMode = 0) { 411 return Imm12 | ((int)isSub << 12) | (SO << 13) | (IdxMode << 16) ; 443 unsigned IdxMode = 0) { 445 return ((int)isSub << 8) | Offset | (IdxMode << 9);
|
/external/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ |
D | ARMAddressingModes.h | 414 unsigned IdxMode = 0) { 417 return Imm12 | ((int)isSub << 12) | (SO << 13) | (IdxMode << 16) ; 446 unsigned IdxMode = 0) { 448 return ((int)isSub << 8) | Offset | (IdxMode << 9);
|
D | ARMInstPrinter.cpp | 483 unsigned IdxMode = ARM_AM::getAM2IdxMode(MO3.getImm()); in printAddrMode2Operand() local 484 assert(IdxMode != ARMII::IndexModePost && "Should be pre or offset index op"); in printAddrMode2Operand()
|
/external/llvm/lib/Target/ARM/InstPrinter/ |
D | ARMInstPrinter.cpp | 444 unsigned IdxMode = ARM_AM::getAM2IdxMode(MO3.getImm()); in printAddrMode2Operand() local 445 assert(IdxMode != ARMII::IndexModePost && "Should be pre or offset index op"); in printAddrMode2Operand()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | SIISelLowering.cpp | 3234 unsigned IdxMode = IsIndirectSrc ? in emitLoadM0FromVGPRLoop() local 3239 .addImm(IdxMode); in emitLoadM0FromVGPRLoop() 3357 unsigned IdxMode = IsIndirectSrc ? in setM0ToIndexFromSGPR() local 3363 .addImm(IdxMode); in setM0ToIndexFromSGPR() 3374 .addImm(IdxMode); in setM0ToIndexFromSGPR()
|