1 //===-- SourceFile.cpp - SourceFile implementation for the debugger -------===//
3 // The LLVM Compiler Infrastructure
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the SourceFile class for the LLVM debugger.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/Debugger/SourceFile.h"
19 /// readFile - Load Filename
21 void SourceFile::readFile() {
25 /// calculateLineOffsets - Compute the LineOffset vector for the current file.
27 void SourceFile::calculateLineOffsets() const {
28 assert(LineOffset
.empty() && "Line offsets already computed!");
29 const char *BufPtr
= File
.charBase();
30 const char *FileStart
= BufPtr
;
31 const char *FileEnd
= FileStart
+ File
.size();
33 LineOffset
.push_back(BufPtr
-FileStart
);
35 // Scan until we get to a newline.
36 while (BufPtr
!= FileEnd
&& *BufPtr
!= '\n' && *BufPtr
!= '\r')
39 if (BufPtr
!= FileEnd
) {
40 ++BufPtr
; // Skip over the \n or \r
41 if (BufPtr
[-1] == '\r' && BufPtr
!= FileEnd
&& BufPtr
[0] == '\n')
42 ++BufPtr
; // Skip over dos/windows style \r\n's
44 } while (BufPtr
!= FileEnd
);
48 /// getSourceLine - Given a line number, return the start and end of the line
49 /// in the file. If the line number is invalid, or if the file could not be
50 /// loaded, null pointers are returned for the start and end of the file. Note
51 /// that line numbers start with 0, not 1.
52 void SourceFile::getSourceLine(unsigned LineNo
, const char *&LineStart
,
53 const char *&LineEnd
) const {
54 LineStart
= LineEnd
= 0;
55 if (!File
.isMapped()) return; // Couldn't load file, return null pointers
56 if (LineOffset
.empty()) calculateLineOffsets();
58 // Asking for an out-of-range line number?
59 if (LineNo
>= LineOffset
.size()) return;
61 // Otherwise, they are asking for a valid line, which we can fulfill.
62 LineStart
= File
.charBase()+LineOffset
[LineNo
];
64 if (LineNo
+1 < LineOffset
.size())
65 LineEnd
= File
.charBase()+LineOffset
[LineNo
+1];
67 LineEnd
= File
.charBase() + File
.size();
69 // If the line ended with a newline, strip it off.
70 while (LineEnd
!= LineStart
&& (LineEnd
[-1] == '\n' || LineEnd
[-1] == '\r'))
73 assert(LineEnd
>= LineStart
&& "We somehow got our pointers swizzled!");