ldc/gen/dcompute/target.cpp
2019-06-21 15:39:45 +02:00

63 lines
1.6 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//===-- gen/dcompute/target.cpp -------------------------------------------===//
//
// LDC the LLVM D compiler
//
// This file is distributed under the BSD-style LDC license. See the LICENSE
// file for details.
//
//===----------------------------------------------------------------------===//
#if LDC_LLVM_SUPPORTED_TARGET_SPIRV || LDC_LLVM_SUPPORTED_TARGET_NVPTX
#include "dmd/dsymbol.h"
#include "dmd/errors.h"
#include "dmd/module.h"
#include "dmd/scope.h"
#include "driver/linker.h"
#include "driver/toobj.h"
#include "driver/cl_options.h"
#include "gen/dcompute/target.h"
#include "gen/llvmhelpers.h"
#include "gen/runtime.h"
#include <string>
void DComputeTarget::doCodeGen(Module *m) {
// process module members
for (unsigned k = 0; k < m->members->dim; k++) {
Dsymbol *dsym = (*m->members)[k];
assert(dsym);
Declaration_codegen(dsym, _ir);
}
if (global.errors)
fatal();
}
void DComputeTarget::emit(Module *m) {
// Reset the global ABI to the target's ABI. Necessary because we have
// multiple ABI we are trying to target. Also reset gIR. These are both
// reused. MAJOR HACK.
gABI = abi;
gIR = _ir;
gTargetMachine = targetMachine;
doCodeGen(m);
}
void DComputeTarget::writeModule() {
addMetadata();
std::string filename;
llvm::raw_string_ostream os(filename);
os << opts::dcomputeFilePrefix << '_' << short_name << tversion << '_'
<< (global.params.is64bit ? 64 : 32) << '.' << binSuffix;
const char *path =
FileName::combine(global.params.objdir.ptr, os.str().c_str());
::writeModule(&_ir->module, path);
delete _ir;
_ir = nullptr;
}
#endif