1 //===-- AVRCallingConv.td - Calling Conventions for AVR ----*- tablegen -*-===//
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
7 //===----------------------------------------------------------------------===//
8 // This describes the calling conventions for AVR architecture.
9 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
12 // AVR Return Value Calling Convention
13 //===----------------------------------------------------------------------===//
15 def RetCC_AVR : CallingConv
17 // i8 is returned in R24.
18 CCIfType<[i8], CCAssignToReg<[R24]>>,
20 // i16 are returned in R25:R24, R23:R22, R21:R20 and R19:R18.
21 CCIfType<[i16], CCAssignToReg<[R25R24, R23R22, R21R20, R19R18]>>
24 // Special return value calling convention for runtime functions.
25 def RetCC_AVR_BUILTIN : CallingConv
27 CCIfType<[i8], CCAssignToReg<[R24,R25]>>,
28 CCIfType<[i16], CCAssignToReg<[R23R22, R25R24]>>
31 //===----------------------------------------------------------------------===//
32 // AVR Argument Calling Conventions
33 //===----------------------------------------------------------------------===//
35 // The calling conventions are implemented in custom C++ code
37 // Calling convention for variadic functions.
38 def ArgCC_AVR_Vararg : CallingConv
40 // i16 are always passed through the stack with an alignment of 1.
44 // Special argument calling convention for
45 // division runtime functions.
46 def ArgCC_AVR_BUILTIN_DIV : CallingConv
48 CCIfType<[i8], CCAssignToReg<[R24,R22]>>,
49 CCIfType<[i16], CCAssignToReg<[R25R24, R23R22]>>
52 //===----------------------------------------------------------------------===//
53 // Callee-saved register lists.
54 //===----------------------------------------------------------------------===//
56 def CSR_Normal : CalleeSavedRegs<(add R29, R28, (sequence "R%u", 17, 2))>;
57 def CSR_Interrupts : CalleeSavedRegs<(add (sequence "R%u", 31, 0))>;