1 //===-- X86SchedPredicates.td - X86 Scheduling Predicates --*- tablegen -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines scheduling predicate definitions that are common to
11 // all X86 subtargets.
13 //===----------------------------------------------------------------------===//
15 // A predicate used to identify dependency-breaking instructions that clear the
16 // content of the destination register. Note that this predicate only checks if
17 // input registers are the same. This predicate doesn't make any assumptions on
18 // the expected instruction opcodes, because different processors may implement
19 // different zero-idioms.
20 def ZeroIdiomPredicate : CheckSameRegOperand<1, 2>;
22 // A predicate used to identify VPERM that have bits 3 and 7 of their mask set.
23 // On some processors, these VPERM instructions are zero-idioms.
24 def ZeroIdiomVPERMPredicate : CheckAll<[
26 CheckImmOperand<3, 0x88>
29 // A predicate used to check if a LEA instruction uses all three source
30 // operands: base, index, and offset.
31 def IsThreeOperandsLEAPredicate: CheckAll<[
34 CheckNot<CheckInvalidRegOperand<1>>,
36 // isRegOperand(Index)
38 CheckNot<CheckInvalidRegOperand<3>>,
40 // hasLEAOffset(Offset)
44 CheckNot<CheckZeroOperand<4>>
46 CheckNonPortable<"MI.getOperand(4).isGlobal()">
50 def LEACases : MCOpcodeSwitchCase<
51 [LEA32r, LEA64r, LEA64_32r, LEA16r],
52 MCReturnStatement<IsThreeOperandsLEAPredicate>
55 // Used to generate the body of a TII member function.
56 def IsThreeOperandsLEABody :
57 MCOpcodeSwitchStatement<[LEACases], MCReturnStatement<FalsePred>>;
59 // This predicate evaluates to true only if the input machine instruction is a
60 // 3-operands LEA. Tablegen automatically generates a new method for it in
62 def IsThreeOperandsLEAFn :
63 TIIPredicate<"isThreeOperandsLEA", IsThreeOperandsLEABody>;