//===--- SPIRVCallLowering.h - Call lowering --------------------*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// // // This file describes how to lower LLVM calls to machine code calls. // //===----------------------------------------------------------------------===// #ifndef LLVM_LIB_TARGET_SPIRV_SPIRVCALLLOWERING_H #define LLVM_LIB_TARGET_SPIRV_SPIRVCALLLOWERING_H #include "SPIRVGlobalRegistry.h" #include "llvm/CodeGen/GlobalISel/CallLowering.h" namespace llvm { class SPIRVGlobalRegistry; class SPIRVTargetLowering; class SPIRVCallLowering : public CallLowering { private: // Used to create and assign function, argument, and return type information. SPIRVGlobalRegistry *GR; // Used to postpone producing of indirect function pointer types // after all indirect calls info is collected struct SPIRVIndirectCall { const Type *RetTy = nullptr; SmallVector ArgTys; SmallVector ArgRegs; Register Callee; }; void produceIndirectPtrTypes(MachineIRBuilder &MIRBuilder) const; mutable SmallVector IndirectCalls; public: SPIRVCallLowering(const SPIRVTargetLowering &TLI, SPIRVGlobalRegistry *GR); // Built OpReturn or OpReturnValue. bool lowerReturn(MachineIRBuilder &MIRBuiler, const Value *Val, ArrayRef VRegs, FunctionLoweringInfo &FLI, Register SwiftErrorVReg) const override; // Build OpFunction, OpFunctionParameter, and any EntryPoint or Linkage data. bool lowerFormalArguments(MachineIRBuilder &MIRBuilder, const Function &F, ArrayRef> VRegs, FunctionLoweringInfo &FLI) const override; // Build OpCall, or replace with a builtin function. bool lowerCall(MachineIRBuilder &MIRBuilder, CallLoweringInfo &Info) const override; }; } // end namespace llvm #endif // LLVM_LIB_TARGET_SPIRV_SPIRVCALLLOWERING_H