Home
last modified time | relevance | path

Searched refs:LegalizeAction (Results 1 – 9 of 9) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/Target/
DTargetLowering.h90 enum LegalizeAction { enum
370 LegalizeAction getOperationAction(unsigned Op, EVT VT) const { in getOperationAction()
374 return (LegalizeAction)OpActions[I][Op]; in getOperationAction()
397 LegalizeAction getLoadExtAction(unsigned ExtType, EVT VT) const { in getLoadExtAction()
401 return (LegalizeAction)LoadExtActions[VT.getSimpleVT().SimpleTy][ExtType]; in getLoadExtAction()
414 LegalizeAction getTruncStoreAction(EVT ValVT, EVT MemVT) const { in getTruncStoreAction()
418 return (LegalizeAction)TruncStoreActions[ValVT.getSimpleVT().SimpleTy] in getTruncStoreAction()
433 LegalizeAction
439 return (LegalizeAction)((IndexedModeActions[Ty][IdxMode] & 0xf0) >> 4); in getIndexedLoadAction()
454 LegalizeAction
[all …]
/external/llvm/include/llvm/Target/
DTargetLowering.h89 enum LegalizeAction : uint8_t { enum
598 LegalizeAction getOperationAction(unsigned Op, EVT VT) const { in getOperationAction()
657 LegalizeAction getLoadExtAction(unsigned ExtType, EVT ValVT, in getLoadExtAction()
665 return (LegalizeAction)((LoadExtActions[ValI][MemI] >> Shift) & 0xf); in getLoadExtAction()
683 LegalizeAction getTruncStoreAction(EVT ValVT, EVT MemVT) const { in getTruncStoreAction()
709 LegalizeAction
714 return (LegalizeAction)((IndexedModeActions[Ty][IdxMode] & 0xf0) >> 4); in getIndexedLoadAction()
727 LegalizeAction
732 return (LegalizeAction)(IndexedModeActions[Ty][IdxMode] & 0x0f); in getIndexedStoreAction()
745 LegalizeAction
[all …]
/external/llvm/include/llvm/CodeGen/
DBasicTTIImpl.h538 TargetLowering::LegalizeAction LA = TargetLowering::Expand; in getMemoryOpCost()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DLegalizeIntegerTypes.cpp2069 TargetLowering::LegalizeAction Action = TLI.getOperationAction(PartsOpc, NVT); in ExpandIntRes_Shift()
DLegalizeDAG.cpp795 TargetLowering::LegalizeAction Action = TargetLowering::Legal; in LegalizeOp()
/external/llvm/docs/
DWritingAnLLVMBackend.rst1421 The ``Legal`` ``LegalizeAction`` enum value simply indicates that an operation
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeIntegerTypes.cpp2351 TargetLowering::LegalizeAction Action = TLI.getOperationAction(PartsOpc, NVT); in ExpandIntRes_Shift()
DLegalizeDAG.cpp944 TargetLowering::LegalizeAction Action = TargetLowering::Legal; in LegalizeOp()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp1486 LegalizeAction Action = Subtarget.hasVLX() ? Legal : Custom; in X86TargetLowering()