ldc/gen/dcompute/druntime.cpp
Nicholas Wilson ce4b7a88d7 [dcompute] gen/dcompute/druntime.* (#2124)
Add detection for the (non UDA) magic types of `ldc.dcompute`, currently only `Pointer` the address spaced pointer type.
2017-05-21 11:24:55 +08:00

47 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));
}