summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [sanitizer] Intercept drand48_r, lrand48_r.Evgeniy Stepanov2013-10-295-0/+43
| | | | llvm-svn: 193655
* [msandr] Remove use of std::set in msandr client to avoid reentrancy issues.Evgeniy Stepanov2013-10-291-14/+8
| | | | | | Patch by Qin Zhao. llvm-svn: 193654
* [stackprotector] Update the StackProtector pass to perform datalayout analysis.Josh Magee2013-10-292-28/+90
| | | | | | | | | | | | | | | This modifies the pass to classify every SSP-triggering AllocaInst according to an SSPLayoutKind (LargeArray, SmallArray, AddrOf). This analysis is collected by the pass and made available for use, but no other pass uses it yet. The next patch will make use of this analysis in PEI and StackSlot passes. The end goal is to support ssp-strong stack layout rules. WIP. Differential Revision: http://llvm-reviews.chandlerc.com/D1789 llvm-svn: 193653
* ScopInfo: Add support for AssumedContextTobias Grosser2013-10-294-4/+100
| | | | | | | | | | | | | | | | | | | When constructing a scop sometimes the exact representation of a statement or condition would be very complex, but there is a common case which is a lot simpler, but which is only valid under certain assumptions. The assumed context records the assumptions taken during the construction of this scop and that need to be code generated as a run-time test. At the moment, we do not yet model any assumptions, but only added the AssumedContext as well as the isl-ast generation support. As a next step, this needs to be hooked up with the isl code generation. if (1) /* run-time condition */ { /* optimized code */ } else { /* original code */ } llvm-svn: 193652
* Update commentMatt Arsenault2013-10-291-2/+2
| | | | llvm-svn: 193651
* Workaround MSVC 32-bit miscompile of getCondCodeAction.Matt Arsenault2013-10-291-15/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use 32-bit types for the array instead of 64. This should generally be better anyway. In optimized + assert builds, I saw a failure when a cond code / type combination that is never set was loading a non-zero value and hitting the != Promote assert. It turns out when loading the 64-bit value to do the shift, the assembly loads the 2 32-bit halves from non-consecutive addresses. The address the second half of the loaded uint64_t doesn't include the offset of the array in the struct. Instead of being offset + 4, it's just + 4. I'm not entirely sure why this wasn't observed before. setCondCodeAction isn't heavily used by the in-tree targets, and not with the higher valued vector SimpleValueTypes. Only PPC is using one of the > 32 valued types, and that is probably never used by anyone on a 32-bit MSVC compiled host. I ran into this when upgrading LLVM versions, so I guess the value loaded from the nonsense address happened to work out before. No test since I'm not really sure if / how it can be reproduced with the current in tree targets, and it's not supposed to change anything. llvm-svn: 193650
* Removing a switch statement that contains only a default label. This ↵Aaron Ballman2013-10-291-28/+25
| | | | | | resolves an MSVC warning. No functional change intended. llvm-svn: 193649
* Changed tests_typestate to test_typestate for consistency.Chris Wailes2013-10-295-32/+32
| | | | llvm-svn: 193648
* [asan] Maybe fix test failures on lld bots.Evgeniy Stepanov2013-10-291-1/+1
| | | | llvm-svn: 193647
* [PECOFF] Suppress startup message of background processes.Rui Ueyama2013-10-292-0/+2
| | | | llvm-svn: 193646
* [sanitizer] Intercept sincos, remquo, lgamma, lgamma_r.Evgeniy Stepanov2013-10-295-0/+234
| | | | llvm-svn: 193645
* Add -lm to sanitizer link arguments.Evgeniy Stepanov2013-10-291-0/+1
| | | | | | We'll need to intercept a few function in libm. llvm-svn: 193644
* [msandr] Add support for standalone test.Evgeniy Stepanov2013-10-292-10/+128
| | | | | | | | Add macro MSANDR_STANDALONE_TEST for standalone test without msan executables. Patch by Qin Zhao. llvm-svn: 193643
* Add support for the separate version of /FI.Rafael Espindola2013-10-292-1/+4
| | | | | | Patch by Jeff Muizelaar. llvm-svn: 193642
* [mips] Align the stack to 16-bytes for mfp64.Akira Hatanaka2013-10-296-4/+25
| | | | llvm-svn: 193641
* [mips] Align the stack to 16-bytes for -mfp64.Akira Hatanaka2013-10-294-14/+56
| | | | llvm-svn: 193640
* [tsan] Fix unused variable warnings.Evgeniy Stepanov2013-10-291-4/+9
| | | | llvm-svn: 193639
* [mips] Use the distance between the current argument's starting address andAkira Hatanaka2013-10-291-11/+10
| | | | | | | | | the previous argument's ending address to compute the type of the padding argument. No intended functionality change. llvm-svn: 193638
* Remove declared but not implemented function.Rafael Espindola2013-10-291-11/+0
| | | | llvm-svn: 193637
* [mips] Move setDescriptionString to base class MipsTargetInfoBase and call itAkira Hatanaka2013-10-291-21/+29
| | | | | | | | at the end of handleTargetFeatures. No intended functionality change. llvm-svn: 193636
* [asan] Fix build.Evgeniy Stepanov2013-10-291-4/+4
| | | | llvm-svn: 193635
* [sanitizer] Fix build warnings.Evgeniy Stepanov2013-10-291-0/+4
| | | | llvm-svn: 193634
* [sanitizer] Ptrace syscall handler.Evgeniy Stepanov2013-10-294-2/+49
| | | | llvm-svn: 193633
* Fix common typos in the docs.Benjamin Kramer2013-10-294-4/+4
| | | | llvm-svn: 193632
* Fixing an issue in yesterday's dynamic type changes where we would not craft ↵Enrico Granata2013-10-295-10/+112
| | | | | | | | a valid SBType given debug information Added a test case to help us detect regression in this realm llvm-svn: 193631
* Move getSymbol to TargetLoweringObjectFile.Rafael Espindola2013-10-2912-39/+35
| | | | | | This allows constructing a Mangler with just a TargetMachine. llvm-svn: 193630
* Debug Info: clean up testing case.Manman Ren2013-10-291-2/+4
| | | | | | | | Add a tag before the name attribute for readability. Use CHECK-NEXT instead of CHECK-NOT followed by a CHECK. Add new lines to separate checking of different DIEs. llvm-svn: 193629
* Fixing TestAnonymous to build dwarf where it says it will.Andrew Kaylor2013-10-291-1/+1
| | | | llvm-svn: 193628
* Add a helper getSymbol to AsmPrinter.Rafael Espindola2013-10-2926-84/+88
| | | | llvm-svn: 193627
* add test cases for frameaddr and returnaddr for aarch64Weiming Zhao2013-10-292-0/+41
| | | | llvm-svn: 193626
* [AArch64] Implement FrameAddr and ReturnAddrWeiming Zhao2013-10-292-0/+43
| | | | | | Fixes PR17690 llvm-svn: 193625
* [ARM] Make sure HasCRC is initialized to false in Subtarget.Amara Emerson2013-10-291-0/+1
| | | | llvm-svn: 193624
* Support for microMIPS jump instructionsZoran Jovanovic2013-10-2918-21/+253
| | | | llvm-svn: 193623
* R600: Add Sea Islands GPUsTom Stellard2013-10-292-1/+12
| | | | llvm-svn: 193622
* R600/SI: Add compute support for CI v2Tom Stellard2013-10-297-16/+35
| | | | | | | | v2: - Fix LDS size calculation Reviewed-by: Michel Dänzer <michel.daenzer@amd.com> llvm-svn: 193621
* R600: Expand vector FSQRT opsTom Stellard2013-10-292-0/+55
| | | | llvm-svn: 193620
* DWARF parser: propery handle DW_FORM_ref_sig8 and fix Windows build.Alexey Samsonov2013-10-292-43/+42
| | | | | | Based on D2050 by Timur Iskhodzhanov. llvm-svn: 193619
* The asm printer has a mangler. Use it.Rafael Espindola2013-10-293-7/+4
| | | | llvm-svn: 193618
* The AsmPrinter has a Mangler. Use it.Rafael Espindola2013-10-293-8/+6
| | | | llvm-svn: 193617
* The asm printer has a mangler. Don't keep a second pointer to it.Rafael Espindola2013-10-291-10/+11
| | | | llvm-svn: 193616
* [asan] increase the max malloc size from 8Gb to 64GbKostya Serebryany2013-10-291-1/+1
| | | | llvm-svn: 193615
* clang-format: Option to control spacing in template argument lists.Daniel Jasper2013-10-294-3/+39
| | | | | | | | | | | Same as SpacesInParentheses, this option allows adding a space inside the '<' and '>' of a template parameter list. Patch by Christopher Olsen. This fixes llvm.org/PR17301. llvm-svn: 193614
* Resubmit "Refactor DynTypedMatcher into a value type class, just like ↵Samuel Benzaquen2013-10-2911-321/+305
| | | | | | | | | | | | | | Matcher<T>." Summary: This resubmits r193100, plus a fix for a breakage with MSVC. Reviewers: klimek, rnk CC: cfe-commits, revane Differential Revision: http://llvm-reviews.chandlerc.com/D2005 llvm-svn: 193613
* Support names like llvm-ar-3.4 and llvm-ranlib-3.4.Rafael Espindola2013-10-291-2/+2
| | | | | | | | | They are used in some packages. For example: http://packages.ubuntu.com/saucy/i386/llvm-3.4/filelist This fixes pr17721. llvm-svn: 193612
* Test cleanup for v8 instructionsBernard Ogden2013-10-293-7/+38
| | | | | | | Add some missing tests, factor out a test not specific to v8 into its own file. llvm-svn: 193611
* Fix an assertion when handling a custom case of virtual inheritance; also ↵Timur Iskhodzhanov2013-10-292-33/+27
| | | | | | reduce code duplication llvm-svn: 193610
* Clarify that GlobalVariables definitions must have an initializer.Rafael Espindola2013-10-292-6/+14
| | | | llvm-svn: 193609
* Add a missing lit-test expectation (forgotten to write initially?)Timur Iskhodzhanov2013-10-291-0/+1
| | | | llvm-svn: 193608
* Use LLVMLibsOptions intead of LDFLAGS when setting the libclang soname. This ↵Sylvestre Ledru2013-10-291-1/+1
| | | | | | allows 'make LDFLAGS=foo' to be set correctly (and matches the way it is done with libllvm and liblldb) llvm-svn: 193607
* ARM: fix AST for __builtin_arm_strex callTim Northover2013-10-292-1/+12
| | | | | | | | | | | The AST was constructed so that this builtin returned the default BoolTy and since I'd opted for custom SemaChecking, I should have set it properly at that point. This caused an assertion failure when the types didn't match up with what we generated. This makes it return an IntTy, which is as good as anything. llvm-svn: 193606
OpenPOWER on IntegriCloud