- Sep 26, 2011
-
-
Eli Friedman authored
Enhance alias analysis for atomic instructions a bit. Upgrade a couple alias-analysis tests to the new atomic instructions. llvm-svn: 140557
-
Justin Holewinski authored
llvm-svn: 140556
-
Greg Clayton authored
llvm-svn: 140554
-
Eli Friedman authored
llvm-svn: 140553
-
Eli Friedman authored
CheckStringInit has side effects; make sure we don't run it in VerifyOnly mode, at least for the moment. <rdar://problem/10185490>. Sebastian, please take a look at this; I'm not entirely sure it is the right thing to do. llvm-svn: 140552
-
Argyrios Kyrtzidis authored
Related to rdar://10087069. llvm-svn: 140551
-
Johnny Chen authored
It has been fixed on the lldb side to compensate for bad debug info (line table information). llvm-svn: 140550
-
Justin Holewinski authored
llvm-svn: 140549
-
Justin Holewinski authored
llvm-svn: 140548
-
Justin Holewinski authored
printing of local offsets llvm-svn: 140547
-
Eli Friedman authored
Fix a typo in the new VerifyOnly handling in SemaInit. No visible difference at the moment, as far as I can tell. llvm-svn: 140546
-
Sean Callanan authored
expression into a separate class. This class encapsulates wrapping the function as needed. I am also moving from using booleans to indicate what the expression's language should be to using lldb::LanguageType instead. llvm-svn: 140545
-
Greg Clayton authored
is mostly geared towards darwin crash logs at the moment, though it could be made more generic with a few tweaks. The symbolicate-crash.py script will make a target given a crash log and then symbolicate all frames and expand any frames that had inlined functions in them to show all frames back to the concrete function. It will also disassemble around the crash site. llvm-svn: 140544
-
Eli Friedman authored
llvm-svn: 140543
-
-
Johnny Chen authored
it also populates the variable declaration location if possible. llvm-svn: 140540
-
James Molloy authored
Fix emission of debug data for global variables. getContext() on DIGlobalVariables is not valid any more. llvm-svn: 140539
-
Chandler Carruth authored
message. Specifically, we now only line-wrap the first line of te diagnostic message and assume the remainder is manually formatted. While adding it back, simplify the logic for doing this. Finally, add a test that ensures we actually preserve this feature. =D *Now* its not dead code. Thanks to Doug for the test case. llvm-svn: 140538
-
Justin Holewinski authored
llvm-svn: 140537
-
Justin Holewinski authored
llvm-svn: 140536
-
Justin Holewinski authored
llvm-svn: 140535
-
Justin Holewinski authored
llvm-svn: 140534
-
Justin Holewinski authored
llvm-svn: 140533
-
Justin Holewinski authored
llvm-svn: 140532
-
Eric Christopher authored
llvm-svn: 140531
-
Eric Christopher authored
llvm-svn: 140530
-
Douglas Gregor authored
little storage. llvm-svn: 140529
-
Douglas Gregor authored
from Stepan Dyatkovskiy. Fixes PR10925. llvm-svn: 140528
-
Chandler Carruth authored
when working with a diagnostic attached to a source location. Also comment more thoroughly why its important to handle non-location diagnostic messages separately. Finally, hoist the creation of the TextDiagnostic object up to the beginning of the location-based diagnostics. This paves the way for sinking more and more of the logic into this class. When everything below this constructor is sunk into the TextDiagnostic class it should be sufficiently "feature complete" to accomplish my two goals: 1) Have the printing of a macro expansion note use the exact same code as any other note. 2) Be able to implement clang_formatDiagnostic in terms of this class. llvm-svn: 140526
-
Chandler Carruth authored
a dedicated path. The logic for such diagnostics is much simpler than for others. This begins to make an important separation in this routine. We expect most (and most interesting) textual diagnostics to be made in the presence of at least *some* source locations and a source manager. However the DiagnosticConsumer must be prepared to diagnose errors even when the source manager doesn't (yet) exist or when there is no location information at all. In order to sink more and more logic into the TextDiagnostic class while minimizing its complexity, my plan is to force the DiagnosticConsumer to special case diagnosing any locationless messages and then hand the rest to the TextDiagnostic class. I'd appreciate any comments on this design. It requires a bit of code duplication in order to keep interfaces simple. Alternatively, if we really need TextDiagnostic to be capable of handling diagnostics even in the absence of a viable SourceManager, then this split isn't necessary. llvm-svn: 140525
-
Chandler Carruth authored
function. Doing this conveniently requires moving the word wrapping to use a StringRef which seems generally an improvement. There is a lot that could be simplified in the word wrapping by using StringRef that I haven't looked at yet... llvm-svn: 140524
-
Chandler Carruth authored
functionality changed. llvm-svn: 140523
-
Chandler Carruth authored
would have caught a bug I introduced during refactoring. Silly me thinking this was all well tested already... If any of this is already covered by other tests, let me know. I looked around and didn't see any. llvm-svn: 140522
-
Argyrios Kyrtzidis authored
of a ContentCache, since multiple FileIDs can have the same ContentCache but the expanded macro arguments locations will be different. llvm-svn: 140521
-
Argyrios Kyrtzidis authored
It's not descriptive enough and it's just a call of translateFileLineCol() followed by a call to getMacroArgExpandedLocation(), which is better to be called explicitly since it has a certain cost and is not always required. llvm-svn: 140520
-
Argyrios Kyrtzidis authored
a "loaded" location of the precompiled preamble. Instead, handle specially locations of preprocessed entities: -When looking up for preprocessed entities, map main file locations inside the preamble range to a preamble loaded location. -When getting the source range of a preprocessing cursor, map preamble loaded locations back to main file locations. Fixes rdar://10175093 & http://llvm.org/PR10999 llvm-svn: 140519
-
Greg Clayton authored
symbolication. Also improved the SBInstruction API to allow access to the instruction opcode name, mnemonics, comment and instruction data. Added the ability to edit SBLineEntry objects (change the file, line and column), and also allow SBSymbolContext objects to be modified (set module, comp unit, function, block, line entry or symbol). The SymbolContext and SBSymbolContext can now generate inlined call stack infomration for symbolication much easier using the SymbolContext::GetParentInlinedFrameInfo(...) and SBSymbolContext::GetParentInlinedFrameInfo(...) methods. llvm-svn: 140518
-
David Meyer authored
llvm-svn: 140517
-
David Meyer authored
PR11004: Inline memcpy to avoid generating nested call sequence. Un-XFAIL 2011-06-09-TailCallByVal and 2010-11-04-BigByval llvm-svn: 140516
-
Craig Topper authored
llvm-svn: 140515
-