mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-13 23:18:58 +00:00
[X86] Remove the default for one of the arguments to some tablegen multiclasses. NFC
No one ever uses this default and probably shouldn't since it sets the execution domain to generic. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@317967 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b99884c4a5
commit
20487ae90c
@ -386,8 +386,7 @@ let isReMaterializable = 1, isAsCheapAsAMove = 1, canFoldAsLoad = 1,
|
||||
|
||||
multiclass sse12_move_rr<SDNode OpNode, ValueType vt,
|
||||
X86MemOperand x86memop, string base_opc,
|
||||
string asm_opr, Domain d = GenericDomain,
|
||||
string Name> {
|
||||
string asm_opr, Domain d, string Name> {
|
||||
let isCommutable = 1 in
|
||||
def rr : SI<0x10, MRMSrcReg, (outs VR128:$dst),
|
||||
(ins VR128:$src1, VR128:$src2),
|
||||
@ -406,7 +405,7 @@ multiclass sse12_move_rr<SDNode OpNode, ValueType vt,
|
||||
|
||||
multiclass sse12_move<RegisterClass RC, SDNode OpNode, ValueType vt,
|
||||
X86MemOperand x86memop, string OpcodeStr,
|
||||
Domain d = GenericDomain, string Name> {
|
||||
Domain d, string Name> {
|
||||
// AVX
|
||||
defm V#NAME : sse12_move_rr<OpNode, vt, x86memop, OpcodeStr,
|
||||
"\t{$src2, $src1, $dst|$dst, $src1, $src2}", d,
|
||||
@ -431,8 +430,7 @@ multiclass sse12_move<RegisterClass RC, SDNode OpNode, ValueType vt,
|
||||
|
||||
// Loading from memory automatically zeroing upper bits.
|
||||
multiclass sse12_move_rm<RegisterClass RC, X86MemOperand x86memop,
|
||||
PatFrag mem_pat, string OpcodeStr,
|
||||
Domain d = GenericDomain> {
|
||||
PatFrag mem_pat, string OpcodeStr, Domain d> {
|
||||
def V#NAME#rm : SI<0x10, MRMSrcMem, (outs RC:$dst), (ins x86memop:$src),
|
||||
!strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
|
||||
[(set RC:$dst, (mem_pat addr:$src))],
|
||||
|
Loading…
Reference in New Issue
Block a user