- May 13, 2010
-
-
John McCall authored
against pointer patterns. llvm-svn: 103706
-
Chandler Carruth authored
llvm-svn: 103705
-
Chandler Carruth authored
llvm-svn: 103704
-
Chandler Carruth authored
than 127 groups so this was already failing given -fsigned-char. A subsequent to commit to TableGen will generate shorts for the arrays themselves. llvm-svn: 103703
-
Anton Korobeynikov authored
llvm-svn: 103702
-
-
Nick Lewycky authored
llvm-svn: 103700
-
Nick Lewycky authored
llvm-svn: 103699
-
Nick Lewycky authored
vector<>::push_back() in: int foo(vector<int> &a, vector<unsigned> &b) { a.push_back(10); b.push_back(11); } to two calls to the same push_back function, or fold away the two copies of push_back() in: struct T { int; }; struct S { char; }; vector<T*> t; vector<S*> s; void f(T *x) { t.push_back(x); } void g(S *x) { s.push_back(x); } but leave f() and g() separate, since they refer to two different global variables. llvm-svn: 103698
-
Daniel Dunbar authored
llvm-svn: 103697
-
Ted Kremenek authored
llvm-svn: 103696
-
Daniel Dunbar authored
utility functions. llvm-svn: 103695
-
Daniel Dunbar authored
llvm-svn: 103694
-
Daniel Dunbar authored
of manually doing padding/editing layout in LayoutSection(). - This probably seems like six-of-one and half-dozen of another, but there is a method to my madness. llvm-svn: 103693
-
Evan Cheng authored
Bring back VLD1q and VST1q and use them for reloading / spilling Q registers. This allows folding loads and stores into VMOVQ. llvm-svn: 103692
-
Daniel Dunbar authored
llvm-svn: 103691
-
Daniel Dunbar authored
MC: Add MCAlignFragment::OnlyAlignAddress bit. This is a bit of magic that says the align fragment shouldn't contribute to the logical section size, it is will be used for cleaning up the code to handle section alignment. llvm-svn: 103690
-
Daniel Dunbar authored
MC: Add MCSectionData::AddressSize, which is the size of the address space consumed by the section. This can differ from both the section logical size, and the section size on disk (although the current code handles this without making an explicit distinction). llvm-svn: 103689
-
Chris Lattner authored
llvm-svn: 103688
-
Ted Kremenek authored
can blow out the stack. llvm-svn: 103687
-
Jakob Stoklund Olesen authored
This causes way more identity copies to be generated, ripe for coalescing. llvm-svn: 103686
-
Jakob Stoklund Olesen authored
llvm-svn: 103685
-
Evan Cheng authored
llvm-svn: 103684
-
Evan Cheng authored
llvm-svn: 103683
-
rdar://7965971Chris Lattner authored
ParseDirectiveDarwinZerofill instead of hard coding the check for identifier. This allows quoted symbol names to be used. llvm-svn: 103682
-
Chris Lattner authored
after testing before committing. llvm-svn: 103681
-
Evan Cheng authored
If REG_SEQUENCE source is livein, copy it first. Also, update livevariables information when a copy is introduced. llvm-svn: 103680
-
Evan Cheng authored
llvm-svn: 103679
-
Devang Patel authored
This fixes recent regressions reported by gdb testsuite. Tighter verification of debug info generated by FE found these regressions. Refactor code to extract line number and column number from SourceLocation. llvm-svn: 103678
-
Chris Lattner authored
llvm-svn: 103677
-
Fariborz Jahanian authored
class object used as a receiver to an objective-c pointer via a converwsion function. wip. llvm-svn: 103672
-
Chris Lattner authored
(e.g. for C++ operators) in the xml dump. I also re-enabled the unit test for ast-print-xml (or so I think) at least, make test didn't fail..." patch by Sebastien Binet! llvm-svn: 103671
-
Chris Lattner authored
llvm-svn: 103670
-
Chris Lattner authored
lower them to the correct x86-64 instructions since we don't have a clean way to handle this in td files yet. rdar://7947184 llvm-svn: 103668
-
Evan Cheng authored
Fix some potential issues in the pseudo instruction expansion phase: copy implicit operands and memoperands. Also, expand instructions even if their defs are "dead" since they may have implicit kill operands. llvm-svn: 103667
-
Daniel Dunbar authored
llvm-svn: 103665
-
Daniel Dunbar authored
llvm-svn: 103664
-
Daniel Dunbar authored
llvm-svn: 103663
-
Daniel Dunbar authored
MC: Switch MCFillFragment to storing total fill size instead of a count. This allows using ValueSize==0 to represent a virtual fill. llvm-svn: 103662
-
Daniel Dunbar authored
MCAlignFragments for this. llvm-svn: 103661
-