Home
last modified time | relevance | path

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

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