blob: 75248cd10da69c86688d6fd290866c569d19e21b [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- SourceFile.cpp - SourceFile implementation for the debugger -------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the SourceFile class for the LLVM debugger.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Debugger/SourceFile.h"
15#include <cassert>
16
17using namespace llvm;
18
19/// readFile - Load Filename
20///
21void SourceFile::readFile() {
22 std::string ErrMsg;
23 if (!File.map(&ErrMsg))
24 throw ErrMsg;
25}
26
27/// calculateLineOffsets - Compute the LineOffset vector for the current file.
28///
29void SourceFile::calculateLineOffsets() const {
30 assert(LineOffset.empty() && "Line offsets already computed!");
Chris Lattner35aa79d2008-04-01 03:40:53 +000031 const char *BufPtr = (const char *)File.getBase();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000032 const char *FileStart = BufPtr;
33 const char *FileEnd = FileStart + File.size();
34 do {
35 LineOffset.push_back(BufPtr-FileStart);
36
37 // Scan until we get to a newline.
38 while (BufPtr != FileEnd && *BufPtr != '\n' && *BufPtr != '\r')
39 ++BufPtr;
40
41 if (BufPtr != FileEnd) {
42 ++BufPtr; // Skip over the \n or \r
43 if (BufPtr[-1] == '\r' && BufPtr != FileEnd && BufPtr[0] == '\n')
44 ++BufPtr; // Skip over dos/windows style \r\n's
45 }
46 } while (BufPtr != FileEnd);
47}
48
49
50/// getSourceLine - Given a line number, return the start and end of the line
51/// in the file. If the line number is invalid, or if the file could not be
52/// loaded, null pointers are returned for the start and end of the file. Note
53/// that line numbers start with 0, not 1.
54void SourceFile::getSourceLine(unsigned LineNo, const char *&LineStart,
55 const char *&LineEnd) const {
56 LineStart = LineEnd = 0;
57 if (!File.isMapped()) return; // Couldn't load file, return null pointers
58 if (LineOffset.empty()) calculateLineOffsets();
59
60 // Asking for an out-of-range line number?
61 if (LineNo >= LineOffset.size()) return;
62
63 // Otherwise, they are asking for a valid line, which we can fulfill.
Chris Lattner35aa79d2008-04-01 03:40:53 +000064 LineStart = (const char *)File.getBase()+LineOffset[LineNo];
Dan Gohmanf17a25c2007-07-18 16:29:46 +000065
66 if (LineNo+1 < LineOffset.size())
Chris Lattner35aa79d2008-04-01 03:40:53 +000067 LineEnd = (const char *)File.getBase()+LineOffset[LineNo+1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +000068 else
Chris Lattner35aa79d2008-04-01 03:40:53 +000069 LineEnd = (const char *)File.getBase() + File.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000070
71 // If the line ended with a newline, strip it off.
72 while (LineEnd != LineStart && (LineEnd[-1] == '\n' || LineEnd[-1] == '\r'))
73 --LineEnd;
74
75 assert(LineEnd >= LineStart && "We somehow got our pointers swizzled!");
76}