- Sep 01, 2012
-
-
Logan Chien authored
llvm-svn: 163059
-
Benjamin Kramer authored
llvm-svn: 163058
-
Tobias Grosser authored
The helper allows us to define how the initialization of functions should behave. We use this patch to provide an informative error message, in case a function is not available: "LibclangError: /home/grosser/Projekte/llvm/install/lib/libclang.so: undefined symbol: clang_method_added_in_2020. Please ensure that your python bindings are compatible with your libclang.so version." This patch also ensures that no spelling mistakes slip into the library initialization. At the moment, there are a couple of 'argtype' -> 'argtypes' mispellings that have been overlooked. llvm-svn: 163057
-
Ted Kremenek authored
llvm-svn: 163056
-
Ted Kremenek authored
llvm-svn: 163055
-
NAKAMURA Takumi authored
llvm-svn: 163054
-
Craig Topper authored
llvm-svn: 163053
-
Ted Kremenek authored
llvm-svn: 163052
-
Owen Anderson authored
llvm-svn: 163051
-
Ted Kremenek authored
This is similar to how we divide up the StaticAnalyzer libraries to separate core functionality to what is clearly associated with Frontend actions. llvm-svn: 163050
-
Michael Liao authored
llvm-svn: 163049
-
Jim Ingham authored
Initial check-in of "fancy" inlined stepping. Doesn't do anything useful unless you switch LLDB_FANCY_INLINED_STEPPING to true. With that on, basic inlined stepping works, including step-over of inlined functions. But for some as yet mysterious reason i386 debugging gets an assert and dies immediately. So for now its off. llvm-svn: 163044
-
Greg Clayton authored
Added the ability for OptionValueString objects to take flags. The only flag is currently for parsing escape sequences. Not the prompt string can have escape characters translate which will allow colors in the prompt. Added functions to Args that will parse the escape sequences in a string, and also re-encode the escape sequences for display. This was looted from other parts of LLDB (the Debugger::FormatString() function). llvm-svn: 163043
-
rdar://problem/12069589Greg Clayton authored
Fixed an issue where not all text would always be seen when running any of the functions in heap.py in Xcode. Now we put the text directly into the command result object and skip STDIO since we have issues with STDIO right now in python scripts. Also fixed an issue with the "--stack-history" option where MallocStackLoggingNoCompact was assumed to have to be enabled... It doesn't, just MallocStackLogging. llvm-svn: 163042
-
NAKAMURA Takumi authored
llvm-svn: 163041
-
Manman Ren authored
llvm-svn: 163040
-
Joao Matos authored
llvm-svn: 163039
-
Jim Ingham authored
Add a convenience function to get the range containing a given PC specified as load address + Target. llvm-svn: 163038
-
Jason Molenda authored
llvm-svn: 163037
-
Manman Ren authored
output chain is correctly setup. As an example, if the original load must happen before later stores, we need to make sure the constructed VZEXT_LOAD is constrained to be before the stores. rdar://11457792 llvm-svn: 163036
-
Craig Topper authored
llvm-svn: 163035
-
Chris Lattner authored
don't warn about unused values when the unused value is a statement expression expanded from a macro. This is of dubious utility in general, but is specifically a major issue for the linux kernel. This resolves PR13747. llvm-svn: 163034
-
Eric Christopher authored
Patch by Brad Smith! llvm-svn: 163033
-
Joao Matos authored
llvm-svn: 163032
-
Benjamin Kramer authored
While there fix a dead assert. llvm-svn: 163031
-
Chad Rosier authored
function nowadays. llvm-svn: 163030
-
Craig Topper authored
llvm-svn: 163029
-
DeLesley Hutchins authored
latest definition of a function is always used when computing lock expressions. llvm-svn: 163028
-
Richard Trieu authored
instead of referring to the flag name. llvm-svn: 163027
-
- Aug 31, 2012
-
-
DeLesley Hutchins authored
expressions, which should be ignored right now. llvm-svn: 163026
-
David Blaikie authored
llvm-svn: 163025
-
Joao Matos authored
llvm-svn: 163024
-
Joao Matos authored
llvm-svn: 163023
-
Joao Matos authored
Emulate MSVC's preprocessor macro argument separator behavior by not considering commas from nested macro expansions as argument separators. Fixes parsing of VS 2012 headers. llvm-svn: 163022
-
Jakob Stoklund Olesen authored
Manage tied operands entirely internally to MachineInstr. This makes it possible to change the representation of tied operands, as I will do shortly. The constraint that tied uses and defs must be in the same order was too restrictive. llvm-svn: 163021
-
Michael Liao authored
- In addition to undefined, if V2 is zero vector, skip 2nd PSHUFB and POR as well as PSHUFB will zero elements with negative indices. Patch by Sriram Murali <sriram.murali@intel.com> llvm-svn: 163018
-
Fariborz Jahanian authored
property-dot syntax is used on an object whose capture causes retain cycle. // rdar://11702054 llvm-svn: 163017
-
Dmitry Vyukov authored
llvm-svn: 163016
-
David Blaikie authored
Hey, now the loop-convert tests pass too. llvm-svn: 163015
-
rdar://problem/12202862Greg Clayton authored
Added a fix for incorrect dynamic typing. Before when asking if a C++ class could be dynamic, we would answer yes for incomplete C++ classes. This turned out to have issues where if a class was not virtual, yet had its first ivar be an instance of a virtual class, we would incorrectly say that a class was virtual and we would downcast it to be a pointer to the first ivar. We now ask the class to complete itself prior to answering the question. We need to test the effects on memory of this change prior to submission. It is the safest and best fix, but it does have a potential downside of higher memory consumption. llvm-svn: 163014
-