Home
last modified time | relevance | path

Searched refs:m_compiler (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp364 : ExpressionParser(exe_scope, expr, generate_debug_info), m_compiler(), in ClangExpressionParser()
392 m_compiler = std::make_unique<CompilerInstance>(); in ClangExpressionParser()
395 m_compiler->createFileManager(FileSystem::Instance().GetVirtualFileSystem()); in ClangExpressionParser()
429 m_compiler->getTargetOpts().Triple = triple; in ClangExpressionParser()
431 m_compiler->getTargetOpts().Triple.c_str()); in ClangExpressionParser()
439 m_compiler->getTargetOpts().Triple = llvm::sys::getDefaultTargetTriple(); in ClangExpressionParser()
441 m_compiler->getTargetOpts().Triple.c_str()); in ClangExpressionParser()
445 if (m_compiler->getTargetOpts().Triple.find("arm64") == std::string::npos && in ClangExpressionParser()
446 m_compiler->getTargetOpts().Triple.find("arm") != std::string::npos && in ClangExpressionParser()
447 m_compiler->getTargetOpts().Triple.find("ios") != std::string::npos) { in ClangExpressionParser()
[all …]
H A DClangExpressionParser.h173 m_compiler; ///< The Clang compiler used to parse expressions into IR variable