Home
last modified time | relevance | path

Searched refs:CIRGenerator (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenerator.cpp28 void CIRGenerator::anchor() {} in anchor()
30 CIRGenerator::CIRGenerator(clang::DiagnosticsEngine &diags, in CIRGenerator() function in CIRGenerator
35 CIRGenerator::~CIRGenerator() { in ~CIRGenerator()
47 void CIRGenerator::Initialize(ASTContext &astContext) { in Initialize()
70 bool CIRGenerator::verifyModule() const { return cgm->verifyModule(); } in verifyModule()
72 mlir::ModuleOp CIRGenerator::getModule() const { return cgm->getModule(); } in getModule()
74 bool CIRGenerator::HandleTopLevelDecl(DeclGroupRef group) { in HandleTopLevelDecl()
86 void CIRGenerator::HandleTranslationUnit(ASTContext &astContext) { in HandleTranslationUnit()
96 void CIRGenerator::HandleInlineFunctionDefinition(FunctionDecl *d) { in HandleInlineFunctionDefinition()
117 void CIRGenerator::emitDeferredDecls() { in emitDeferredDecls()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/CIR/
H A DCIRGenerator.h37 class CIRGenerator : public clang::ASTConsumer {
52 CIRGenerator &self;
54 HandlingTopLevelDeclRAII(CIRGenerator &self, bool emitDeferred = true)
73 CIRGenerator(clang::DiagnosticsEngine &diags,
76 ~CIRGenerator() override;
/freebsd/contrib/llvm-project/clang/lib/CIR/FrontendAction/
H A DCIRGenAction.cpp63 std::unique_ptr<CIRGenerator> Gen;
72 Gen(std::make_unique<CIRGenerator>(CI.getDiagnostics(), std::move(FS), in CIRGenConsumer()