ldc/gen/pragma.h
David Nadlinger 44b0f7b615 driver/gen/ir: clang-format the world
This uses the LLVM style, which makes sense for sharing code
with other LLVM projects. The DMD code we use will soon all
be in D anyway.
2015-11-02 00:28:01 +02:00

58 lines
1.4 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/pragma.h - LDC-specific pragma handling -------------*- C++ -*-===//
//
// LDC the LLVM D compiler
//
// This file is distributed under the BSD-style LDC license. See the LICENSE
// file for details.
//
//===----------------------------------------------------------------------===//
//
// Code for handling the LDC-specific pragmas.
//
//===----------------------------------------------------------------------===//
#ifndef LDC_GEN_PRAGMA_H
#define LDC_GEN_PRAGMA_H
#include <string>
class PragmaDeclaration;
class FuncDeclaration;
class Dsymbol;
struct Scope;
enum Pragma {
LLVMnone, // Not an LDC pragma.
LLVMignore, // Pragma has already been processed in DtoGetPragma, ignore.
LLVMintrinsic,
LLVMglobal_crt_ctor,
LLVMglobal_crt_dtor,
LLVMno_typeinfo,
LLVMalloca,
LLVMva_start,
LLVMva_copy,
LLVMva_end,
LLVMva_arg,
LLVMinline_asm,
LLVMinline_ir,
LLVMfence,
LLVMatomic_store,
LLVMatomic_load,
LLVMatomic_cmp_xchg,
LLVMatomic_rmw,
LLVMbitop_bt,
LLVMbitop_btc,
LLVMbitop_btr,
LLVMbitop_bts,
LLVMbitop_vld,
LLVMbitop_vst,
LLVMextern_weak
};
Pragma DtoGetPragma(Scope *sc, PragmaDeclaration *decl, std::string &arg1str);
void DtoCheckPragma(PragmaDeclaration *decl, Dsymbol *sym, Pragma llvm_internal,
const std::string &arg1str);
bool DtoIsIntrinsic(FuncDeclaration *fd);
bool DtoIsVaIntrinsic(FuncDeclaration *fd);
#endif // LDC_GEN_PRAGMA_H