[mips][msa] Added support for matching bins[lr]i.[bhwd] from normal IR (i.e. not...
[oota-llvm.git] / lib / Target / Mips / MSA.txt
1 Code Generation Notes for MSA
2 =============================
3
4 Intrinsics are lowered to SelectionDAG nodes where possible in order to enable
5 optimisation, reduce the size of the ISel matcher, and reduce repetition in
6 the implementation. In a small number of cases, this can cause different
7 (semantically equivalent) instructions to be used in place of the requested
8 instruction, even when no optimisation has taken place.
9
10 Instructions
11 ============
12
13 This section describes any quirks of instruction selection for MSA. For
14 example, two instructions might be equally valid for some given IR and one is
15 chosen in preference to the other.
16
17 vshf.w:
18         It is not possible to emit vshf.w when the shuffle description is
19         constant since shf.w covers exactly the same cases. shf.w is used
20         instead. It is also impossible for the shuffle description to be
21         unknown at compile-time due to the definition of shufflevector in
22         LLVM IR.
23
24 vshf.[bhwd]
25         When the shuffle description describes a splat operation, splat.[bhwd]
26         instructions will be selected instead of vshf.[bhwd]. Unlike the ilv*,
27         and pck* instructions, this is matched from MipsISD::VSHF instead of
28         a special-case MipsISD node.
29
30 ilvl.d, pckev.d:
31         It is not possible to emit ilvl.d, or pckev.d since ilvev.d covers the
32         same shuffle. ilvev.d will be emitted instead.
33
34 ilvr.d, ilvod.d, pckod.d:
35         It is not possible to emit ilvr.d, or pckod.d since ilvod.d covers the
36         same shuffle. ilvod.d will be emitted instead.
37
38 splat.[bhwd]
39         The intrinsic will work as expected. However, unlike other intrinsics
40         it lowers directly to MipsISD::VSHF instead of using common IR.
41
42 splati.w:
43         It is not possible to emit splati.w since shf.w covers the same cases.
44         shf.w will be emitted instead.
45
46 copy_s.w:
47         On MIPS32, the copy_u.d intrinsic will emit this instruction instead of
48         copy_u.w. This is semantically equivalent since the general-purpose
49         register file is 32-bits wide.
50
51 binsri.[bhwd],  binsli.[bhwd]:
52         These two operations are equivalent to each other with the operands
53         swapped and condition inverted. The compiler may use either one as
54         appropriate.
55         Furthermore, the compiler may use bsel.[bhwd] for some masks that do
56         not survive the legalization process (this is a bug and will be fixed).