Searched refs:createGlobal (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DProgram.h69 llvm::Optional<unsigned> createGlobal(const ValueDecl *VD);
72 llvm::Optional<unsigned> createGlobal(const Expr *E);
133 llvm::Optional<unsigned> createGlobal(const DeclTy &D, QualType Ty,
H A DProgram.cpp115 if (auto Idx = createGlobal(VD)) {
134 if (auto Idx = createGlobal(PD, Ty, /*isStatic=*/true, /*isExtern=*/true)) {
141 llvm::Optional<unsigned> Program::createGlobal(const ValueDecl *VD) { function in class:Program
150 if (auto Idx = createGlobal(VD, VD->getType(), IsStatic, IsExtern)) {
158 llvm::Optional<unsigned> Program::createGlobal(const Expr *E) { function in class:Program
159 return createGlobal(E, E->getType(), /*isStatic=*/true, /*isExtern=*/false);
162 llvm::Optional<unsigned> Program::createGlobal(const DeclTy &D, QualType Ty, function in class:Program
H A DByteCodeExprGen.cpp534 if (Optional<unsigned> I = P.createGlobal(VD)) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/CodeGen/
H A DConstantInitBuilder.h77 llvm::GlobalVariable *createGlobal(llvm::Constant *initializer,
371 return this->Builder.createGlobal(asImpl().finishImpl(),
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DConstantInitBuilder.cpp67 ConstantInitBuilderBase::createGlobal(llvm::Constant *initializer, function in class:ConstantInitBuilderBase

Completed in 111 milliseconds