mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-27 21:50:40 +00:00
[x86] translating "fp" (floating point) instructions from {fadd,fdiv,fmul,fsub,fsubr,fdivr} to {faddp,fdivp,fmulp,fsubp,fsubrp,fdivrp}
LLVM Missing the following instructions: fadd\fdiv\fmul\fsub\fsubr\fdivr. GAS and MS supporting this instruction and lowering them in to a faddp\fdivp\fmulp\fsubp\fsubrp\fdivrp instructions. Differential Revision: http://reviews.llvm.org/D14217 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@252908 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
957ee69c41
commit
8e8b0ba38b
@ -2218,6 +2218,20 @@ bool X86AsmParser::ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
|
||||
(isPrefix && getLexer().is(AsmToken::Slash)))
|
||||
Parser.Lex();
|
||||
|
||||
// This is for gas compatibility and cannot be done in td.
|
||||
// Adding "p" for some floating point with no argument.
|
||||
// For example: fsub --> fsubp
|
||||
bool IsFp =
|
||||
Name == "fsub" || Name == "fdiv" || Name == "fsubr" || Name == "fdivr";
|
||||
if (IsFp && Operands.size() == 1) {
|
||||
const char *Repl = StringSwitch<const char *>(Name)
|
||||
.Case("fsub", "fsubp")
|
||||
.Case("fdiv", "fdivp")
|
||||
.Case("fsubr", "fsubrp")
|
||||
.Case("fdivr", "fdivrp");
|
||||
static_cast<X86Operand &>(*Operands[0]).setTokenValue(Repl);
|
||||
}
|
||||
|
||||
// This is a terrible hack to handle "out[bwl]? %al, (%dx)" ->
|
||||
// "outb %al, %dx". Out doesn't take a memory form, but this is a widely
|
||||
// documented form in various unofficial manuals, so a lot of code uses it.
|
||||
|
@ -2793,8 +2793,10 @@ def : InstAlias<"idiv{q}\t{$src, %rax|rax, $src}", (IDIV64m i64mem:$src)>;
|
||||
// Various unary fpstack operations default to operating on on ST1.
|
||||
// For example, "fxch" -> "fxch %st(1)"
|
||||
def : InstAlias<"faddp", (ADD_FPrST0 ST1), 0>;
|
||||
def: InstAlias<"fadd", (ADD_FPrST0 ST1), 0>;
|
||||
def : InstAlias<"fsub{|r}p", (SUBR_FPrST0 ST1), 0>;
|
||||
def : InstAlias<"fsub{r|}p", (SUB_FPrST0 ST1), 0>;
|
||||
def : InstAlias<"fmul", (MUL_FPrST0 ST1), 0>;
|
||||
def : InstAlias<"fmulp", (MUL_FPrST0 ST1), 0>;
|
||||
def : InstAlias<"fdiv{|r}p", (DIVR_FPrST0 ST1), 0>;
|
||||
def : InstAlias<"fdiv{r|}p", (DIV_FPrST0 ST1), 0>;
|
||||
|
@ -15,3 +15,17 @@ _test2:
|
||||
.att_syntax prefix
|
||||
movl $255, -4(%rsp)
|
||||
// CHECK: movl $255, -4(%rsp)
|
||||
|
||||
_test3:
|
||||
fadd
|
||||
// CHECK: faddp %st(1)
|
||||
fmul
|
||||
// CHECK: fmulp %st(1)
|
||||
fsub
|
||||
// CHECK: fsubp %st(1)
|
||||
fsubr
|
||||
// CHECK: fsubrp %st(1)
|
||||
fdiv
|
||||
// CHECK: fdivp %st(1)
|
||||
fdivr
|
||||
// CHECK: fdivrp %st(1)
|
||||
|
@ -533,6 +533,20 @@ fsubrp ST(1)
|
||||
fdivp ST(1)
|
||||
fdivrp ST(1)
|
||||
|
||||
|
||||
// CHECK: faddp %st(1)
|
||||
// CHECK: fmulp %st(1)
|
||||
// CHECK: fsubrp %st(1)
|
||||
// CHECK: fsubp %st(1)
|
||||
// CHECK: fdivrp %st(1)
|
||||
// CHECK: fdivp %st(1)
|
||||
fadd
|
||||
fmul
|
||||
fsub
|
||||
fsubr
|
||||
fdiv
|
||||
fdivr
|
||||
|
||||
// CHECK: faddp %st(1)
|
||||
// CHECK: fmulp %st(1)
|
||||
// CHECK: fsubrp %st(1)
|
||||
|
Loading…
Reference in New Issue
Block a user