- Jun 14, 2012
-
-
David Blaikie authored
llvm-svn: 158460
-
David Blaikie authored
llvm-svn: 158459
-
David Blaikie authored
llvm-svn: 158458
-
Stepan Dyatkovskiy authored
Replaced memcpy with std::copy, since the first one may work improperly with non POD data. llvm-svn: 158457
-
David Blaikie authored
Patch by Wei-Ren Chen. llvm-svn: 158456
-
David Blaikie authored
llvm-svn: 158455
-
Pete Cooper authored
Recommit r158407: Allow SROA to look at a vector type and see if the offset is out of range to be replaced with a scalar access. Now with additional fix and test for indexing into a vector inside a struct llvm-svn: 158454
-
Duncan Sands authored
llvm-svn: 158453
-
Alexey Samsonov authored
llvm-svn: 158452
-
Alexey Samsonov authored
llvm-svn: 158451
-
Alexey Samsonov authored
llvm-svn: 158450
-
Alexey Samsonov authored
[Sanitizer] Workaround for -Wunused-private-field warning - add an attribute in TSan unit test, and silence this warning as gtest has unused fields. llvm-svn: 158449
-
Alexey Samsonov authored
llvm-svn: 158448
-
Alexey Samsonov authored
llvm-svn: 158447
-
NAKAMURA Takumi authored
llvm-svn: 158446
-
Richard Barton authored
llvm-svn: 158445
-
Jush Lu authored
llvm-svn: 158443
-
Manman Ren authored
Sorry that I accidently checked in this file with my previous commit. llvm-svn: 158442
-
Manman Ren authored
uno && ueq was converted to ueq, it should be converted to uno. llvm-svn: 158441
-
James Dennett authored
OBJC_AT_KEYWORD_NAME take a string literal argument where previously its second argument was an unquoted token; macro invocations such as OBJC_AT_KEYWORD_NAME(NeedAt,{) confuse Doxygen's parser. While I'm wary of changing code (rather than just comments) to work around Doxygen's limitations, in this case the change makes the code more readable for human beings as well, and the macro derived no benefit from using the preprocessor's stringification operator, as it never has need of the unquoted token. I've also included a couple of trivial drive-by fixes to doc comments. llvm-svn: 158440
-
Akira Hatanaka authored
llvm-svn: 158438
-
Akira Hatanaka authored
llvm-svn: 158437
-
Akira Hatanaka authored
llvm-svn: 158436
-
Akira Hatanaka authored
llvm-svn: 158435
-
Akira Hatanaka authored
llvm-svn: 158434
-
Akira Hatanaka authored
llvm-svn: 158433
-
Akira Hatanaka authored
as a scratch register when they are expanded to long branches. llvm-svn: 158432
-
Akira Hatanaka authored
to load an immediate that does not fit into 16-bit. llvm-svn: 158431
-
Akira Hatanaka authored
to load an immediate that does not fit into 16-bit. Also, take into consideration the global base register slot on the stack when computing the stack size. llvm-svn: 158430
-
Akira Hatanaka authored
compute the size of basic blocks in a function. Also, define a function which emits a series of instructions to load an immediate. llvm-svn: 158429
-
Akira Hatanaka authored
Long-branches need access to the global base register to get the destination address. llvm-svn: 158428
-
Akira Hatanaka authored
object for the global base register. This is the first of a series of patches which implements long branch expansion for MIPS. llvm-svn: 158427
-
Akira Hatanaka authored
delay slot filler pass of MIPS, per suggestion of Jakob Stoklund Olesen. This change, along with the fix in r158154, enables machine verification to be run after delay slot filling. llvm-svn: 158426
-
Richard Trieu authored
bits wide. llvm-svn: 158425
-
Richard Trieu authored
llvm-svn: 158424
-
NAKAMURA Takumi authored
test/Driver/warning-options.cpp: Mark as XFAIL:cygming. -pedantic is passed with gcc-as driver. PR12920 llvm-svn: 158423
-
James Dennett authored
This reduces the number of warnings generated by Doxygen by about 100 (roughly 10%). Issues addressed: (1) Primarily, backslash-escaped "@foo" and "#bah" in Doxygen comments when they're not supposed to be Doxygen commands or links, and similarly for "<baz>" when it's not intended as as HTML tag; (2) Changed some \t commands (which don't exist) to \c ("to refer to a word of code", as the Doxygen manual says); (3) \precondition becomes \pre; (4) When touching comments, deleted a couple of spurious spaces in them; (5) Changed some \n and \r to \\n and \\r; (6) Fixed one tiny typo: #pragms -> #pragma. This patch touches documentation/comments only. llvm-svn: 158422
-
- Jun 13, 2012
-
-
Chandler Carruth authored
padding on x86-64. llvm-svn: 158421
-
Richard Trieu authored
llvm-svn: 158420
-
Akira Hatanaka authored
pattern: (add v0, (add v1, abs_lo(tjt))) => (add (add v0, v1), abs_lo(tjt)) "tjt" is a TargetJumpTable node. llvm-svn: 158419
-