- Jun 19, 2009
-
-
Devang Patel authored
llvm-svn: 73784
-
Evan Cheng authored
llvm-svn: 73783
-
Fariborz Jahanian authored
work in progress. llvm-svn: 73782
-
Anton Korobeynikov authored
llvm-svn: 73781
-
Owen Anderson authored
Patch by Ðван СоÑокин. llvm-svn: 73779
-
Owen Anderson authored
llvm-svn: 73778
-
Owen Anderson authored
llvm-svn: 73777
-
Dan Gohman authored
expressions, when interesting. llvm-svn: 73776
-
Owen Anderson authored
llvm-svn: 73775
-
Dan Gohman authored
expression in IVUsers, because in the case of a use of a non-linear addrec outside of a loop, this causes the addrec to be evaluated as a linear addrec. llvm-svn: 73774
-
Owen Anderson authored
llvm-svn: 73773
-
Bob Wilson authored
Patch by Benjamin Kramer. llvm-svn: 73772
-
Ted Kremenek authored
preferring to use their replacements in GRState. This further unifies the code paths for such logic and leads to some code reduction. llvm-svn: 73771
-
Owen Anderson authored
Nicolas, this is probably the cause of the failures you were seeing. llvm-svn: 73770
-
Chris Lattner authored
as if they were multiple uses of the same instruction. This interacts well with the existing loadpre that j-t does to open up many new jump threads earlier. llvm-svn: 73768
-
Chris Lattner authored
llvm-svn: 73767
-
Duncan Sands authored
llvm-svn: 73766
-
Duncan Sands authored
place it with -pedantic. Remove -Wunused since it is implied by -Wall. Group -Wno-unused-parameter with -Wall -W since it is the combination of these two that turns on -Wunused-parameter. llvm-svn: 73765
-
Argyrios Kyrtzidis authored
llvm-svn: 73762
-
Evan Cheng authored
llvm-svn: 73761
-
Eli Friedman authored
handle with an SSE2 instruction. llvm-svn: 73760
-
Evan Cheng authored
llvm-svn: 73759
-
Argyrios Kyrtzidis authored
llvm-svn: 73758
-
Eli Friedman authored
taking so long to get to this! llvm-svn: 73757
-
Zhongxing Xu authored
because the type of the symbol is used to create the default range. We need the sign to be consistent. llvm-svn: 73756
-
Nick Lewycky authored
llvm-svn: 73755
-
Zhongxing Xu authored
ElementRegion. llvm-svn: 73754
-
Eli Friedman authored
Patch by Benedict Gaster. llvm-svn: 73753
-
Chris Lattner authored
when it allows forming a tail call. Patch by Frits van Bommel. This implements PR4323. llvm-svn: 73752
-
Chris Lattner authored
strcmp -> memcmp when the lengths of the strings are unknown. Patch by Nick Lewycky! llvm-svn: 73751
-
Lang Hames authored
llvm-svn: 73750
-
Evan Cheng authored
llvm-svn: 73749
-
Zhongxing Xu authored
llvm-svn: 73748
-
Evan Cheng authored
Latency information for ARM v6. It's rough and not yet hooked up. Right now we are only using branch latency to determine if-conversion limits. llvm-svn: 73747
-
Eli Friedman authored
while experimenting. I'm reasonably sure this is correct, but please tell me if these instructions have some strange property which makes this change unsafe. llvm-svn: 73746
-
Owen Anderson authored
Fix weird class-size-being-different problems. At some level this is being caused by config.h not being included everywhere. llvm-svn: 73745
-
Chris Lattner authored
llvm-svn: 73744
-
Chris Lattner authored
implementation. The idea is that we want asmprinting to work by converting MachineInstrs into a new MCInst class, then the per-instruction asmprinter works on MCInst. MCInst and the new asmprinters will not depend on most of the llvm code generators. This allows building diassemblers that don't link in the whole llvm code generator. This is step #1 of many. llvm-svn: 73743
-
Chris Lattner authored
into DarwinTargetAsmInfo.cpp. The remaining differences should be evaluated. It seems strange that x86/arm has .zerofill but ppc doesn't, etc. llvm-svn: 73742
-
Argyrios Kyrtzidis authored
Make changes to PCHReader to allow reading a PCH file without having a pre-initialized Preprocessor. -Introduce 'PCHReaderListener' which is an abstract interface for getting various information from the PCHReader. -If PCHReader is constructed without a Preprocessor, it can still load the file and invoke the callbacks of PCHReaderListener. -If PCHReader is constructed with an initialized Preprocessor, PCHValidator is used as a PCHReaderListener to validate the contents of the PCH file against the given Preprocessor. llvm-svn: 73741
-