2015-06-29 23:51:55 +00:00
|
|
|
//===-- WebAssembly.h - Top-level interface for WebAssembly ----*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// \file
|
|
|
|
/// \brief This file contains the entry points for global functions defined in
|
|
|
|
/// the LLVM WebAssembly back-end.
|
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_LIB_TARGET_WEBASSEMBLY_WEBASSEMBLY_H
|
|
|
|
#define LLVM_LIB_TARGET_WEBASSEMBLY_WEBASSEMBLY_H
|
|
|
|
|
|
|
|
#include "llvm/Support/CodeGen.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class WebAssemblyTargetMachine;
|
|
|
|
class FunctionPass;
|
|
|
|
|
2015-11-25 16:55:01 +00:00
|
|
|
FunctionPass *createWebAssemblyOptimizeReturned();
|
|
|
|
|
2015-06-29 23:51:55 +00:00
|
|
|
FunctionPass *createWebAssemblyISelDag(WebAssemblyTargetMachine &TM,
|
|
|
|
CodeGenOpt::Level OptLevel);
|
|
|
|
|
2015-11-25 16:55:01 +00:00
|
|
|
FunctionPass *createWebAssemblyStoreResults();
|
2015-11-16 16:18:28 +00:00
|
|
|
FunctionPass *createWebAssemblyRegStackify();
|
|
|
|
FunctionPass *createWebAssemblyRegColoring();
|
2015-09-16 16:51:30 +00:00
|
|
|
FunctionPass *createWebAssemblyCFGStackify();
|
2015-11-12 17:04:33 +00:00
|
|
|
FunctionPass *createWebAssemblyRegNumbering();
|
2015-11-25 16:55:01 +00:00
|
|
|
FunctionPass *createWebAssemblyPeephole();
|
2015-09-16 16:51:30 +00:00
|
|
|
|
2015-10-16 16:35:49 +00:00
|
|
|
FunctionPass *createWebAssemblyRelooper();
|
|
|
|
|
2015-06-29 23:51:55 +00:00
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|