Searched defs:getTypeAction (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.h63 /// enum from TargetLowering. This can be queried with "getTypeAction(VT)".
66 /// getTypeAction - Return how we should legalize values of this type.
67 TargetLowering::LegalizeTypeAction getTypeAction(EVT VT) const { function in class:llvm::DAGTypeLegalizer
68 return TLI.getTypeAction(*DAG.getContext(), VT);
73 return TLI.getTypeAction(*DAG.getContext(), VT) == TargetLowering::TypeLegal;
/external/llvm/include/llvm/Target/
H A DTargetLowering.h266 LegalizeTypeAction getTypeAction(MVT VT) const { function in class:llvm::TargetLowering::ValueTypeActionImpl
280 /// getTypeAction - Return how we should legalize values of this type, either
284 LegalizeTypeAction getTypeAction(LLVMContext &Context, EVT VT) const { function in class:llvm::TargetLowering
287 LegalizeTypeAction getTypeAction(MVT VT) const { function in class:llvm::TargetLowering
288 return ValueTypeActions.getTypeAction(VT);
308 switch (getTypeAction(Context, VT)) {
1949 LegalizeTypeAction LA = ValueTypeActions.getTypeAction(VT.getSimpleVT());
1953 ValueTypeActions.getTypeAction(NVT.getSimpleVT()) != TypePromoteInteger)
2023 if (NVT != MVT() && ValueTypeActions.getTypeAction(NVT) == TypeLegal)
2043 if (ValueTypeActions.getTypeAction(LargerVecto
[all...]

Completed in 74 milliseconds