无法强制clang CompilerInstance对象将标头解析为C++文件

ced*_*emo 7 c++ clang llvm-clang

我有一个名为class.h的C++标头,我要解析:

class MyClass
{
  public:
    Class() {}
    ~Class() {}
    bool isTrue() const;
    bool isFalse() const;
  private:
    bool m_attrib;
};

bool MyClass::isTrue() const
{
  return true;
}
bool MyClass::isFalse() const
{
  return false;
}
Run Code Online (Sandbox Code Playgroud)

我使用clang编译器实例和AST使用者.我的所有代码都适用于c源文件.但我无法配置/强制CompilerInstance必须使用的语言.这是我使用的代码:

m_ci = new clang::CompilerInstance();
/*configure the langage to use*/
clang::CompilerInvocation *invocation = new clang::CompilerInvocation;
clang::LangOptions langOpts;
/*with langage = clang::IK_CXX*/
langOpts.CPlusPlus = 1; 
invocation->setLangDefaults(langOpts, langage);
m_ci->setInvocation(invocation);
m_ci->createDiagnostics();
llvm::IntrusiveRefCntPtr<clang::TargetOptions> pto( new clang::TargetOptions());
pto->Triple = llvm::sys::getDefaultTargetTriple();
clang::TargetInfo *pti = clang::TargetInfo::CreateTargetInfo(m_ci->getDiagnostics(), pto.getPtr());
m_ci->setTarget(pti);
m_ci->createFileManager();
m_ci->createSourceManager(ci->getFileManager());
m_ci->createPreprocessor();
/*add some header search paths*/
m_hso = llvm::IntrusiveRefCntPtr<clang::HeaderSearchOptions>(new clang::HeaderSearchOptions());
m_hso->AddPath( pathName.c_str(),
                clang::frontend::Angled,
                false,
                false);
/*add the source file*/
const clang::FileEntry *pFile = m_ci->getFileManager().getFile(fileName.c_str());
m_ci->getSourceManager().createMainFileID(pFile);
/*parse*/
clang::InitializePreprocessor(m_ci->getPreprocessor(),
                              m_ci->getPreprocessorOpts(),
                              *m_hso,
                              m_ci->getFrontendOpts()); 
m_ci->createASTContext();
m_headerElements = new HeaderElements();
m_ci->setASTConsumer(m_headerElements);
m_ci->getDiagnosticClient().BeginSourceFile(m_ci->getLangOpts(),
                                            &m_ci->getPreprocessor());
clang::ParseAST(m_ci->getPreprocessor(), m_headerElements, m_ci->getASTContext());
m_ci->getDiagnosticClient().EndSourceFile();
Run Code Online (Sandbox Code Playgroud)

当我测试它时,解析器会抛出这样的错误:

error: unknown type name 'class'
Run Code Online (Sandbox Code Playgroud)

而且测试

 m_ci->getLangOpts.CPlusPlus == 0 
Run Code Online (Sandbox Code Playgroud)

是的,所以似乎LangOptions没有应用于CompilerInstance.

ced*_*emo 11

经过一些测试和大量搜索,我已经想出了如何做到这一点.要设置CompilerInstance对象的语言选项,您只需执行以下操作:

clang::CompilerInstance ci;
//initialize lot of stuff
ci.createDiagnostics();
ci.createFileManager();
ci.createSourceManager(m_ci.getFileManager());
std::shared_ptr<clang::TargetOptions> pto = std::make_shared<clang::TargetOptions>();
pto->Triple = llvm::sys::getDefaultTargetTriple();
clang::TargetInfo *pti = clang::TargetInfo::CreateTargetInfo(ci.getDiagnostics(), pto);
ci.setTarget(pti);
//force langage to C++
ci.getLangOpts().CPlusPlus = 1;
ci.createPreprocessor(clang::TU_Complete);
Run Code Online (Sandbox Code Playgroud)

重要的是在创建或重新创建预处理器之前配置LangOpts CompilerInstance::createPreprocessor()