//===- AVR.cpp ------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "ABIInfoImpl.h" #include "TargetInfo.h" #include "clang/Basic/DiagnosticFrontend.h" usingnamespaceclang; usingnamespaceclang::CodeGen; //===----------------------------------------------------------------------===// // AVR ABI Implementation. Documented at // https://gcc.gnu.org/wiki/avr-gcc#Calling_Convention // https://gcc.gnu.org/wiki/avr-gcc#Reduced_Tiny //===----------------------------------------------------------------------===// namespace { class AVRABIInfo : public DefaultABIInfo { … }; class AVRTargetCodeGenInfo : public TargetCodeGenInfo { … }; } std::unique_ptr<TargetCodeGenInfo> CodeGen::createAVRTargetCodeGenInfo(CodeGenModule &CGM, unsigned NPR, unsigned NRR) { … }