- Nov 27, 2012
-
-
Eric Christopher authored
and O0 + debug codegen. llvm-svn: 168680
-
NAKAMURA Takumi authored
test/Transforms/SimplifyLibCalls/SPrintF.ll: Suppress this for now. r168677 unveiled another failure. FYI, this test makes no sense with "not grep"... I saw "assertion failure" in stderr. llvm-svn: 168679
-
Preston Briggs authored
If the Src and Dst are the same instruction, no loop-independent dependence is possible, so we force the PossiblyLoopIndependent flag to false. The test case results are updated appropriately. llvm-svn: 168678
-
Meador Inge authored
This patch migrates the sprintf optimizations from the simplify-libcalls pass into the instcombine library call simplifier. llvm-svn: 168677
-
NAKAMURA Takumi authored
open("/dev/fd/1-foobar") fails with EEXIST on cygwin. llvm-svn: 168676
-
Eli Friedman authored
llvm-svn: 168675
-
Eli Friedman authored
llvm-svn: 168674
-
Bill Schmidt authored
ELF ABI. Complex values are to be passed in registers as though the real and imaginary parts were passed as separate parameters. Prior to this patch, complex values were passed as byval aggregates. It turns out that specifying getDirect() for all complex types when classifying the argument type results in the desired behavior. The new Clang test case verifies that the correct LLVM IR is generated for caller and callee for each of the underlying types for _Complex. llvm-svn: 168673
-
Jordan Rose authored
llvm-svn: 168672
-
Jordan Rose authored
Thanks for the original catch in r168303, Takumi. llvm-svn: 168671
-
Jakub Staszak authored
llvm-svn: 168670
-
Rafael Espindola authored
llvm-svn: 168669
-
rdar://problem/12106825Greg Clayton authored
Allow the expression parser to see more than just data symbols. We now accept any symbol that has an address. We take precautions to only accept symbols by their mangled or demangled names only if the demangled name was not synthesized. If the demangled name is synthesized, then we now mark symbols accordingly and only compare against the mangled original name. llvm-svn: 168668
-
Rafael Espindola authored
llvm-svn: 168667
-
Eric Christopher authored
llvm-svn: 168666
-
Andrew Kaylor authored
llvm-svn: 168665
-
Jakub Staszak authored
llvm-svn: 168664
-
NAKAMURA Takumi authored
llvm-svn: 168663
-
Jim Ingham authored
The skipOnLinux decorator wasn't calling the test method correctly (no need to pass in the "self") resulting in errors on MacOS X for the tests so decorated. llvm-svn: 168662
-
Joe Abbey authored
llvm-svn: 168661
-
Jakub Staszak authored
llvm-svn: 168660
-
Jakub Staszak authored
llvm-svn: 168659
-
Chad Rosier authored
llvm-svn: 168658
-
Chad Rosier authored
classes. The associated test case still doesn't pass, but it does have far fewer issues. rdar://12719844 llvm-svn: 168657
-
Michael Ilseman authored
Applied the patch, rather than committing it. llvm-svn: 168656
-
rdar://problem/12636970Greg Clayton authored
Detect the new fixed clang that properly supports bitfields in objc classes. llvm-svn: 168655
-
Owen Anderson authored
Revert r168635 "Step towards implementation of pass manager with doInitialization and doFinalization per module detangled from runOn?? calls, still has temporary code not to break ASAN to be removed when that pass conforms to the proposed model". It appears to have broken at least one buildbot. llvm-svn: 168654
-
Richard Smith authored
llvm-svn: 168653
-
Michael Ilseman authored
llvm-svn: 168652
-
NAKAMURA Takumi authored
llvm/test/CodeGen/X86/2012-07-15-broadcastfold.ll: Loosen expression corresponding to r168627. Win32 and *bsd were affected. llvm-svn: 168651
-
Richard Smith authored
llvm-svn: 168650
-
Michael Ilseman authored
llvm-svn: 168649
-
Michael Ilseman authored
Added in first optimization using fast-math flags to serve as an example for following optimizations. SimplifyInstruction will now try to optimize an fmul observing its FastMathFlags to see if it can fold multiply by zero when 'nnan' and 'nsz' flags are set. llvm-svn: 168648
-
Michael Ilseman authored
llvm-svn: 168647
-
Michael Ilseman authored
Added in bitcode enum for the serializing of fast-math flags. Added in the reading/writing of fast-math flags from the OptimizationFlags record for BinaryOps. llvm-svn: 168646
-
Michael Ilseman authored
Added in the ability to read LLVM IR text that contains fast-math flags as a sequence of capital letters separated by spaces in any order. Added in the printing of the fast-math flags in a canonical order, and don't print the other flags when 'fast' is specified, as 'fast' implies all the others. llvm-svn: 168645
-
Eric Christopher authored
llvm-svn: 168644
-
Eric Christopher authored
add a TODO for starting. llvm-svn: 168643
-
Michael Ilseman authored
Add in getter/setter methods for Instructions, allowing them to be the interface to FPMathOperator similarly to now NUS/NSW is handled. llvm-svn: 168642
-
Michael Ilseman authored
Created FastMathFlags convenience struct for the getting and setting of fast-math flags en masse. Added SubclassOptionalData bitfields and corresponding getters/setters to FPMathOperator for the various fast-math flags. llvm-svn: 168641
-