2008-10-12 09:44:03 +04:00
|
|
|
//===--- TokenRewriter.h - Token-based Rewriter -----------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the TokenRewriter class, which is used for code
|
|
|
|
// transformations.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_CLANG_TOKENREWRITER_H
|
|
|
|
#define LLVM_CLANG_TOKENREWRITER_H
|
|
|
|
|
|
|
|
#include "clang/Basic/SourceLocation.h"
|
2008-10-12 10:09:52 +04:00
|
|
|
#include "llvm/ADT/OwningPtr.h"
|
2008-10-12 09:44:03 +04:00
|
|
|
#include <list>
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
class Token;
|
|
|
|
class LangOptions;
|
2008-10-12 10:09:52 +04:00
|
|
|
class ScratchBuffer;
|
2008-10-12 09:44:03 +04:00
|
|
|
|
|
|
|
class TokenRewriter {
|
|
|
|
/// TokenList - This is the list of raw tokens that make up this file. Each
|
|
|
|
/// of these tokens has a unique SourceLocation, which is a FileID.
|
|
|
|
std::list<Token> TokenList;
|
|
|
|
|
|
|
|
/// TokenRefTy - This is the type used to refer to a token in the TokenList.
|
|
|
|
typedef std::list<Token>::iterator TokenRefTy;
|
|
|
|
|
|
|
|
/// TokenAtLoc - This map indicates which token exists at a specific
|
|
|
|
/// SourceLocation. Since each token has a unique SourceLocation, this is a
|
|
|
|
/// one to one map. The token can return its own location directly, to map
|
|
|
|
/// backwards.
|
|
|
|
std::map<SourceLocation, TokenRefTy> TokenAtLoc;
|
|
|
|
|
2008-10-12 10:09:52 +04:00
|
|
|
/// ScratchBuf - This is the buffer that we create scratch tokens from.
|
|
|
|
///
|
|
|
|
llvm::OwningPtr<ScratchBuffer> ScratchBuf;
|
|
|
|
|
|
|
|
TokenRewriter(const TokenRewriter&); // DO NOT IMPLEMENT
|
|
|
|
void operator=(const TokenRewriter&); // DO NOT IMPLEMENT.
|
2008-10-12 09:44:03 +04:00
|
|
|
public:
|
|
|
|
/// TokenRewriter - This creates a TokenRewriter for the file with the
|
|
|
|
/// specified FileID.
|
2009-01-17 09:22:33 +03:00
|
|
|
TokenRewriter(FileID FID, SourceManager &SM, const LangOptions &LO);
|
2008-10-12 10:09:52 +04:00
|
|
|
~TokenRewriter();
|
2008-10-12 09:44:03 +04:00
|
|
|
|
|
|
|
typedef std::list<Token>::const_iterator token_iterator;
|
|
|
|
token_iterator token_begin() const { return TokenList.begin(); }
|
|
|
|
token_iterator token_end() const { return TokenList.end(); }
|
|
|
|
|
2008-10-12 10:09:52 +04:00
|
|
|
|
|
|
|
token_iterator AddTokenBefore(token_iterator I, const char *Val);
|
|
|
|
token_iterator AddTokenAfter(token_iterator I, const char *Val) {
|
|
|
|
assert(I != token_end() && "Cannot insert after token_end()!");
|
|
|
|
return AddTokenBefore(++I, Val);
|
|
|
|
}
|
|
|
|
|
2008-10-12 09:44:03 +04:00
|
|
|
private:
|
2008-10-12 10:09:52 +04:00
|
|
|
/// RemapIterator - Convert from token_iterator (a const iterator) to
|
|
|
|
/// TokenRefTy (a non-const iterator).
|
|
|
|
TokenRefTy RemapIterator(token_iterator I);
|
|
|
|
|
2008-10-12 09:44:03 +04:00
|
|
|
/// AddToken - Add the specified token into the Rewriter before the other
|
|
|
|
/// position.
|
2008-10-12 10:09:52 +04:00
|
|
|
TokenRefTy AddToken(const Token &T, TokenRefTy Where);
|
2008-10-12 09:44:03 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // end namespace clang
|
|
|
|
|
|
|
|
#endif
|