ldc/gen/dcompute/druntime.cpp
Nicholas Wilson ae6ff33fc1 [dcomptue] codegen (#2126)
* code generation

* simplify logic

* apply clang-format

* Undo completely inane choice by clang-format

* Guard the use of the command line args.
2017-05-24 08:55:32 +08:00

45 lines
1.3 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/druntime.cpp -----------------------------------------===//
//
// LDC the LLVM D compiler
//
// This file is distributed under the BSD-style LDC license. See the LICENSE
// file for details.
//
//===----------------------------------------------------------------------===//
#include "gen/dcompute/druntime.h"
#include "ddmd/dsymbol.h"
#include "ddmd/module.h"
#include "ddmd/identifier.h"
#include "ddmd/template.h"
#include "ddmd/declaration.h"
#include "ddmd/aggregate.h"
#include "id.h"
bool isFromLDC_DCompute(Dsymbol *sym) {
auto mod = sym->getModule();
if (!mod)
return false;
auto moduleDecl = mod->md;
if (!moduleDecl)
return false;
if (!moduleDecl->packages)
return false;
if (moduleDecl->packages->dim != 1)
return false;
if ((*moduleDecl->packages)[0] != Id::ldc)
return false;
return moduleDecl->id == Id::dcompute;
}
llvm::Optional<DcomputePointer> toDcomputePointer(StructDeclaration *sd) {
if (sd->ident != Id::dcPointer || !isFromLDC_DCompute(sd))
return llvm::Optional<DcomputePointer>(llvm::None);
TemplateInstance *ti = sd->isInstantiated();
int addrspace = isExpression((*ti->tiargs)[0])->toInteger();
Type *type = isType((*ti->tiargs)[1]);
return llvm::Optional<DcomputePointer>(DcomputePointer(addrspace, type));
}