- Dec 04, 2009
-
-
Chris Lattner authored
gvn (this is just a skeleton so far). This will ultimately be used to fix a nasty miscompilation with GVN. llvm-svn: 90518
-
Anders Carlsson authored
llvm-svn: 90517
-
Ted Kremenek authored
Allow BlockInvocationContext to wrap either a BlockDecl* or a BlockDataRegion*, giving us choice in our degree of context-sensitivity. llvm-svn: 90516
-
Anders Carlsson authored
llvm-svn: 90515
-
Mike Stump authored
llvm-svn: 90514
-
Mike Stump authored
Fixup throws and rethrows to use invoke as appropriate. llvm-svn: 90513
-
Victor Hernandez authored
Teach AsmWriter to write inline (not via a global metadata slot) metadata that contains an instruction llvm-svn: 90512
-
Bob Wilson authored
llvm-svn: 90511
-
Eli Friedman authored
probably want to do some sort of performance assessment before enabling it, though. llvm-svn: 90510
-
Ted Kremenek authored
llvm-svn: 90509
-
Mike Stump authored
llvm-svn: 90508
-
Chris Lattner authored
a compile time perf optimization to avoid a load. llvm-svn: 90507
-
Ted Kremenek authored
Refactor FoldingSet profiling code for LocationContexts, and add a new BlockInvocationContext to represent the invocation of a block. llvm-svn: 90506
-
Eli Friedman authored
as a constant integer. Also, some minor cleanup and improvements to the diagnostics. llvm-svn: 90504
-
Ted Kremenek authored
llvm-svn: 90503
-
Jakob Stoklund Olesen authored
The coalescer is supposed to clean these up, but when setting up parameters for a function call, there may be copies to physregs. If the defining instruction has been LICM'ed far away, the coalescer won't touch it. The register allocation hint does not always work - when the register allocator is backtracking, it clears the hints. This patch takes care of a few more cases that r90163 missed. llvm-svn: 90502
-
Evan Cheng authored
- If the reaching definition is an undef and the use is a PHI, add the implicit_def to the end of the source block. - When reaching value is replaced with another, update the cache as well. llvm-svn: 90501
-
John McCall authored
create the enum type in the same scope as you would a record type. llvm-svn: 90500
-
Ted Kremenek authored
llvm-svn: 90499
-
Devang Patel authored
Insert composite type DIE into the map before processing type fields. This allows fields to find their context DIE from the map. llvm-svn: 90498
-
Victor Hernandez authored
Add ParseInlineMetadata() which can parses metadata that refers to an instruction. Extend ParseParameterList() to use this new function so that calls to llvm.dbg.declare can pass inline metadata llvm-svn: 90497
-
- Dec 03, 2009
-
-
Mike Stump authored
llvm-svn: 90494
-
Mike Stump authored
llvm-svn: 90492
-
John McCall authored
Make it an inner class of Parser to assuage access control. No functionality change. llvm-svn: 90491
-
Jim Grosbach authored
llvm-svn: 90490
-
Evan Cheng authored
llvm-svn: 90489
-
Evan Cheng authored
llvm-svn: 90488
-
Bob Wilson authored
llvm-svn: 90487
-
Duncan Sands authored
Pointed out by Javier Martinez (who also provided a patch). Since this logic is not used on (for example) x86, I guess nobody noticed. Tested by generating SHL, SRL, SRA on various choices of i64 for all possible shift amounts, and comparing with gcc. Since I did this on x86-32, I had to force the use of ExpandShiftWithUnknownAmountBit. What I'm saying here is that I don't have a testcase I can add to the repository. llvm-svn: 90482
-
Jakob Stoklund Olesen authored
llvm-svn: 90481
-
Eli Friedman authored
don't infinitely recurse for cases we can't evaluate. llvm-svn: 90480
-
Ted Kremenek authored
Try to make the output of PlistDiagnostics more deterministic by sorting PathDiagnostics before they are emitted. Fixes <rdar://problem/7439668>. llvm-svn: 90478
-
Ted Kremenek authored
llvm-svn: 90477
-
Devang Patel authored
llvm-svn: 90474
-
Dan Gohman authored
end up on the same line. llvm-svn: 90473
-
Fariborz Jahanian authored
a new virtual function is declared/instantiated. it is used in couple of places. llvm-svn: 90470
-
Daniel Dunbar authored
old syntax isn't supported. llvm-svn: 90469
-
Daniel Dunbar authored
Also, add a test for generator a C file with a very deep call stack. llvm-svn: 90468
-
Douglas Gregor authored
instantiation, to ensure that we mark class template specilizations as abstract when we need to and perform checking of abstract classes. Also, move the checking that determines whether we are creating a variable of abstract class type *after* we check whether the type is complete. Otherwise, we won't see when we have an abstract class template specialization that is implicitly instantiated by this declaration. This is the "something else" that Sebastian had noted earlier. llvm-svn: 90467
-
Ted Kremenek authored
Add another blocks test case illustrating how parameters passed-by-reference in block invocations are invalidated (just like function calls). llvm-svn: 90466
-