Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / lib / Target / LoongArch / LoongArchCallingConv.td
blob9844163163a554d8a1fcd2a68946b71c2ebac07e
1 //=- LoongArchCallingConv.td - Calling Conventions LoongArch -*- tablegen -*-=//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This describes the calling conventions for the LoongArch architecture.
11 //===----------------------------------------------------------------------===//
13 def CSR_ILP32S_LP64S
14     : CalleeSavedRegs<(add R1, (sequence "R%u", 22, 31))>;
16 def CSR_ILP32F_LP64F
17     : CalleeSavedRegs<(add CSR_ILP32S_LP64S, (sequence "F%u", 24, 31))>;
19 def CSR_ILP32D_LP64D
20     : CalleeSavedRegs<(add CSR_ILP32S_LP64S, (sequence "F%u_64", 24, 31))>;
22 // Needed for implementation of LoongArchRegisterInfo::getNoPreservedMask()
23 def CSR_NoRegs : CalleeSavedRegs<(add)>;