HomeSort by relevance Sort by last modified time
    Searched refs:Line (Results 76 - 100 of 170) sorted by null

1 2 34 5 6 7

  /external/llvm/include/llvm/MC/
MCContext.h 106 /// We now emit a line table for each compile unit. To reduce the prologue
107 /// size of each line table, the files and directories used by each compile
113 /// The current dwarf line information from the last dwarf .loc directive.
124 /// The default initial text section that we generate dwarf debugging line
147 /// The dwarf line information from the .loc directives for the sections
155 /// The line table start symbol for each Compile Unit.
319 void addMCLineSection(const MCSection *Sec, MCLineSection *Line) {
320 MCLineSections[Sec] = Line;
345 /// is assembled an entry in the line number table with this information and
347 void setCurrentDwarfLoc(unsigned FileNum, unsigned Line, unsigned Column
    [all...]
MCDwarf.h 79 // Line - the line number.
80 unsigned Line;
101 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags,
103 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa),
113 /// getLine - Get the Line of this MCDwarfLoc.
114 unsigned getLine() const { return Line; }
131 /// setLine - Set the Line of this MCDwarfLoc.
132 void setLine(unsigned line) { Line = line;
    [all...]
  /external/clang/lib/Frontend/
LayoutOverrideSource.cpp 41 std::string Line;
42 getline(Input, Line);
44 StringRef LineStr(Line);
46 // Determine whether the following line will start a
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 240 unsigned Line = V.getLineNumber();
241 if (Line == 0)
248 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
258 unsigned Line = G.getLineNumber();
259 if (Line == 0)
265 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
275 // If the line number is 0, don't add it.
276 unsigned Line = SP.getLineNumber();
277 if (Line == 0)
284 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
    [all...]
DwarfDebug.h 47 /// \brief This class is used to record source line correspondence.
49 unsigned Line; // Source line number.
55 : Line(L), Column(C), SourceID(S), Label(label) {}
58 unsigned getLine() const { return Line; }
493 /// the line matrix.
558 /// \brief Register a source line with debug info. Returns the unique
560 /// source line list.
561 void recordSourceLine(unsigned Line, unsigned Col, const MDNode *Scope,
  /external/clang/include/clang/Basic/
SourceLocation.h 37 /// source file (MemoryBuffer) along with its \#include path and \#line data.
73 /// to get at the full include stack, line and column information.
105 /// location in the source (e.g. a diagnostic is required for a command line
352 /// A 'presumed' location can be modified by \#line and GNU line marker
358 unsigned Line, Col;
363 : Filename(FN), Line(Ln), Col(Co), IncludeLoc(IL) {
375 /// This can be affected by \#line etc.
378 /// \brief Return the presumed line number of this location.
380 /// This can be affected by \#line etc
    [all...]
  /external/llvm/lib/IR/
GCOV.cpp 71 /// collectLineCounts - Collect line counts. This must be used after
136 // read line table.
163 /// collectLineCounts - Collect line counts. This must be used after
187 /// collectLineCounts - Collect line counts. This must be used after
219 /// collectLineCounts - Collect line counts. This must be used after
238 /// addLineCount - Add line count for the given line number in a file.
239 void FileInfo::addLineCount(StringRef Filename, uint32_t Line, uint32_t Count) {
248 L[Line-1] = Count;
253 L[Line-1] = Count
    [all...]
  /external/llvm/lib/MC/
MCNullStreamer.cpp 95 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
  /external/llvm/
Android.mk 65 # LLVM Command Line Tools
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 85 DILineInfo Line) {
89 Result.LineNumber = Line.getLine();
128 // Now convert the line number information from the address/DebugLoc
  /external/valgrind/main/exp-bbv/tests/ppc32-linux/
ll.S 151 # First Line
189 # Middle-Line
221 # my iBook's /proc/cpuinfo does not have a "processor" line ???
  /external/giflib/
dgif_lib.c 53 static int DGifDecompressLine(GifFileType *GifFile, GifPixelType *Line,
424 * Get one full scanned line (Line) of length LineLen from GIF file.
428 GifPixelType * Line,
452 if (DGifDecompressLine(GifFile, Line, LineLen) == GIF_OK) {
728 * This version decompress the given gif file into Line of length LineLen.
729 * This routine can be called few times (one per scan line, for example), in
734 GifPixelType * Line,
758 Line[i++] = Stack[--StackPtr];
788 Line[i++] = CrntCode
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugEventSocketProxy.cs 48 * one event per line. ANTLRWorks listens on server socket with a
216 public override void Location(int line, int pos) {
217 Transmit("location\t" + line + "\t" + pos);
228 buf.Append(e.Line);
279 int line = -1;
282 line = token.Line;
286 buf.Append(line);
366 buf.Append(t.Line);
378 // escape \n and \r all text for token appears to exist on one line
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventSocketProxy.cs 47 * one event per line. ANTLRWorks listens on server socket with a
248 public override void Location( int line, int pos )
250 Transmit( "location\t" + line + "\t" + pos );
262 buf.Append( e.Line );
319 int line = -1;
323 line = token.Line;
327 buf.Append( line );
415 buf.Append( t.Line );
429 // escape \n and \r all text for token appears to exist on one line
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 254 /// getLineNumber - Get line number for the location. If location is invalid
535 // No need to fill in the Name, Line, Size, Alignment, Offset in case of
567 unsigned Line = getLineNumber(RD->getLocation());
581 return DBuilder.createForwardDecl(Tag, RDName, Ctx, DefUnit, Line);
744 unsigned Line = getLineNumber(Ty->getDecl()->getLocation());
751 DBuilder.createTypedef(Src, TyDecl->getName(), Unit, Line, TypedefContext);
787 unsigned line = getLineNumber(loc); local
804 return DBuilder.createMemberType(scope, name, file, line, sizeInBits,
2693 unsigned line = getLineNumber(loc); local
    [all...]
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 249 // Print source location (file:line), along with optional column
252 unsigned Line, Column;
254 &File, &Line, &Column, 0);
257 Out << clang_getCString(FName) << ":" << Line << ":";
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ANTLRStringStream.cs 56 /** <summary>line number 1..n within the input</summary> */
57 int line = 1; field in class:Antlr.Runtime.ANTLRStringStream
59 /** <summary>The index of the character relative to the beginning of the line 0..n-1</summary> */
67 * values line, charPositionInLine, and p that can change as you
122 public virtual int Line {
124 return line;
127 line = value;
147 line = 1;
158 System.out.println("newline char found on line: "+line
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeParser.cs 140 * We have DOWN/UP nodes in the stream that have no line info; override.
157 (e.ApproximateLineInfo ? "after " : "") + "line " + e.Line + ":" + e.CharPositionInLine;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ANTLRStringStream.cs 58 /** <summary>line number 1..n within the input</summary> */
59 int line = 1; field in class:Antlr.Runtime.ANTLRStringStream
61 /** <summary>The index of the character relative to the beginning of the line 0..n-1</summary> */
69 * values line, charPositionInLine, and p that can change as you
131 public virtual int Line
135 return line;
139 line = value;
163 line = 1;
177 System.out.println("newline char found on line: "+line
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeParser.cs 154 * We have DOWN/UP nodes in the stream that have no line info; override.
173 ( e.ApproximateLineInfo ? "after " : "" ) + "line " + e.Line + ":" + e.CharPositionInLine;
  /external/clang/lib/AST/
CommentParser.cpp 647 // Don't create an empty line if verbatim opening command is followed
655 VerbatimBlockLineComment *Line;
657 Line = S.actOnVerbatimBlockLine(Tok.getLocation(),
664 // Empty line, just a tok::newline.
665 Line = S.actOnVerbatimBlockLine(Tok.getLocation(), "");
668 Lines.push_back(Line);
694 // Next token might not be a tok::verbatim_line_text if verbatim line
  /external/llvm/include/llvm/Support/
GCOV.h 102 /// readLineTag - If cursor points to a line tag then increment the
203 /// GCOVLines - A wrapper around a vector of int to keep track of line nos.
218 void addLineCount(StringRef Filename, uint32_t Line, uint32_t Count);
  /external/llvm/lib/DebugInfo/
DWARFContext.h 32 OwningPtr<DWARFDebugLine> Line;
92 /// Get a pointer to a parsed line table corresponding to a compile unit.
DWARFDebugLine.cpp 20 OS << "Line table prologue:\n"
61 Line = 1;
73 OS << format("0x%16.16" PRIx64 " %6u %6u", Address, Line, Column)
88 OS << "Address Line Column File ISA Flags\n"
121 fprintf(stderr, "warning: last sequence in debug line table is not"
156 // Parse and cache the line table for at this offset.
213 fprintf(stderr, "warning: parsing line table prologue at 0x%8.8x should"
340 // the line register of the state machine.
341 state.Line += debug_line_data.getSLEB128(offset_ptr);
435 // to be added to the line and address registers. The maximum lin
    [all...]
DWARFDebugLine.h 69 // Length of the line table data in bytes (not including the prologue).
101 // An unsigned integer indicating a source line number. Lines are numbered
103 // instruction cannot be attributed to any source line.
104 uint32_t Line;
105 // An unsigned integer indicating a column number within a source line.
107 // that a statement begins at the 'left edge' of the line.
135 // Represents a series of contiguous machine instructions. Line table for each
140 // and is described by line table rows [FirstRowIndex, LastRowIndex).
177 // Returns the index of the row with file/line info for a given address,
234 /// Parse a single line table (prologue and all rows)
    [all...]

Completed in 494 milliseconds

1 2 34 5 6 7