- Feb 09, 2010
-
-
Chris Lattner authored
into TargetOpcodes.h. #include the new TargetOpcodes.h into MachineInstr. Add new inline accessors (like isPHI()) to MachineInstr, and start using them throughout the codebase. llvm-svn: 95687
-
Jim Grosbach authored
tMOVCCi pattern only valid for low registers, as the Thumb1 mov immediate to register instruction only works with low registers. Allowing high registers for the instruction resulted in the assembler choosing the wide (32-bit) encoding for the mov, but LLVM though the instruction was only 16 bits wide, so offset calculations for constant pools became incorrect, leading to out of range constant pool entries. llvm-svn: 95686
-
Fariborz Jahanian authored
This is a non-fragile-abi feature only. Since it breaks existing code, it is currently placed under -fobjc-nonfragile-abi2 option for test purposes only until further notice. WIP. llvm-svn: 95685
-
Benjamin Kramer authored
This maybe fixes some of the errors GCC 4.5 gives on this code. llvm-svn: 95684
-
Douglas Gregor authored
context with the AST importer. WIP, still useless but at least it has a test. llvm-svn: 95683
-
Ted Kremenek authored
NULL, not the store, to determine if a lookup succeeded. The store can be null if it contained no bindings. This fixes a false positive reported to me by a user of the analyzer. llvm-svn: 95679
-
Devang Patel authored
llvm-svn: 95678
-
Jeffrey Yasskin authored
Thanks to Jochen Wilhelmy for the suggestion! llvm-svn: 95677
-
Ted Kremenek authored
llvm-svn: 95676
-
Ted Kremenek authored
llvm-svn: 95675
-
Devang Patel authored
llvm-svn: 95673
-
Eric Christopher authored
consuming for a simple optimization. llvm-svn: 95671
-
Jakob Stoklund Olesen authored
llvm-svn: 95670
-
Johnny Chen authored
For disassembly only. A8.6.300 llvm-svn: 95669
-
Jakob Stoklund Olesen authored
Patch by M Wahab! llvm-svn: 95668
-
Jakob Stoklund Olesen authored
llvm-svn: 95667
-
Dan Gohman authored
is done for getTripCount. llvm-svn: 95666
-
Dan Gohman authored
llvm-svn: 95665
-
Anton Korobeynikov authored
llvm-svn: 95664
-
Anton Korobeynikov authored
llvm-svn: 95663
-
Douglas Gregor authored
llvm-svn: 95662
-
Daniel Dunbar authored
llvm-svn: 95658
-
Douglas Gregor authored
Sema::ActOnUninitializedDecl over to InitializationSequence (with default initialization), eliminating redundancy. More importantly, we now check that a const definition in C++ has an initilizer, which was an #if 0'd code for many, many months. A few other tweaks were needed to get everything working again: - Fix all of the places in the testsuite where we defined const objects without initializers (now that we diagnose this issue) - Teach instantiation of static data members to find the previous declaration, so that we build proper redeclaration chains. Previously, we had the redeclaration chain but built it too late to be useful, because... - Teach instantiation of static data member definitions not to try to check an initializer if a previous declaration already had an initializer. This makes sure that we don't complain about static const data members with in-class initializers and out-of-line definitions. - Move all of the incomplete-type checking logic out of Sema::FinalizeDeclaratorGroup; it makes more sense in ActOnUnitializedDecl. There may still be a few places where we can improve these diagnostics. I'll address that as a separate commit. llvm-svn: 95657
-
Chris Lattner authored
and remove a few old and unreduced ones. Fixes PR5624. llvm-svn: 95656
-
Chris Lattner authored
llvm-svn: 95655
-
Chris Lattner authored
llvm-svn: 95654
-
Chris Lattner authored
llvm-svn: 95653
-
Chris Lattner authored
llvm-svn: 95652
-
Chris Lattner authored
llvm-svn: 95651
-
Chris Lattner authored
llvm-svn: 95650
-
Chris Lattner authored
llvm-svn: 95649
-
Daniel Dunbar authored
IRgen: Add CreateMemTemp, for creating an temporary memory object for a particular type, and flood fill. - CreateMemTemp sets the alignment on the alloca correctly, which fixes a great many places in IRgen where we were doing the wrong thing. - This fixes many many more places than the test case, but my feeling is we need to audit alignment systematically so I'm not inclined to try hard to test the individual fixes in this patch. If this bothers you, patches welcome! PR6240. llvm-svn: 95648
-
Dale Johannesen authored
llvm-svn: 95647
-
Devang Patel authored
llvm-svn: 95646
-
Sean Callanan authored
whitespace tokens in the right places. llvm-svn: 95645
-
Chris Lattner authored
Peter Hawkins! llvm-svn: 95644
-
Chris Lattner authored
llvm-svn: 95643
-
Chris Lattner authored
xform. llvm-svn: 95642
-
Eric Christopher authored
llvm-svn: 95641
-
Douglas Gregor authored
llvm-svn: 95640
-