f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
87 lines
2.5 KiB
C++
87 lines
2.5 KiB
C++
//===- CIndex.cpp - Clang-C Source Indexing Library -----------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file implements the Clang-C Source Indexing library.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "CIndexer.h"
|
|
#include "clang/AST/Decl.h"
|
|
#include "clang/AST/DeclVisitor.h"
|
|
#include "clang/AST/StmtVisitor.h"
|
|
#include "clang/Basic/FileManager.h"
|
|
#include "clang/Basic/SourceManager.h"
|
|
#include "clang/Basic/Version.h"
|
|
#include "clang/Sema/CodeCompleteConsumer.h"
|
|
#include "llvm/ADT/StringExtras.h"
|
|
#include "llvm/Config/llvm-config.h"
|
|
#include "llvm/Support/Compiler.h"
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
#include "llvm/Support/Program.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
#include <cstdio>
|
|
#include <sstream>
|
|
#include <vector>
|
|
|
|
#ifdef __CYGWIN__
|
|
#include <cygwin/version.h>
|
|
#include <sys/cygwin.h>
|
|
#define LLVM_ON_WIN32 1
|
|
#endif
|
|
|
|
#ifdef LLVM_ON_WIN32
|
|
#include <windows.h>
|
|
#else
|
|
#include <dlfcn.h>
|
|
#endif
|
|
|
|
using namespace clang;
|
|
|
|
const std::string &CIndexer::getClangResourcesPath() {
|
|
// Did we already compute the path?
|
|
if (!ResourcesPath.empty())
|
|
return ResourcesPath;
|
|
|
|
SmallString<128> LibClangPath;
|
|
|
|
// Find the location where this library lives (libclang.dylib).
|
|
#ifdef LLVM_ON_WIN32
|
|
MEMORY_BASIC_INFORMATION mbi;
|
|
char path[MAX_PATH];
|
|
VirtualQuery((void *)(uintptr_t)clang_createTranslationUnit, &mbi,
|
|
sizeof(mbi));
|
|
GetModuleFileNameA((HINSTANCE)mbi.AllocationBase, path, MAX_PATH);
|
|
|
|
#ifdef __CYGWIN__
|
|
char w32path[MAX_PATH];
|
|
strcpy(w32path, path);
|
|
#if CYGWIN_VERSION_API_MAJOR > 0 || CYGWIN_VERSION_API_MINOR >= 181
|
|
cygwin_conv_path(CCP_WIN_A_TO_POSIX, w32path, path, MAX_PATH);
|
|
#else
|
|
cygwin_conv_to_full_posix_path(w32path, path);
|
|
#endif
|
|
#endif
|
|
|
|
LibClangPath += llvm::sys::path::parent_path(path);
|
|
#else
|
|
// This silly cast below avoids a C++ warning.
|
|
Dl_info info;
|
|
if (dladdr((void *)(uintptr_t)clang_createTranslationUnit, &info) == 0)
|
|
llvm_unreachable("Call to dladdr() failed");
|
|
|
|
// We now have the CIndex directory, locate clang relative to it.
|
|
LibClangPath += llvm::sys::path::parent_path(info.dli_fname);
|
|
#endif
|
|
|
|
llvm::sys::path::append(LibClangPath, "clang", CLANG_VERSION_STRING);
|
|
|
|
// Cache our result.
|
|
ResourcesPath = LibClangPath.str();
|
|
return ResourcesPath;
|
|
}
|