- Aug 04, 2010
-
-
Dan Gohman authored
llvm-svn: 110206
-
Dan Gohman authored
llvm-svn: 110205
-
Dan Gohman authored
llvm-svn: 110204
-
Dan Gohman authored
llvm-svn: 110203
-
Dan Gohman authored
llvm-svn: 110202
-
Dan Gohman authored
llvm-svn: 110201
-
Benjamin Kramer authored
llvm-svn: 110200
-
Stuart Hastings authored
llvm-svn: 110199
-
Kalle Raiskila authored
store for "half vectors" llvm-svn: 110198
-
Benjamin Kramer authored
- The COFF backend doesn't support MingW/Cygwin at the moment, it'll report an error, but it's still much better than random assertions from the MachO backend. - We want to make ELF the default eventually, it's what the majority of targets use. llvm-svn: 110197
-
Torok Edwin authored
I encountered these while upgrading libclamav. llvm-svn: 110196
-
Torok Edwin authored
llvm-svn: 110195
-
Gabor Greif authored
"The CWriter::GetValueName() method does not check if a value as an alias and emits the alias name which will never be defined in the output .c file (so the output file fails to compile). This can happen if you have multiple inheritance with several destructors defined by clang (...D0Ev, ...D1Ev, ...D2Ev)." -- applied with minor tweaks. Thanks! llvm-svn: 110194
-
Torok Edwin authored
llvm-svn: 110193
-
John McCall authored
Apply hidden visibility to most RTTI; libstdc++ does not rely on exact pointer equality for the type info (just the type info names). Apply the same optimization to RTTI that we do to vtables. Fixes PR5962. llvm-svn: 110192
-
Jordy Rose authored
Change the checker callback cache in GRExprEngine to be more compact (and IMHO a little easier to understand), and add the same sort of caching for EvalAssume (tied for least-used callback), mostly as proof-of-concept. Before we go further with these, we should figure out a way to reuse the visit-and-cache code in CheckerVisit. llvm-svn: 110191
-
Eric Christopher authored
llvm-svn: 110190
-
John McCall authored
haven't been explicitly instantiated. llvm-svn: 110189
-
John McCall authored
ObjC exceptions: - don't enter a try for the catch blocks unless there's a finally - put the setjmp buffer in the locals set for liveness reasons - dump the sync object into an alloca in the locals set for liveness reasons Some of this can go away if the backend starts to properly calculate liveness in the presence of setjmp (which would also be a *much* stabler solution). llvm-svn: 110188
-
Douglas Gregor authored
short "cooling off" period (defaulting to 5 reparses) before trying to build a precompiled preamble again. Previously, if we failed to build the precompiled preamble at any time, we just gave up the whole charade any never tried again. llvm-svn: 110187
-
Greg Clayton authored
This will allow debugger plug-ins to make any instance of "lldb_private::StopInfo" that can completely describe any stop reason. It also provides a framework for doing intelligent things with the stop info at important times in the lifetime of the inferior. Examples include the signal stop info in StopInfoUnixSignal. It will check with the process to see that the current action is for the signal. These actions include wether to stop for the signal, wether the notify that the signal was hit, and wether to pass the signal along to the inferior process. The StopInfoUnixSignal class overrides the "ShouldStop()" method of StopInfo and this allows the stop info to determine if it should stop at the signal or continue the process. StopInfo subclasses must override the following functions: virtual lldb::StopReason GetStopReason () const = 0; virtual const char * GetDescription () = 0; StopInfo subclasses can override the following functions: // If the subclass returns "false", the inferior will resume. The default // version of this function returns "true" which means the default stop // info will stop the process. The breakpoint subclass will check if // the breakpoint wants us to stop by calling any installed callback on // the breakpoint, and also checking if the breakpoint is for the current // thread. Signals will check if they should stop based off of the // UnixSignal settings in the process. virtual bool ShouldStop (Event *event_ptr); // Sublasses can state if they want to notify the debugger when "ShouldStop" // returns false. This would be handy for breakpoints where you want to // log information and continue and is also used by the signal stop info // to notify that a signal was received (after it checks with the process // signal settings). virtual bool ShouldNotify (Event *event_ptr) { return false; } // Allow subclasses to do something intelligent right before we resume. // The signal class will figure out if the signal should be propagated // to the inferior process and pass that along to the debugger plug-ins. virtual void WillResume (lldb::StateType resume_state) { // By default, don't do anything } The support the Mach exceptions was moved into the lldb/source/Plugins/Process/Utility folder and now doesn't polute the lldb_private::Thread class with platform specific code. llvm-svn: 110184
-
Dan Gohman authored
llvm-svn: 110183
-
Dan Gohman authored
llvm-svn: 110181
-
Dan Gohman authored
llvm-svn: 110180
-
Dan Gohman authored
llvm-svn: 110179
-
Bruno Cardoso Lopes authored
llvm-svn: 110178
-
Bruno Cardoso Lopes authored
llvm-svn: 110177
-
John McCall authored
delete lookup until the end of the class definition. llvm-svn: 110176
-
John McCall authored
a declaration. llvm-svn: 110175
-
Sean Callanan authored
including superclass members. This involved ensuring that access control was ignored, and ensuring that the operands of BitCasts were properly scanned for variables that needed importing. Also laid the groundwork for declaring objects of custom types; however, this functionality is disabled for now because of a potential loop in ASTImporter. llvm-svn: 110174
-
John McCall authored
delete for a virtual destructor. Diagnose ambiguities. Fixes PR7803. llvm-svn: 110173
-
Dan Gohman authored
it doesn't modify the exit code or the stdout contents, and so that it doesn't clutter the output with "Command has output on stderr!". llvm-svn: 110171
-
Bob Wilson authored
(absolute difference with accumulate) intrinsics. Radar 8228576. llvm-svn: 110170
-
Dan Gohman authored
and same for stderr, to avoid clutter in the output. llvm-svn: 110169
-
Dan Gohman authored
llvm-svn: 110168
-
Dan Gohman authored
llvm-svn: 110167
-
Chris Lattner authored
builtin instead of shell. On my 8 core mac pro, this speeds up a 'make -j8' null build of the lib directory from 1.11s to 0.77s wall time. Patch by NAKAMURA Takumi! llvm-svn: 110166
-
John McCall authored
llvm-svn: 110165
-
Chris Lattner authored
llvm-svn: 110164
-
John McCall authored
mark it nounwind based on whether it contains any non-nounwind calls. <rdar://problem/8087431> llvm-svn: 110163
-