Skip to content

Commit

Permalink
Fix pch
Browse files Browse the repository at this point in the history
  • Loading branch information
Andersbakken committed Mar 22, 2012
1 parent f264873 commit a15940f
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 17 deletions.
19 changes: 19 additions & 0 deletions clang.sup
@@ -0,0 +1,19 @@
{
1
Memcheck:Cond
fun:_ZNK5clang4Expr21refersToVectorElementEv
obj:*
}


{
2
Memcheck:Cond
fun:_ZNK5clang4Expr21refersToVectorElementEv
}
{
3
Memcheck:Cond
fun:_ZNK5clang4Expr17isTemporaryObjectERNS_10ASTContextEPKNS_13CXXRecordDeclE
}

74 changes: 57 additions & 17 deletions rdm/Indexer.cpp
Expand Up @@ -191,6 +191,7 @@ class IndexerImpl
QMutex implMutex;
QWaitCondition implCond;
QSet<QByteArray> indexing;
QSet<QByteArray> pchHeaderError;

QByteArray path;
int lastJobId;
Expand Down Expand Up @@ -442,22 +443,29 @@ static inline QList<QByteArray> extractPchFiles(const QList<QByteArray>& args)
if (nextIsPch) {
nextIsPch = false;
out.append(arg);
} else if (arg == "-include-pch")
} else if (arg == "-include-pch") {
nextIsPch = true;
}
}
return out;
}

void IndexerJob::run()
{
QList<QByteArray> pchFiles = extractPchFiles(m_args);
QList<QByteArray> args = m_args;
QList<QByteArray> pchFiles = extractPchFiles(args);
if (!pchFiles.isEmpty()) {
QMutexLocker locker(&m_impl->implMutex);
bool wait;
do {
wait = false;
foreach (const QByteArray& pchFile, pchFiles) {
if (m_impl->indexing.contains(pchFile)) {
foreach (const QByteArray &pchFile, pchFiles) {
if (m_impl->pchHeaderError.contains(pchFile)) {
int idx = args.indexOf(pchFile);
Q_ASSERT(idx > 0);
args.removeAt(idx);
args.removeAt(idx - 1);
} else if (m_impl->indexing.contains(pchFile)) {
wait = true;
break;
}
Expand All @@ -468,27 +476,43 @@ void IndexerJob::run()
} while (wait);
}

QVarLengthArray<const char*, 32> clangArgs(m_args.size());
QVarLengthArray<const char*, 32> clangArgs(args.size());
QByteArray clangLine = "clang ";
bool nextIsPch = false;
bool nextIsPch = false, nextIsX = false;
QByteArray pchName;
bool isPch = false;

int idx = 0;
foreach(const QByteArray& arg, m_args) {
foreach(const QByteArray& arg, args) {
if (arg.isEmpty())
continue;

if (nextIsPch) {
nextIsPch = false;
Resource resource(arg, Resource::NoLock);
pchFiles.append(resource.hashedFileName(Resource::AST));
clangArgs[idx++] = pchFiles.last().constData();
} else {
clangArgs[idx++] = arg.constData();
if (arg == "-include-pch") {
nextIsPch = true;
}
clangLine += pchFiles.last().constData();
clangLine += " ";
continue;
}

if (nextIsX) {
nextIsX = false;
isPch = (arg == "c++-header" || arg == "c-header");
}
clangArgs[idx++] = arg.constData();
clangLine += arg;
clangLine += " ";
if (arg == "-include-pch") {
nextIsPch = true;
} else if (arg == "-x") {
nextIsX = true;
}
}
if (isPch) {
Resource resource(m_in, Resource::NoLock);
pchName = resource.hashedFileName(Resource::AST);
}
clangLine += m_in;

Expand All @@ -497,11 +521,22 @@ void IndexerJob::run()
clangArgs.data(), idx,
0, 0, CXTranslationUnit_Incomplete);
log(1) << "loading unit" << clangLine << (unit != 0);
bool pchError = false;

if (unit) {
if (!unit) {
pchError = isPch;
error() << "got 0 unit for" << clangLine;
} else {
clang_getInclusions(unit, inclusionVisitor, this);
clang_visitChildren(clang_getTranslationUnitCursor(unit), indexVisitor, this);
error() << "visiting" << m_in << m_references.size() << mSymbols.size();
if (isPch) {
Q_ASSERT(!pchName.isEmpty());
if (clang_saveTranslationUnit(unit, pchName.constData(), clang_defaultSaveOptions(unit)) != CXSaveError_None) {
error() << "Couldn't save pch file" << m_in << pchName;
pchError = true;
}
}
clang_disposeTranslationUnit(unit);

const QHash<RTags::Location, QPair<RTags::Location, bool> >::const_iterator end = m_references.end();
Expand Down Expand Up @@ -545,11 +580,16 @@ void IndexerJob::run()
}
m_impl->syncer->addSymbols(mSymbols);
m_impl->syncer->addSymbolNames(mSymbolNames);
} else {
error() << "got 0 unit for" << m_in;
}
clang_disposeIndex(index);

if (isPch) {
QMutexLocker locker(&m_impl->implMutex);
if (pchError) {
m_impl->pchHeaderError.insert(m_in);
} else {
m_impl->pchHeaderError.remove(m_in);
}
}
emit done(m_id, m_in);
}

Expand Down Expand Up @@ -608,7 +648,7 @@ int Indexer::index(const QByteArray& input, const QList<QByteArray>& arguments)

if (!m_impl->timerRunning) {
m_impl->timerRunning = true;
m_impl->timer.restart();
m_impl->timer.start();
}

QThreadPool::globalInstance()->start(job);
Expand Down
10 changes: 10 additions & 0 deletions shared/Log.cpp
Expand Up @@ -26,6 +26,7 @@ static void log(int level, const char *format, va_list v)
const QByteArray now = QDateTime::currentDateTime().toString("dd/MM/yy hh:mm:ss").toLocal8Bit();
static QMutex mutex;
QMutexLocker lock(&mutex); // serialize
#if 0
static const char *names[] = { "Error: ", "Warning: ", "Debug: ", "Verbose: " };
const char *name = level < static_cast<int>(sizeof(names)) / 4 ? names[level] : "";
if (level <= sLevel)
Expand All @@ -34,6 +35,15 @@ static void log(int level, const char *format, va_list v)
fprintf(sFile, "%s: %s%s\n", now.constData(), name, msg);
fflush(sFile);
}
#else
if (level <= sLevel)
fprintf(stderr, "%s: %s\n", now.constData(), msg);
if (sFile) {
fprintf(sFile, "%s: %s\n", now.constData(), msg);
fflush(sFile);
}
#endif

if (msg != buf)
delete []msg;
}
Expand Down

0 comments on commit a15940f

Please sign in to comment.