- May 08, 2009
-
-
Daniel Dunbar authored
- This eliminates 5/1000 failures on return-types-32, on the current ABITest config. llvm-svn: 71250
-
Fariborz Jahanian authored
use of dot-syntax expression. This is to match gcc's. llvm-svn: 71243
-
Chris Lattner authored
of the underlying _N builtin, not the the type of the pointee of the actual type. This ensures that atomics involving pointers end up using the correct integer type when they are resolved, avoiding aborts in codegen. llvm-svn: 71218
-
Ted Kremenek authored
llvm-svn: 71216
-
Zhongxing Xu authored
incomplete, do not compute its size and return the original region. llvm-svn: 71213
-
Chris Lattner authored
semantic rules that gcc and icc use. This implements the variadic and concrete versions as builtins and has sema do the disambiguation. There are probably a bunch of details to finish up but this seems like a large monotonic step forward :) llvm-svn: 71212
-
Zhongxing Xu authored
llvm-svn: 71206
-
rdar://problem/6845148Ted Kremenek authored
implicitly be changed to unsigned values in GRSimpleVals.cpp. This can happen when the comparison involves logic in specialized transfer functions (e.g., OSAtomicCompareAndSwap). llvm-svn: 71200
-
Eli Friedman authored
llvm-svn: 71194
-
Mike Stump authored
block pointer. Radar 6441502 llvm-svn: 71190
-
- May 07, 2009
-
-
Daniel Dunbar authored
llvm-svn: 71184
-
Mike Stump authored
llvm-svn: 71183
-
Ted Kremenek authored
- Rename 'ns_returns_owned' -> 'ns_returns_retained'. - Rename 'cf_returns_owned' -> 'cf_returns_retained'. llvm-svn: 71182
-
Fariborz Jahanian authored
refers to the underlying class. This is radar 6859726. Steve, please read the radar for my rational. llvm-svn: 71181
-
-
Mike Stump authored
llvm-svn: 71171
-
Douglas Gregor authored
development. Still much more to write! llvm-svn: 71167
-
Douglas Gregor authored
llvm-svn: 71162
-
Douglas Gregor authored
llvm-svn: 71161
-
Douglas Gregor authored
specialization type for a dependent template name. llvm-svn: 71153
-
Douglas Gregor authored
improves type identity with dependent types. llvm-svn: 71152
-
Chris Lattner authored
llvm-svn: 71146
-
Mike Stump authored
llvm-svn: 71145
-
- May 06, 2009
-
-
Daniel Dunbar authored
- x86 target feature handling should not be feature complete, even if the code quality is lacking. llvm-svn: 71123
-
Daniel Dunbar authored
look at COLUMNS. llvm-svn: 71120
-
Daniel Dunbar authored
- Apologies for the extremely gross code duplication, I want to get this working and then decide how to get this information out of the back end. - This replaces -m[no-]sse4[12] by -m[no-]sse4, it appears gcc doesn't distinguish them? - -msse, etc. now properly disable/enable related features. - Don't always define __SSE3__... - The main missing functionality bit here is that we don't initialize the features based on the CPU for all -march options. llvm-svn: 71117
-
Ted Kremenek authored
- Update the old StoreManager::CastRegion to strip off 'ElementRegions' when casting to void* (Zhongxing: please validate) - Pass-by-reference argument invalidation logic in CFRefCount.cpp: - Strip ElementRegions when the ElementRegion is just a 'raw data' view on top of the underlying typed region. llvm-svn: 71094
-
Zhongxing Xu authored
- add a static function getTypeWidth(), which computes the width of a type with the help of TargetInfo. - no-outofbounds.c now passes for region store. llvm-svn: 71080
-
Zhongxing Xu authored
llvm-svn: 71074
-
Chris Lattner authored
llvm-svn: 71070
-
Daniel Dunbar authored
- Default to yonah on Darwin (to get SSE3). - Default to Pentium4 (32-bit) and x86-64 (64-bit) on non-Darwin. Welcome to the 21st century. llvm-svn: 71069
-
Anders Carlsson authored
llvm-svn: 71067
-
Daniel Dunbar authored
- This is a WIP... - This adds -march= handling to the driver, and fixes the defaulting of -mcpu on Darwin (which was using the wrong test). Instead of handling -m{sse, ...} in the driver, pass them to clang-cc as -target-feature [+-]name In clang-cc, communicate with the (clang) target to discover the legal features of a target, and the features which are enabled based on -mcpu. This is currently hardcoded just enough to not be a feature regression, we need to get this information from the backend's TableGen information somehow. This is used to construct the full list of features which are being used, which is in turn used to initialize the predefines. llvm-svn: 71061
-
Zhongxing Xu authored
RegionStore. This CastRegion() performs casts according to the kind of the region being cast instead of the type that is cast to. llvm-svn: 71058
-
Fariborz Jahanian authored
llvm-svn: 71041
-
rdar://6849429Chris Lattner authored
Fix rdar://6849429 - -Wunused-value with deeply nested macro expansion generates untraceable warnings The "instantiated from" messages coming from the caret diagnostics system are basically walking the macro expansion tree, emitting each level as it goes. However, it was skipping certain leaves in the tree by skipping up the entire instantiation arm every time it went up one spelling arm. This caused it to miss some things. For example, in this testcase: #define M1(x) x #define M2 1; void foo() { M1(M2) } we now print: /Users/sabre/Desktop/clang-unused-value-macro.c:6:2: warning: expression result unused M1(M2) ^~~~~~ /Users/sabre/Desktop/clang-unused-value-macro.c:6:5: note: instantiated from: M1(M2) ^~ /Users/sabre/Desktop/clang-unused-value-macro.c:3:12: note: instantiated from: #define M2 1; ^ Previously we didn't print the last line, so we never emitted the caret pointing to the 1! Incidentally, the spaces between the lines is really noisy, I think we should reconsider this heuristic (which adds them when the printed code starts too close to the start of the line). The regression test can't use -verify, because -verify doesn't catch notes for macro instantiation history. llvm-svn: 71025
-
- May 05, 2009
-
-
Chris Lattner authored
llvm-svn: 71024
-
Ted Kremenek authored
llvm-svn: 70990
-
Fariborz Jahanian authored
in a 'Class' receiver which is not a root instance method. llvm-svn: 70987
-
Ted Kremenek authored
llvm-svn: 70984
-