- Apr 02, 2015
-
-
Andrey Churbanov authored
Replace some unsafe API calls with safe alternatives on Windows, prepare code for similar actions on other platforms - wrap unsafe API calls into macros. llvm-svn: 233915
-
Andrey Churbanov authored
Eliminated the write to depth field of the machine_hierarchy data structure in __kmp_get_hierarchy(), thus fixing race condition. Now local variable used by each thread. llvm-svn: 233914
-
Alexey Bataev authored
llvm-svn: 233913
-
Benjamin Kramer authored
MSVC 2013 can't even parse __declspec(align(sizeof(foo))). We'll have to wait until MSVC 2015 for this. This partially reverts commit r233911. llvm-svn: 233912
-
Benjamin Kramer authored
This isn't perfect as it still assumes sizeof(void*) == alignof(void*), but we can fix that when compiler support gets better. Shrinks some Stmts that happen to inherit from Stmt and have a SourceLocation as the first member (64 bit archs only). llvm-svn: 233911
-
Benjamin Kramer authored
We wrap __attribute((aligned)) for GCC 4.7 and __declspec(align) for MSVC. The latter behaves weird in some contexts so this should be used carefully. llvm-svn: 233910
-
Vasileios Kalintiris authored
Summary: Avoid duplicate code in Mips16FrameLowering and MipsSEFrameLowering by providing an implementation of the eliminateCallFramePseudoInstr() function from their base class. Depends on D8640. Reviewers: dsanders Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D8641 llvm-svn: 233909
-
Tamas Berghammer authored
Differential revision: http://reviews.llvm.org/D8765 llvm-svn: 233908
-
Tamas Berghammer authored
These test cases check if they are able to read registers after the inferior is crashed. Previously they did it with reading the eax register what is only available on i386 and x86_64. Thic CL add code to do the check based on the target architecture (currently i386, x86_64 and aarch64 is supported) Differential revision: http://reviews.llvm.org/D8702 llvm-svn: 233907
-
Elena Demikhovsky authored
by Asaf Badouh (asaf.badouh@intel.com) llvm-svn: 233906
-
Vasileios Kalintiris authored
Summary: adjustStackPtr() is implemented from both MipsSEInstrInfo and Mips16InstrInfo. It makes sense to expose this function from MipsInstrInfo and avoid explicit casting in some cases. Depends on D8638. Reviewers: dsanders Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D8640 llvm-svn: 233905
-
Vasileios Kalintiris authored
Reviewers: dsanders Reviewed By: dsanders Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D8638 llvm-svn: 233904
-
Vladimir Sukharev authored
Corrected forgotten change to remove excess "generic-armv8.1-a" cpu Subscribers: llvm-commits Completion of http://reviews.llvm.org/rL233811 llvm-svn: 233903
-
Alexey Bataev authored
llvm-svn: 233902
-
Rui Ueyama authored
Since we no longer support MSVC 2012, we can assume that variadic templates are always supported. This patch removes an #ifdef for C++ compilers that don't support variadic templates. llvm-svn: 233901
-
Denis Protivensky authored
The function call that goes through PLT table may be performed from both ARM and Thumb code. This situation requires adding a veneer to original PLT code (which is always ARM) to effect Thumb-to-ARM transition. Differential Revision: http://reviews.llvm.org/D8701 llvm-svn: 233900
-
Denis Protivensky authored
The case is possible with wrong input, so report an error instead of using llvm_unreachable. llvm-svn: 233899
-
Peter Collingbourne authored
llvm-svn: 233898
-
Rui Ueyama authored
llvm-svn: 233897
-
Rui Ueyama authored
llvm-svn: 233896
-
Lang Hames authored
llvm-svn: 233895
-
Rui Ueyama authored
There is one-to-one correspondence between ELF machine type and a LinkingContext. We passed them as separate arguments to the constructor. This patch is to teach the LinkingContexts about their machine types, so that we don't need to pass that data as separate arguments. llvm-svn: 233894
-
Jason Molenda authored
Mach-O files. <rdar://problem/20113673> llvm-svn: 233893
-
Philip Reames authored
These two were never implemented for gcroot, so there's no point in keeping them around now. llvm-svn: 233892
-
Philip Reames authored
I'm playing with supporting custom stack map formats with statepoints. While doing so, I noticed that the existing implementation didn't indicate inherently unsized frames. This change essentially just ports the functionality that already exists for the default StackMaps section to custom stackmaps. llvm-svn: 233891
-
Sanjoy Das authored
Swapping DenseMap A with DenseMap B invalidates iterators pointing into both A and B. llvm-svn: 233890
-
Sanjoy Das authored
Nothing is using DenseMapBase::swap. Besides it does not compile in its current form. llvm-svn: 233889
-
Rui Ueyama authored
Looks like MipsTargetHandler::_runtimeFile is unused. MipsRuntimeFile doesn't seem to add values to the base class, so I removed that class too. llvm-svn: 233888
-
Adam Nemet authored
llvm-svn: 233887
-
Jason Molenda authored
When we're seeing offsets that exceed the size of our section, don't try to use that unwind info. <rdar://problem/20113673> llvm-svn: 233886
-
Lang Hames authored
use these to add support for C++ static ctors/dtors to the Orc-lazy JIT in LLI. Replace the trivial_retval_1 regression test - the new 'hello' test is covering strictly more code. llvm-svn: 233885
-
Craig Topper authored
llvm-svn: 233884
-
Rui Ueyama authored
registerRelocationNames() function is called to register all known ELF relocation types to the central registry. Since we have separate LinkingContext class for each ELF machine type, we need to call the function for each LinkingContext. However, the function belonged to TargetHandler instead of LinkingContext. So we needed to do ctx.getTargetHandler().registerRelocationNames(). This patch removes that redundant getTargetHandler call by moving the function from TargetHandler to LinkingContext. Conceptually this patch is small, but in reality it's not that small. It's because the same code is copied to each architecture. Most of this patch is just repetition. We need to merge them, but that cannot be done in this patch. llvm-svn: 233883
-
Rui Ueyama authored
Also removed some over-generalization added in r232866, such as making a function take two parameters and pass two equivalent arguments to the function. llvm-svn: 233882
-
Alexey Samsonov authored
llvm-svn: 233881
-
Rui Ueyama authored
llvm-svn: 233880
-
Alexey Samsonov authored
llvm-svn: 233879
-
Rui Ueyama authored
Other createWriter<Arch> functions take <Arch>LinkingContext as arguments. Only createWriterELF was an exception. This patch makes it consistent with others. llvm-svn: 233878
-
Peter Collingbourne authored
Differential Revision: http://reviews.llvm.org/D8792 llvm-svn: 233876
-
Peter Collingbourne authored
This uses the same class metadata currently used for virtual call and cast checks. The new flag is -fsanitize=cfi-nvcall. For consistency, the -fsanitize=cfi-vptr flag has been renamed -fsanitize=cfi-vcall. Differential Revision: http://reviews.llvm.org/D8756 llvm-svn: 233874
-