summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* MachineInstr::eraseFromParent fix for removing bundled instrs.Andrew Trick2012-06-051-1/+2
| | | | | | Patch by Ivan Llopard. llvm-svn: 158025
* <rdar://problem/11597333>Greg Clayton2012-06-051-0/+4
| | | | | | | | Fixed an issue where LLDB would use armv7-apple-unknown even though armv7-unknown-unknown was specified with the target create command: (lldb) target create -a armv7-unknown-unknown <executable> llvm-svn: 158023
* objective-c: merge deprecated/unavailable attributes toFariborz Jahanian2012-06-053-14/+16
| | | | | | | the overriding deprecated/unavailable method. // rdar://11475360 llvm-svn: 158022
* misched: API for minimum vs. expected latency.Andrew Trick2012-06-0511-140/+277
| | | | | | | Minimum latency determines per-cycle scheduling groups. Expected latency determines critical path and cost. llvm-svn: 158021
* Add 3.0 and 3.1 tags to the getting started guide.Benjamin Kramer2012-06-051-0/+2
| | | | llvm-svn: 158020
* Fixes the refactoring library test in VS2010.Manuel Klimek2012-06-051-0/+1
| | | | llvm-svn: 158019
* Fix a bug with va_arg and vectors on Darwin x86-32. <rdar://problem/11592208>.Eli Friedman2012-06-052-2/+20
| | | | llvm-svn: 158017
* rdar://problem/11597911Johnny Chen2012-06-055-4/+23
| | | | | | | | Fix confusing error message about "expression did not evaluate to an address" when doing 'watchpoint set expression". Instead of using 0 as the fail_value when invoking ValueObject::GetValueAsUnsigned(), modify the API to take an addition bool pointer (defaults to NULL) to indicate success/failure of value conversion. llvm-svn: 158016
* CLooG: Do not take into account the contextTobias Grosser2012-06-051-1/+16
| | | | | | | | | | | | | | | | | | CLooG and the CLooG based code generation does not yet correctly derive the types of the expressions, but just uses i64 for everything. This is incorrect, but works normally pretty well. However, the recent change of adding parameter bounds to the context made CLooG generate expressions that contain a lot of very large integers that possibly don't fit into an i64. This broke the code generation for several benchmarks. To get the CLooG based code generation working again, we just don't take into account any constraints in the context. This brings us back to the theoretical incorrect, but in practice generally correct code. The next step will be the isl based code generation. Here we will derive automatically correct types. llvm-svn: 158015
* Add a new intrinsic: llvm.fmuladd. This intrinsic represents a multiply-addLang Hames2012-06-054-0/+84
| | | | | | | | | | | | expression (a * b + c) that can be implemented as a fused multiply-add (fma) if the target determines that this will be more efficient. This intrinsic will be used to implement FP_CONTRACT support and an aggressive FMA formation mode. If your target has a fast FMA instruction you should override the isFMAFasterThanMulAndAdd method in TargetLowering to return true. llvm-svn: 158014
* Fix header file include order in NVPTX backend NV_CONTRIBYuan Lin2012-06-051-2/+2
| | | | llvm-svn: 158013
* Reapply "Only emit debug information for methods that are user defined, there's"Eric Christopher2012-06-054-13/+29
| | | | | | | | As the failing testcase has been fixed. This reverts commit 0637f407e6ee7fdccde17fbf9a5fcc4853187b3e. llvm-svn: 158009
* Fix this for buggy gdb behavior alongside the changeEric Christopher2012-06-051-2/+4
| | | | | | | to clang that omits debug information for non-user-defined methods. llvm-svn: 158008
* LoopUnroll: always check for NULL LoopPassManagerAndrew Trick2012-06-051-3/+5
| | | | llvm-svn: 158007
* Remove dead function.Jakob Stoklund Olesen2012-06-051-6/+0
| | | | llvm-svn: 158005
* PPC32 uses R2 as the TLS register. Fix the copy and paste.Roman Divacky2012-06-051-3/+3
| | | | llvm-svn: 158004
* RecursiveASTVisitor: add ability to visit implicit declarations. Patch byRichard Smith2012-06-052-5/+37
| | | | | | James Dennett! llvm-svn: 158002
* [Sanitizer] rename sanitizer_defs.h to sanitizer_internal_defs.hAlexey Samsonov2012-06-0510-10/+10
| | | | llvm-svn: 158001
* [Sanitizer] fix compilation on Mac OS 10.6 - don't use O_CLOEXECAlexey Samsonov2012-06-051-1/+1
| | | | llvm-svn: 158000
* [Sanitizer] remove using namespace __sanitizer linesAlexey Samsonov2012-06-0517-31/+0
| | | | llvm-svn: 157999
* [Sanitizer] Use common defines for ASan and TSan runtime. Split defines ↵Alexey Samsonov2012-06-0513-127/+134
| | | | | | between interface defines (can be visible in user code that includes interface ASan/TSan headers) and internal defines. llvm-svn: 157998
* [asan] change the order of tests in the asan_test binary. Makes the test ↵Kostya Serebryany2012-06-051-2/+2
| | | | | | runs 2x faster due to DEATH_TEST overhead (see asan issue 77) llvm-svn: 157997
* Mips: Define __mips_hard_float macro additional to __mips_single_floatSimon Atanasyan2012-06-052-6/+8
| | | | | | when single float ABI is selected. llvm-svn: 157996
* [TSan] Use internal_munmap from sanitizer_libc in TSan runtime.Alexey Samsonov2012-06-051-6/+1
| | | | llvm-svn: 157995
* [Sanitizer] add sanitizer_posix.cc. Move more various functions into ↵Alexey Samsonov2012-06-0512-29/+73
| | | | | | sanitizer_libc: sscanf, munmap, memchr llvm-svn: 157994
* [ASan] s/size_t/uptr in asan_mac.ccAlexey Samsonov2012-06-051-13/+13
| | | | llvm-svn: 157993
* [TSan] make TSan runtime use internal_{close,read,write} from sanitizer_libcAlexey Samsonov2012-06-054-19/+6
| | | | llvm-svn: 157992
* [ASan] use internal_{close,read,write} in ASan runtime.Alexey Samsonov2012-06-057-58/+9
| | | | llvm-svn: 157991
* [Sanitizer] add internal_{close,read,write} functions to sanitizer_libcAlexey Samsonov2012-06-054-0/+53
| | | | llvm-svn: 157990
* IntegersSubsetMapping: added exclude operation, that allows to exclude ↵Stepan Dyatkovskiy2012-06-052-0/+233
| | | | | | subset of integers from current mapping. llvm-svn: 157989
* [TSan] use __sanitizer::internal_open in TSan run-timeAlexey Samsonov2012-06-056-9/+8
| | | | llvm-svn: 157988
* IntegersSubsetMapping:Stepan Dyatkovskiy2012-06-053-12/+16
| | | | | | | Changed type of Items collection: from std::vector to std::list. Also some small fixes made in IntegersSubset.h, IntegersSubsetMapping.h and IntegersSubsetTest.cpp. llvm-svn: 157987
* [ASan] use internal_open from sanitizer_libc in ASan runtimeAlexey Samsonov2012-06-055-14/+2
| | | | llvm-svn: 157986
* [Sanitizer] Add sanitizer_win.cc for windows-specific implementations of ↵Alexey Samsonov2012-06-054-2/+57
| | | | | | libc functions. Add internal_open. llvm-svn: 157985
* [TSan] use __sanitizer::internal_mmap in TSan run-timeAlexey Samsonov2012-06-051-13/+6
| | | | llvm-svn: 157984
* Revert "Only emit debug information for methods that are user defined, there's"John McCall2012-06-054-29/+13
| | | | | | | This reverts r157970, which was not passing on clang-x86_64-darwin10-nobootstrap-RA llvm-svn: 157983
* [ASan] Fix a typo in Makefile.oldAlexey Samsonov2012-06-051-6/+6
| | | | llvm-svn: 157982
* X86 itinerary properties.Andrew Trick2012-06-052-2/+29
| | | | llvm-svn: 157981
* ARM itinerary properties.Andrew Trick2012-06-053-22/+10
| | | | llvm-svn: 157980
* misched: Added MultiIssueItineraries.Andrew Trick2012-06-0512-31/+141
| | | | | | | | This allows a subtarget to explicitly specify the issue width and other properties without providing pipeline stage details for every instruction. llvm-svn: 157979
* sdsched: Use the right heuristics when -mcpu is not provided and we have no ↵Andrew Trick2012-06-051-13/+12
| | | | | | | | itinerary. Use ILP heuristics for long latency instrs if no scoreboard exists. llvm-svn: 157978
* misched: Allow disabling scoreboard hazard checking for subtargets with aAndrew Trick2012-06-052-6/+14
| | | | | | | | valid itinerary but no pipeline stages. An itinerary can contain useful scheduling information without specifying pipeline stages for each instruction. llvm-svn: 157977
* whitespaceAndrew Trick2012-06-053-9/+7
| | | | llvm-svn: 157976
* misched: comments from code review.Andrew Trick2012-06-051-3/+3
| | | | llvm-svn: 157975
* Remove the last remat-related code from LiveIntervalAnalysis.Jakob Stoklund Olesen2012-06-052-115/+0
| | | | | | Rematerialization is handled by LiveRangeEdit now. llvm-svn: 157974
* Stop using LiveIntervals::isReMaterializable().Jakob Stoklund Olesen2012-06-052-9/+28
| | | | | | | | | | It is an old function that does a lot more than required by CalcSpillWeights, which was the only remaining caller. The isRematerializable() function never actually sets the isLoad argument, so don't try to compute that. llvm-svn: 157973
* Revert commit r157966Joel Jones2012-06-052-43/+0
| | | | llvm-svn: 157972
* Make sure the module_uuid_ptr is non-NULL before checking whether its ↵Jim Ingham2012-06-051-2/+2
| | | | | | contents match the module's UUID. llvm-svn: 157971
* Only emit debug information for methods that are user defined, there'sEric Christopher2012-06-054-13/+29
| | | | | | | | | not much reason to emit for constructors and destructors that aren't user defined. rdar://11593099 llvm-svn: 157970
* Funnel the old API call SBValue::Watch (bool resolve_location, bool read, ↵Johnny Chen2012-06-051-59/+2
| | | | | | bool write) to the one which takes an SBError. llvm-svn: 157969
OpenPOWER on IntegriCloud