Home
last modified time | relevance | path

Searched refs:typeInSet (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/GlobalISel/
H A DLegalizerInfo.h194 LegalityPredicate typeInSet(unsigned TypeIdx,
330 return actionIf(Action, typeInSet(typeIdx(0), Types)); in actionFor()
338 return actionIf(Action, typeInSet(typeIdx(0), Types), Mutation); in actionFor()
364 return actionIf(Action, all(typeInSet(typeIdx(0), Types), in actionForCartesianProduct()
365 typeInSet(typeIdx(1), Types))); in actionForCartesianProduct()
376 return actionIf(Action, all(typeInSet(typeIdx(0), Types0), in actionForCartesianProduct()
377 typeInSet(typeIdx(1), Types1))); in actionForCartesianProduct()
387 return actionIf(Action, all(typeInSet(typeIdx(0), Types0), in actionForCartesianProduct()
388 all(typeInSet(typeIdx(1), Types1), in actionForCartesianProduct()
389 typeInSet(typeIdx(2), Types2)))); in actionForCartesianProduct()
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64LegalizerInfo.cpp136 .maxScalarIf(typeInSet(0, {s32}), 1, s16) in AArch64LegalizerInfo()
137 .maxScalarIf(typeInSet(0, {s64}), 1, s32) in AArch64LegalizerInfo()
156 .maxScalarIf(typeInSet(1, {s32}), 0, s16) in AArch64LegalizerInfo()
157 .maxScalarIf(typeInSet(1, {s64}), 0, s32) in AArch64LegalizerInfo()
308 typeInSet(0, {s8, s16, s32, s64}), typeIs(1, s1), typeIs(2, p0), in AArch64LegalizerInfo()
316 typeInSet(0, {s8, s16, s32, s64}), typeIs(1, p0), in AArch64LegalizerInfo()
/freebsd-12.1/contrib/llvm/lib/CodeGen/GlobalISel/
H A DLegalityPredicates.cpp24 LegalityPredicates::typeInSet(unsigned TypeIdx, in typeInSet() function in LegalityPredicates