aboutsummaryrefslogtreecommitdiff
path: root/Basic/SourceLocation.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-03-15 23:59:48 +0000
committerChris Lattner <sabre@nondot.org>2008-03-15 23:59:48 +0000
commitbda0b626e74513950405c27525af87e214e605e2 (patch)
tree60149b18fd68ccc1281c62fe4387b5a1da39a5fa /Basic/SourceLocation.cpp
parentfbdeba1c530dc3534a6f5b788e43d1a43c260128 (diff)
Make a major restructuring of the clang tree: introduce a top-level
lib dir and move all the libraries into it. This follows the main llvm tree, and allows the libraries to be built in parallel. The top level now enforces that all the libs are built before Driver, but we don't care what order the libs are built in. This speeds up parallel builds, particularly incremental ones. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48402 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Basic/SourceLocation.cpp')
-rw-r--r--Basic/SourceLocation.cpp79
1 files changed, 0 insertions, 79 deletions
diff --git a/Basic/SourceLocation.cpp b/Basic/SourceLocation.cpp
deleted file mode 100644
index eaf129f251..0000000000
--- a/Basic/SourceLocation.cpp
+++ /dev/null
@@ -1,79 +0,0 @@
-//==--- SourceLocation.cpp - Compact identifier for Source Files -*- 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 serialization methods for the SourceLocation class.
-// This file defines accessor methods for the FullSourceLoc class.
-//
-//===----------------------------------------------------------------------===//
-
-#include "clang/Basic/SourceLocation.h"
-#include "clang/Basic/SourceManager.h"
-#include "llvm/Bitcode/Serialize.h"
-#include "llvm/Bitcode/Deserialize.h"
-
-using namespace clang;
-
-void SourceLocation::Emit(llvm::Serializer& S) const {
- S.EmitInt(getRawEncoding());
-}
-
-SourceLocation SourceLocation::ReadVal(llvm::Deserializer& D) {
- return SourceLocation::getFromRawEncoding(D.ReadInt());
-}
-
-void SourceRange::Emit(llvm::Serializer& S) const {
- B.Emit(S);
- E.Emit(S);
-}
-
-SourceRange SourceRange::ReadVal(llvm::Deserializer& D) {
- SourceLocation A = SourceLocation::ReadVal(D);
- SourceLocation B = SourceLocation::ReadVal(D);
- return SourceRange(A,B);
-}
-
-FullSourceLoc FullSourceLoc::getLogicalLoc() {
- assert (isValid());
- return FullSourceLoc(SrcMgr->getLogicalLoc(Loc),*SrcMgr);
-}
-
-FullSourceLoc FullSourceLoc::getIncludeLoc() {
- assert (isValid());
- return FullSourceLoc(SrcMgr->getIncludeLoc(Loc),*SrcMgr);
-}
-
-unsigned FullSourceLoc::getLineNumber() {
- assert (isValid());
- return SrcMgr->getLineNumber(Loc);
-}
-
-unsigned FullSourceLoc::getColumnNumber() {
- assert (isValid());
- return SrcMgr->getColumnNumber(Loc);
-}
-
-const char* FullSourceLoc::getSourceName() const {
- assert (isValid());
- return SrcMgr->getSourceName(Loc);
-}
-
-const FileEntry* FullSourceLoc::getFileEntryForLoc() const {
- assert (isValid());
- return SrcMgr->getFileEntryForLoc(Loc);
-}
-
-const char * FullSourceLoc::getCharacterData() const {
- assert (isValid());
- return SrcMgr->getCharacterData(Loc);
-}
-
-const llvm::MemoryBuffer* FullSourceLoc::getBuffer() const {
- assert (isValid());
- return SrcMgr->getBuffer(Loc.getFileID());
-}