mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
add support for 128-bit integer add/sub
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37154 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
02ae8b78ff
commit
a066810681
@ -1104,6 +1104,26 @@ def : Pat<(store (or (shl (loadi64 addr:$dst), CL:$amt),
|
||||
(srl GR64:$src2, (sub 64, CL:$amt))), addr:$dst),
|
||||
(SHLD64mrCL addr:$dst, GR64:$src2)>;
|
||||
|
||||
// X86 specific add which produces a flag.
|
||||
def : Pat<(addc GR64:$src1, GR64:$src2),
|
||||
(ADD64rr GR64:$src1, GR64:$src2)>;
|
||||
def : Pat<(addc GR64:$src1, (load addr:$src2)),
|
||||
(ADD64rm GR64:$src1, addr:$src2)>;
|
||||
def : Pat<(addc GR64:$src1, i64immSExt32:$src2),
|
||||
(ADD64ri32 GR64:$src1, imm:$src2)>;
|
||||
def : Pat<(addc GR64:$src1, i64immSExt8:$src2),
|
||||
(ADD64ri8 GR64:$src1, i64immSExt8:$src2)>;
|
||||
|
||||
def : Pat<(subc GR64:$src1, GR64:$src2),
|
||||
(SUB64rr GR64:$src1, GR64:$src2)>;
|
||||
def : Pat<(subc GR64:$src1, (load addr:$src2)),
|
||||
(SUB64rm GR64:$src1, addr:$src2)>;
|
||||
def : Pat<(subc GR64:$src1, imm:$src2),
|
||||
(SUB64ri32 GR64:$src1, i64immSExt32:$src2)>;
|
||||
def : Pat<(subc GR64:$src1, i64immSExt8:$src2),
|
||||
(SUB64ri8 GR64:$src1, i64immSExt8:$src2)>;
|
||||
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// X86-64 SSE Instructions
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
Loading…
x
Reference in New Issue
Block a user