Home
last modified time | relevance | path

Searched refs:setGC (Results 1 – 12 of 12) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DLLVMContext.h133 void setGC(const Function &Fn, std::string GCName);
H A DFunction.h309 void setGC(std::string Str);
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DLLVMContext.cpp318 void LLVMContext::setGC(const Function &Fn, std::string GCName) { in setGC() function in LLVMContext
H A DFunction.cpp719 void Function::setGC(std::string Str) { in setGC() function in Function
721 getContext().setGC(*this, std::move(Str)); in setGC()
744 setGC(Src->getGC()); in copyAttributesFrom()
H A DCore.cpp2411 F->setGC(GC); in LLVMSetGC()
/openbsd-src/gnu/llvm/llvm/docs/
H A DGarbageCollection.rst29 F.setGC(<collector description name>);
212 compiler. Its programmatic equivalent is the ``setGC`` method of ``Function``.
403 F.setGC("shadow-stack");
504 F.setGC("statepoint-example");
526 F.setGC("coreclr");
589 attribute or, equivalently, with the ``setGC`` method of ``Function``.
/openbsd-src/gnu/llvm/clang/lib/ARCMigrate/
H A DARCMT.cpp195 CInvok->getLangOpts()->setGC(LangOptions::NonGC); in createInvocationForMigration()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp2067 Caller->setGC(CalledFunc->getGC()); in InlineFunction()
/openbsd-src/gnu/llvm/clang/lib/Frontend/
H A DCompilerInvocation.cpp3716 Opts.setGC(LangOptions::GCOnly); in ParseLangArgs()
3718 Opts.setGC(LangOptions::HybridGC); in ParseLangArgs()
/openbsd-src/gnu/llvm/llvm/bindings/ocaml/llvm/
H A Dllvm.mli1588 [gc]. See the method [llvm::Function::setGC]. *)
/openbsd-src/gnu/llvm/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4043 Func->setGC(GCTable[Record[8] - 1]); in parseFunctionRecord()
/openbsd-src/gnu/llvm/llvm/lib/AsmParser/
H A DLLParser.cpp6055 if (!GC.empty()) Fn->setGC(GC); in parseFunctionHeader()