- Oct 31, 2013
-
-
Rafael Espindola authored
llvm-svn: 193813
-
Andrew Trick authored
llvm-svn: 193812
-
Andrew Trick authored
Originally implemented by Lang Hames. llvm-svn: 193811
-
Rafael Espindola authored
llvm-svn: 193810
-
Manman Ren authored
Given that backend does not handle "invoke asm" correctly ("invoke asm" will be handled by SelectionDAGBuilder::visitInlineAsm, which does not have the right setup for LPadToCallSiteMap) and we already made the assumption that inline asm does not throw in InstCombiner::visitCallSite, we are going to make the same assumption in Inliner to make sure we don't convert "call asm" to "invoke asm". If it becomes necessary to add support for "invoke asm" later on, we will need to modify the backend as well as remove the assumptions that inline asm does not throw. Fix rdar://15317907 llvm-svn: 193808
-
Rafael Espindola authored
llvm-svn: 193804
-
Rafael Espindola authored
llvm-svn: 193802
-
Rafael Espindola authored
There are two ways one could implement hiding of linkonce_odr symbols in LTO: * LLVM tells the linker which symbols can be hidden if not used from native files. * The linker tells LLVM which symbols are not used from other object files, but will be put in the dso symbol table if present. GOLD's API is the second option. It was implemented almost 1:1 in llvm by passing the list down to internalize. LLVM already had partial support for the first option. It is also very similar to how ld64 handles hiding these symbols when *not* doing LTO. This patch then * removes the APIs for the DSO list. * marks LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN all linkonce_odr unnamed_addr global values and other linkonce_odr whose address is not used. * makes the gold plugin responsible for handling the API mismatch. llvm-svn: 193800
-
Chad Rosier authored
llvm-svn: 193798
-
Rui Ueyama authored
llvm-svn: 193796
-
Nuno Lopes authored
llvm-svn: 193795
-
Chad Rosier authored
llvm-svn: 193790
-
Roman Divacky authored
llvm-svn: 193789
-
Reid Kleckner authored
That way the test won't start faililng when someone adds a new attribute and wants to use the next logical enum (38) for bitcode. The new bitcode file tries to use the number 48 as an attribute instead. llvm-svn: 193787
-
Alexey Samsonov authored
llvm-svn: 193785
-
Matt Arsenault authored
llvm-svn: 193782
-
Petar Jovanovic authored
Two of the tests are new test cases (cross-module-a.ll, multi-module-a.ll) not yet supported on MIPS, while XFAIL for the other two tests was accidentally removed in r193570 and this change reverts those lines. llvm-svn: 193781
-
Alexey Samsonov authored
llvm-svn: 193780
-
Manman Ren authored
We add a map in DwarfDebug to map MDNodes that are shareable across CUs to the corresponding DIEs: MDTypeNodeToDieMap. These DIEs can be shared across CUs, that is why we keep the maps in DwarfDebug instead of CompileUnit. We make the assumption that if a DIE is not added to an owner yet, we assume it belongs to the current CU. Since DIEs for the type system are added to their owners immediately after creation, and other DIEs belong to the current CU, the assumption should be true. A testing case is added to show that we only create a single DIE for a type MDNode and we use ref_addr to refer to the type DIE. We also add a testing case to show ref_addr relocations for non-darwin platforms. llvm-svn: 193779
-
Roman Divacky authored
llvm-svn: 193778
-
Manman Ren authored
llvm-svn: 193773
-
Alexey Samsonov authored
DWARFAbbreviationDeclaration: remove dead code, refactor parsing code and make it more robust. No functionality change. llvm-svn: 193770
-
Andrew Trick authored
llvm-svn: 193769
-
Andrew Trick authored
llvm-svn: 193768
-
Andrew Trick authored
llvm-svn: 193767
-
Andrew Trick authored
llvm-svn: 193766
-
Andrew Trick authored
llvm-svn: 193765
-
Rafael Espindola authored
llvm-svn: 193756
-
Rafael Espindola authored
llvm-svn: 193752
-
Rafael Espindola authored
Patch by Robin Hahling. llvm-svn: 193750
-
Rafael Espindola authored
It had no tests, was unused and was "experimental at best". llvm-svn: 193749
-
Cameron McInally authored
llvm-svn: 193748
-
Elena Demikhovsky authored
llvm-svn: 193747
-
Richard Sandiford authored
As on other hosts, the CPU identification instruction is priveleged, so we need to look through /proc/cpuinfo. I copied the PowerPC way of handling "generic". Several tests were implicitly assuming z10 and so failed on z196. llvm-svn: 193742
-
Amara Emerson authored
This adds a new subtarget feature called FPARMv8 (implied by NEON), and predicates the support of the FP instructions and registers on this feature. llvm-svn: 193739
-
NAKAMURA Takumi authored
llvm-svn: 193738
-
Rafael Espindola authored
llvm-svn: 193737
-
Rafael Espindola authored
Found by the valgrind bot. llvm-svn: 193736
-
Rafael Espindola authored
llvm-svn: 193734
-
Yuchen Wu authored
llvm-svn: 193732
-