2015-06-29 23:51:55 +00:00
|
|
|
//===- WebAssemblyTargetMachine.cpp - Define TargetMachine for WebAssembly -==//
|
|
|
|
//
|
|
|
|
// 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 defines the WebAssembly-specific subclass of TargetMachine.
|
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "WebAssembly.h"
|
|
|
|
#include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
|
|
|
|
#include "WebAssemblyTargetMachine.h"
|
|
|
|
#include "WebAssemblyTargetObjectFile.h"
|
|
|
|
#include "WebAssemblyTargetTransformInfo.h"
|
|
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
|
|
|
#include "llvm/CodeGen/Passes.h"
|
|
|
|
#include "llvm/CodeGen/RegAllocRegistry.h"
|
|
|
|
#include "llvm/IR/Function.h"
|
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2015-07-01 23:41:25 +00:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2015-06-29 23:51:55 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "wasm"
|
|
|
|
|
|
|
|
extern "C" void LLVMInitializeWebAssemblyTarget() {
|
|
|
|
// Register the target.
|
2015-07-01 21:42:34 +00:00
|
|
|
RegisterTargetMachine<WebAssemblyTargetMachine> X(TheWebAssemblyTarget32);
|
|
|
|
RegisterTargetMachine<WebAssemblyTargetMachine> Y(TheWebAssemblyTarget64);
|
2015-06-29 23:51:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// WebAssembly Lowering public interface.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// Create an WebAssembly architecture model.
|
|
|
|
///
|
|
|
|
WebAssemblyTargetMachine::WebAssemblyTargetMachine(
|
|
|
|
const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
|
|
|
|
const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL)
|
|
|
|
: LLVMTargetMachine(T, TT.isArch64Bit()
|
|
|
|
? "e-p:64:64-i64:64-v128:8:128-n32:64-S128"
|
|
|
|
: "e-p:32:32-i64:64-v128:8:128-n32:64-S128",
|
|
|
|
TT, CPU, FS, Options, RM, CM, OL),
|
|
|
|
TLOF(make_unique<WebAssemblyTargetObjectFile>()) {
|
|
|
|
initAsmInfo();
|
|
|
|
|
|
|
|
// We need a reducible CFG, so disable some optimizations which tend to
|
|
|
|
// introduce irreducibility.
|
|
|
|
setRequiresStructuredCFG(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
WebAssemblyTargetMachine::~WebAssemblyTargetMachine() {}
|
|
|
|
|
|
|
|
const WebAssemblySubtarget *
|
|
|
|
WebAssemblyTargetMachine::getSubtargetImpl(const Function &F) const {
|
|
|
|
Attribute CPUAttr = F.getFnAttribute("target-cpu");
|
|
|
|
Attribute FSAttr = F.getFnAttribute("target-features");
|
|
|
|
|
|
|
|
std::string CPU = !CPUAttr.hasAttribute(Attribute::None)
|
|
|
|
? CPUAttr.getValueAsString().str()
|
|
|
|
: TargetCPU;
|
|
|
|
std::string FS = !FSAttr.hasAttribute(Attribute::None)
|
|
|
|
? FSAttr.getValueAsString().str()
|
|
|
|
: TargetFS;
|
|
|
|
|
|
|
|
auto &I = SubtargetMap[CPU + FS];
|
|
|
|
if (!I) {
|
|
|
|
// This needs to be done before we create a new subtarget since any
|
|
|
|
// creation will depend on the TM and the code generation flags on the
|
|
|
|
// function that reside in TargetOptions.
|
|
|
|
resetTargetOptions(F);
|
|
|
|
I = make_unique<WebAssemblySubtarget>(TargetTriple, CPU, FS, *this);
|
|
|
|
}
|
|
|
|
return I.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
/// WebAssembly Code Generator Pass Configuration Options.
|
|
|
|
class WebAssemblyPassConfig final : public TargetPassConfig {
|
|
|
|
public:
|
|
|
|
WebAssemblyPassConfig(WebAssemblyTargetMachine *TM, PassManagerBase &PM)
|
|
|
|
: TargetPassConfig(TM, PM) {}
|
|
|
|
|
|
|
|
WebAssemblyTargetMachine &getWebAssemblyTargetMachine() const {
|
|
|
|
return getTM<WebAssemblyTargetMachine>();
|
|
|
|
}
|
|
|
|
|
|
|
|
FunctionPass *createTargetRegisterAllocator(bool) override;
|
|
|
|
void addFastRegAlloc(FunctionPass *RegAllocPass) override;
|
|
|
|
void addOptimizedRegAlloc(FunctionPass *RegAllocPass) override;
|
|
|
|
|
|
|
|
void addIRPasses() override;
|
|
|
|
bool addPreISel() override;
|
|
|
|
bool addInstSelector() override;
|
|
|
|
bool addILPOpts() override;
|
|
|
|
void addPreRegAlloc() override;
|
|
|
|
void addRegAllocPasses(bool Optimized);
|
|
|
|
void addPostRegAlloc() override;
|
|
|
|
void addPreSched2() override;
|
|
|
|
void addPreEmitPass() override;
|
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
TargetIRAnalysis WebAssemblyTargetMachine::getTargetIRAnalysis() {
|
|
|
|
return TargetIRAnalysis([this](Function &F) {
|
|
|
|
return TargetTransformInfo(WebAssemblyTTIImpl(this, F));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
TargetPassConfig *
|
|
|
|
WebAssemblyTargetMachine::createPassConfig(PassManagerBase &PM) {
|
|
|
|
return new WebAssemblyPassConfig(this, PM);
|
|
|
|
}
|
|
|
|
|
|
|
|
FunctionPass *WebAssemblyPassConfig::createTargetRegisterAllocator(bool) {
|
|
|
|
return nullptr; // No reg alloc
|
|
|
|
}
|
|
|
|
|
|
|
|
void WebAssemblyPassConfig::addFastRegAlloc(FunctionPass *RegAllocPass) {
|
|
|
|
assert(!RegAllocPass && "WebAssembly uses no regalloc!");
|
|
|
|
addRegAllocPasses(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void WebAssemblyPassConfig::addOptimizedRegAlloc(FunctionPass *RegAllocPass) {
|
|
|
|
assert(!RegAllocPass && "WebAssembly uses no regalloc!");
|
|
|
|
addRegAllocPasses(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// The following functions are called from lib/CodeGen/Passes.cpp to modify
|
|
|
|
// the CodeGen pass sequence.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
void WebAssemblyPassConfig::addIRPasses() {
|
2015-07-01 23:41:25 +00:00
|
|
|
// FIXME: the default for this option is currently POSIX, whereas
|
|
|
|
// WebAssembly's MVP should default to Single.
|
|
|
|
if (TM->Options.ThreadModel == ThreadModel::Single)
|
|
|
|
addPass(createLowerAtomicPass());
|
|
|
|
else
|
|
|
|
// Expand some atomic operations. WebAssemblyTargetLowering has hooks which
|
|
|
|
// control specifically what gets lowered.
|
|
|
|
addPass(createAtomicExpandPass(TM));
|
2015-06-29 23:51:55 +00:00
|
|
|
|
|
|
|
TargetPassConfig::addIRPasses();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool WebAssemblyPassConfig::addPreISel() { return false; }
|
|
|
|
|
|
|
|
bool WebAssemblyPassConfig::addInstSelector() {
|
|
|
|
addPass(
|
|
|
|
createWebAssemblyISelDag(getWebAssemblyTargetMachine(), getOptLevel()));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool WebAssemblyPassConfig::addILPOpts() { return true; }
|
|
|
|
|
|
|
|
void WebAssemblyPassConfig::addPreRegAlloc() {}
|
|
|
|
|
|
|
|
void WebAssemblyPassConfig::addRegAllocPasses(bool Optimized) {}
|
|
|
|
|
2015-07-31 17:53:38 +00:00
|
|
|
void WebAssemblyPassConfig::addPostRegAlloc() {
|
|
|
|
// FIXME: the following passes dislike virtual registers. Disable them for now
|
|
|
|
// so that basic tests can pass. Future patches will remedy this.
|
|
|
|
//
|
|
|
|
// Fails with: Regalloc must assign all vregs.
|
|
|
|
disablePass(&PrologEpilogCodeInserterID);
|
|
|
|
// Fails with: should be run after register allocation.
|
|
|
|
disablePass(&MachineCopyPropagationID);
|
|
|
|
}
|
2015-06-29 23:51:55 +00:00
|
|
|
|
|
|
|
void WebAssemblyPassConfig::addPreSched2() {}
|
|
|
|
|
|
|
|
void WebAssemblyPassConfig::addPreEmitPass() {}
|