to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
72 lines
2.5 KiB
C++
72 lines
2.5 KiB
C++
//===-- WebAssemblyUtilities - WebAssembly Utility Functions ---*- 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// \file
|
|
/// This file contains the declaration of the WebAssembly-specific
|
|
/// utility functions.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIB_TARGET_WEBASSEMBLY_WEBASSEMBLYUTILITIES_H
|
|
#define LLVM_LIB_TARGET_WEBASSEMBLY_WEBASSEMBLYUTILITIES_H
|
|
|
|
#include "llvm/CodeGen/MachineBasicBlock.h"
|
|
|
|
namespace llvm {
|
|
|
|
class WebAssemblyFunctionInfo;
|
|
|
|
namespace WebAssembly {
|
|
|
|
bool isArgument(const MachineInstr &MI);
|
|
bool isCopy(const MachineInstr &MI);
|
|
bool isTee(const MachineInstr &MI);
|
|
bool isChild(const MachineInstr &MI, const WebAssemblyFunctionInfo &MFI);
|
|
bool isCallDirect(const MachineInstr &MI);
|
|
bool isCallIndirect(const MachineInstr &MI);
|
|
bool isMarker(const MachineInstr &MI);
|
|
bool isThrow(const MachineInstr &MI);
|
|
bool isRethrow(const MachineInstr &MI);
|
|
bool isCatch(const MachineInstr &MI);
|
|
bool mayThrow(const MachineInstr &MI);
|
|
|
|
/// Returns the operand number of a callee, assuming the argument is a call
|
|
/// instruction.
|
|
unsigned getCalleeOpNo(const MachineInstr &MI);
|
|
|
|
/// Returns if the given BB is a single BB terminate pad which starts with a
|
|
/// 'catch' instruction.
|
|
bool isCatchTerminatePad(const MachineBasicBlock &MBB);
|
|
/// Returns if the given BB is a single BB terminate pad which starts with a
|
|
/// 'catch_all' insrtruction.
|
|
bool isCatchAllTerminatePad(const MachineBasicBlock &MBB);
|
|
|
|
// Exception-related function names
|
|
extern const char *const ClangCallTerminateFn;
|
|
extern const char *const CxaBeginCatchFn;
|
|
extern const char *const CxaRethrowFn;
|
|
extern const char *const StdTerminateFn;
|
|
extern const char *const PersonalityWrapperFn;
|
|
|
|
/// Return the "bottom" block of an entity, which can be either a MachineLoop or
|
|
/// WebAssemblyException. This differs from MachineLoop::getBottomBlock in that
|
|
/// it works even if the entity is discontiguous.
|
|
template <typename T> MachineBasicBlock *getBottom(const T *Unit) {
|
|
MachineBasicBlock *Bottom = Unit->getHeader();
|
|
for (MachineBasicBlock *MBB : Unit->blocks())
|
|
if (MBB->getNumber() > Bottom->getNumber())
|
|
Bottom = MBB;
|
|
return Bottom;
|
|
}
|
|
|
|
} // end namespace WebAssembly
|
|
|
|
} // end namespace llvm
|
|
|
|
#endif
|