ldc/gen/dcompute/abi-rewrites.h
2018-10-20 16:19:46 +02:00

38 lines
1.1 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/abi-rewrites.h - dcompute ABI rewrites -----*- C++ -*-===//
//
// LDC the LLVM D compiler
//
// This file is distributed under the BSD-style LDC license. See the LICENSE
// file for details.
//
//===----------------------------------------------------------------------===//
//
// Contains ABI rewrites for the dcompute targets SPIR-V and NVPTX
//
//===----------------------------------------------------------------------===//
#pragma once
#include "gen/abi.h"
#include "gen/dcompute/druntime.h"
#include "gen/irstate.h"
#include "gen/llvmhelpers.h"
#include "gen/logger.h"
#include "gen/structs.h"
#include "gen/tollvm.h"
struct DComputePointerRewrite : ABIRewrite {
LLType *type(Type *t) override {
auto ptr = toDcomputePointer(static_cast<TypeStruct *>(t)->sym);
return ptr->toLLVMType(true);
}
LLValue *getLVal(Type *dty, LLValue *v) override {
// TODO: Is this correct?
return DtoAllocaDump(v, this->type(dty));
}
LLValue *put(DValue *dv, bool, bool) override {
LLValue *address = getAddressOf(dv);
LLType *t = this->type(dv->type);
return loadFromMemory(address, t);
}
};