mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-08 04:07:07 +00:00
4925c39604
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227338 91177308-0d34-0410-b5e6-96231b3b80d8
41 lines
1.4 KiB
TableGen
41 lines
1.4 KiB
TableGen
//===-- HexagonIntrinsicsDerived.td - Derived intrinsics ---*- tablegen -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Multiply 64-bit and use lower result
|
|
//
|
|
// Optimized with intrinisics accumulates
|
|
//
|
|
def : Pat <(mul DoubleRegs:$src1, DoubleRegs:$src2),
|
|
(i64
|
|
(A2_combinew
|
|
(M2_maci
|
|
(M2_maci
|
|
(i32
|
|
(EXTRACT_SUBREG
|
|
(i64
|
|
(M2_dpmpyuu_s0 (i32 (EXTRACT_SUBREG (i64 DoubleRegs:$src1),
|
|
subreg_loreg)),
|
|
(i32 (EXTRACT_SUBREG (i64 DoubleRegs:$src2),
|
|
subreg_loreg)))),
|
|
subreg_hireg)),
|
|
(i32 (EXTRACT_SUBREG (i64 DoubleRegs:$src1), subreg_loreg)),
|
|
(i32 (EXTRACT_SUBREG (i64 DoubleRegs:$src2), subreg_hireg))),
|
|
(i32 (EXTRACT_SUBREG (i64 DoubleRegs:$src2), subreg_loreg)),
|
|
(i32 (EXTRACT_SUBREG (i64 DoubleRegs:$src1), subreg_hireg))),
|
|
(i32
|
|
(EXTRACT_SUBREG
|
|
(i64
|
|
(M2_dpmpyuu_s0
|
|
(i32 (EXTRACT_SUBREG (i64 DoubleRegs:$src1), subreg_loreg)),
|
|
(i32 (EXTRACT_SUBREG (i64 DoubleRegs:$src2),
|
|
subreg_loreg)))), subreg_loreg))))>;
|
|
|
|
|
|
|