- Dec 20, 2013
-
-
Timur Iskhodzhanov authored
Reviewed at http://llvm-reviews.chandlerc.com/D2445 llvm-svn: 197826
-
Artyom Skrobov authored
llvm-svn: 197825
-
Roman Divacky authored
llvm-svn: 197824
-
Timur Iskhodzhanov authored
llvm-svn: 197821
-
Adrian Prantl authored
llvm-svn: 197820
-
Adrian Prantl authored
llvm-svn: 197819
-
NAKAMURA Takumi authored
llvm-svn: 197818
-
NAKAMURA Takumi authored
llvm-svn: 197817
-
Zoran Jovanovic authored
llvm-svn: 197815
-
Rafael Espindola authored
llvm-svn: 197814
-
Yaron Keren authored
llvm-svn: 197810
-
Evgeniy Stepanov authored
llvm-svn: 197809
-
Evgeniy Stepanov authored
llvm-svn: 197808
-
Evgeniy Stepanov authored
llvm-svn: 197807
-
Evgeniy Stepanov authored
llvm-svn: 197806
-
Daniel Jasper authored
If a header file belonging to a certain module is not found on the filesystem, that header gets marked as unavailable. Now, the layering warning (-fmodules-decluse) should still warn about headers of this module being wrongfully included. Currently, headers belonging to those modules are just treated as not belonging to modules at all which means they can be included freely from everywhere. To implement this (somewhat) cleanly, I have moved most of the layering checks into the ModuleMap. This will also help with showing FixIts later. llvm-svn: 197805
-
Richard Sandiford authored
If the extension of a loaded value is compared against zero and used in other arithmetic, InstCombine will change the comparison to use the unextended load. It's also possible that the comparison could be against the unextended load from the outset. In DAG form this becomes a truncation of an extending load. We want to strip the truncation if possible so that we can use load-and-test instructions. llvm-svn: 197804
-
Rui Ueyama authored
If a symbol in an import library is marked as "data", the linker will not create a jump table entry for the symbol, since jump table makes sense only for a symbol pointing to a function. I don't think NONAME attribute has a meaning when creating an import library. The attribute is emitted for debugging purpose. llvm-svn: 197803
-
Richard Sandiford authored
The handling of ANY_EXTEND and ZERO_EXTEND was too strict. In this context we can treat ZERO_EXTEND in much the same way as an AND and then also handle outermost ZERO_EXTENDs. I couldn't find a test that benefited from the ANY_EXTEND change, but it's more obvious to write it this way once SIGN_EXTEND and ZERO_EXTEND are handled differently. llvm-svn: 197802
-
Rui Ueyama authored
If the linker is instructed to create a DLL, it will also create an import library (.lib file) to describe the symbols exported by the DLL. This patch is to create the import library file. There is a convenient command "lib.exe" which can create an import library from a module definition file (.def file). The command is used in this patch. llvm-svn: 197801
-
Enrico Granata authored
This refactoring makes it less error-prone to define formatter types with the correct match schemes llvm-svn: 197800
-
Evgeniy Stepanov authored
llvm-svn: 197799
-
Timur Iskhodzhanov authored
llvm-svn: 197798
-
Rui Ueyama authored
Default ordinals were assigned in EdataPass, and the assigned values were then discarded in the pass. No code other than EdataPass would not be able to get all of the information about ordinals. That's not ideal since I'm writing code to emit an Import Library file, which also needs ordinals. This is a patch to move the code to assign default ordinals from EdataPass to LinkingContext::verify(), so that assigned ordinals will be available anywhere. No functionality change. llvm-svn: 197797
-
Tobias Grosser authored
Reported-by:
Dmitry N. Mikushin <maemarcus@gmail.com> llvm-svn: 197796
-
Enrico Granata authored
FormatNavigator has long stopped navigating anything - the generation of possible formatters matches is now done elsewhere So, rename the class for what it truly is: a FormattersContainer Also do a bunch of related text substitutions in the interest of overall naming clarity llvm-svn: 197795
-
Tobias Grosser authored
Further: o ensure that the header is properly readable even on smaller screen sizes. o Shorten the table of contents of the documentation section. llvm-svn: 197794
-
Tobias Grosser authored
llvm-svn: 197793
-
Kai Nacke authored
Recently, support for krait cpu was added. This commit extends getHostCPUName() to return krait as cpu for the APQ8064 (a Krait 300). llvm-svn: 197792
-
Justin Bogner authored
If we happen to eliminate every case in a switch that has branch weights, we currently try to create metadata for the one remaining branch, triggering an assert. Instead, we need to check that the metadata we're trying to create is sensible. llvm-svn: 197791
-
Justin Bogner authored
llvm-svn: 197790
-
Justin Bogner authored
llvm-svn: 197789
-
Rui Ueyama authored
llvm-svn: 197788
-
Saleem Abdulrasool authored
The .pool directive is an alias for the .ltorg directive used to create a literal pool. Simply treat .pool as if .ltorg was passed. llvm-svn: 197787
-
NAKAMURA Takumi authored
Since r197684, "install/bin/llvm-config --obj-root" hasn't shown the build tree. The builder was finding utils in the build tree, from the installed tree. I will revert this after dragonegg builder would be tweaked not to use installed llvm-config. llvm-svn: 197786
-
Daniel Jasper authored
Before: SomeFunction(L"A" L"B"); After: SomeFunction(L"A" L"B"); llvm-svn: 197785
-
Tom Stellard authored
v2: - Fix typo. Reviewed-by:
Jan Vesely <jan.vesely@rutgers.edu> llvm-svn: 197784
-
Tom Stellard authored
v2: Add ftrunc->TRUNC pattern instead of replacing int_AMDGPU_trunc v3: move ftrunc pattern next to TRUNC definition, it's available since R600 Patch By: Jan Vesely Reviewed-by:
Tom Stellard <thomas.stellard@amd.com> Signed-off-by:
Jan Vesely <jan.vesely@rutgers.edu> llvm-svn: 197783
-
Eric Christopher authored
the moment. llvm-svn: 197782
-
Eric Christopher authored
llvm-svn: 197781
-