- Nov 12, 2010
-
-
Chris Lattner authored
llvm-svn: 118916
-
Benjamin Kramer authored
llvm-svn: 118915
-
Rafael Espindola authored
We only produce debug line information if we have seen a line directive, so this code is dead. Also, if we want to be bug by bug compatible with gas and sometimes produce "empty" .debug_line sections, this will match the content produced by gas. llvm-svn: 118914
-
Andrew Trick authored
llvm-svn: 118913
-
Ted Kremenek authored
llvm-svn: 118912
-
Ted Kremenek authored
llvm-svn: 118911
-
Ted Kremenek authored
llvm-svn: 118910
-
Ted Kremenek authored
CursorVisitor: migrate handling of SwitchStmt and CaseStmt over to general data-recursion algorithm. llvm-svn: 118909
-
Andrew Trick authored
llvm-svn: 118908
-
Jim Grosbach authored
llvm-svn: 118907
-
Andrew Trick authored
llvm-svn: 118906
-
Jim Grosbach authored
llvm-svn: 118905
-
Andrew Trick authored
catastrophic compilation time in the event of unreasonable LLVM IR. Code quality is a separate issue--someone upstream needs to do a better job of reducing to llvm.memcpy. If the situation can be reproduced with any supported frontend, then it will be a separate bug. llvm-svn: 118904
-
Chris Lattner authored
llvm-svn: 118903
-
Bob Wilson authored
llvm-svn: 118901
-
Bob Wilson authored
With the addition of 2 enum values for Neon vectors, this field must now hold 6 different values and so requires 3 bits. Make the NumElements field one bit smaller to compensate. llvm-svn: 118900
-
Bob Wilson authored
llvm-svn: 118899
-
Bob Wilson authored
Add support for mangling those types according to ARM's ABI. llvm-svn: 118898
-
Bob Wilson authored
llvm-svn: 118897
-
Chris Lattner authored
llvm-svn: 118896
-
Rafael Espindola authored
llvm-svn: 118893
-
Benjamin Kramer authored
llvm-svn: 118892
-
Dan Gohman authored
at least. llvm-svn: 118890
-
Kalle Raiskila authored
support for the case where alignment<value size. These cases were silently miscompiled before this patch. Now they are overly verbose -especially storing is- and any front-end should still avoid misaligned memory accesses as much as possible. The bit juggling algorithm added here probably has some room for improvement still. llvm-svn: 118889
-
Eric Christopher authored
missed. Update some comments accordingly. Fixes rdar://8652289 llvm-svn: 118888
-
John McCall authored
parameters to the Transform*Type functions and instead call out the specific cases where an object type and the unqualified lookup results are important. Fixes an assert and failed compile on a testcase from PR7248. llvm-svn: 118887
-
John McCall authored
llvm-svn: 118886
-
Douglas Gregor authored
SourceManager::getPresumedLoc(), so that we don't try to make use of an invalid presumed location. Doing so can cause crashes. llvm-svn: 118885
-
Dan Gohman authored
llvm-svn: 118884
-
Lang Hames authored
llvm-svn: 118883
-
Jason Molenda authored
needs to use the current pc and current offset in two ways: To determine which function we are currently executing, and the decide how much of that function has executed so far. For the former use, we need to back up the saved pc value by one byte if we're going to use the correct function's unwind information -- we may be executing a CALL instruction at the end of a function and the following instruction belongs to a new function, or we may be looking at unwind information which only covers the call instruction and not the subsequent instruction. But when we're talking about deciding which row of an UnwindPlan to execute, we want to use the actual byte offset in the function, not the byte offset - 1. Right now RegisterContextLLDB is tracking both the "real" offset and an "offset minus one" and different parts of the class have to know which one to use and they need to be updated/set in tandem. I want to revisit this at some point. The second change made in looking up eh_frame information; it was formerly done by looking for the start address of the function we are currently executing. But it is possible to have unwind information for a function which only covers a small section of the function's address range. In which case looking up by the start pc value may not find the eh_frame FDE. The hand-written _sigtramp() unwind info on Mac OS X, which covers exactly one instruction in the middle of the function, happens to trigger both of these issues. I still need to get the UnwindPlan runner to handle arbitrary dwarf expressions in the FDE but there's a good chance it will be easy to reuse the DWARFExpression class to do this. llvm-svn: 118882
-
Ted Kremenek authored
Fix use of an uninitialized SourceLocation because DeclarationNameLoc failed to completely zero-initialize itself. Now we explicitly memset all of its values. This bug was uncovered by the 'Index/recursive-cxx-member-calls.cpp', which exhibited an assertion on an i386 darwin build of clang. Adding this test case back since the assertion is now resolved. llvm-svn: 118881
-
Douglas Gregor authored
direct-initialization (rather than copy-initialization) to initialize the temporary, allowing explicit constructors. Fixes PR8342. llvm-svn: 118880
-
Sean Callanan authored
assembly as well as registers that changed. llvm-svn: 118879
-
Rafael Espindola authored
llvm-svn: 118878
-
Greg Clayton authored
llvm-svn: 118877
-
Jim Ingham authored
llvm-svn: 118876
-
Dan Gohman authored
one store dead. This is especially noticeable in SingleSource/Benchmarks/Shootout/objinst. llvm-svn: 118875
-
Dan Gohman authored
llvm-svn: 118874
-
Sean Callanan authored
object diagnostic expressions while we work on the logic for handling the timeout. llvm-svn: 118873
-