- Dec 08, 2011
-
-
Howard Hinnant authored
llvm-svn: 146172
-
Owen Anderson authored
Teach SelectionDAG to match more calls to libm functions onto existing SDNodes. Mark these nodes as illegal by default, unless the target declares otherwise. llvm-svn: 146171
-
Jim Grosbach authored
rdar://10550084 llvm-svn: 146170
-
Lang Hames authored
llvm-svn: 146169
-
Evan Cheng authored
clients to decide whether to look inside bundled instructions and whether the query should return true if any / all bundled instructions have the queried property. llvm-svn: 146168
-
Evan Cheng authored
llvm-svn: 146167
-
Kostya Serebryany authored
llvm-svn: 146166
-
Douglas Gregor authored
umbrella headers in the sense that all of the headers within that directory (and eventually its subdirectories) are considered to be part of the module with that umbrella directory. However, unlike umbrella headers, which are expected to include all of the headers within their subdirectories, Clang will automatically include all of the headers it finds in the named subdirectory. The intent here is to allow a module map to trivially turn a subdirectory into a module, where the module's structure can mimic the directory structure. llvm-svn: 146165
-
Sean Callanan authored
pointer to make the result of an expression. LLDB now dumps the ivars of the Objective-C object and all of its parents. This just required fixing a bug where we didn't distinguish between Objective-C object pointers and regular C-style pointers. Also added a testcase to verify that this continues to work. llvm-svn: 146164
-
Evan Cheng authored
Many of the SSE patterns should not be selected when AVX is available. This led to the following code in X86Subtarget.cpp if (HasAVX) X86SSELevel = NoMMXSSE; This is so patterns that are predicated on hasSSE3, etc. would not be selected when avx is available. Instead, the AVX variant is selected. However, this breaks instructions which do not have AVX variants. The right way to fix this is for the SSE but not-AVX patterns to predicate on something like hasSSE3() && !hasAVX(). Then we can take out the hack in X86Subtarget.cpp. Patterns which do not have AVX variants do not need to change. However, we need to audit all the patterns before we make the change. This patch is workaround that fixes one specific case, the prefetch instructions. rdar://10538297 llvm-svn: 146163
-
Kostya Serebryany authored
[asan] update the soon-to-be-depricated asan makefile to use the new path for asan-rt (affects only linux) llvm-svn: 146162
-
Kostya Serebryany authored
[asan] move build-time config options from makefile to source (otherwise we need config options in all makefiles) llvm-svn: 146161
-
Fariborz Jahanian authored
llvm-svn: 146160
-
Douglas Gregor authored
a modifier for a header declarartion, e.g., umbrella header "headername" Collapse the umbrella-handling code in the parser into the header-handling code, so we don't duplicate the header-search logic. llvm-svn: 146159
-
Douglas Gregor authored
header to also support umbrella directories. The umbrella directory for an umbrella header is the directory in which the umbrella header resides. No functionality change yet, but it's coming. llvm-svn: 146158
-
Daniel Dunbar authored
sqrt/exp (fix for FSQRT, FSIN, FCOS, FPOWI, FPOW, FLOG, FLOG2, FLOG10, FEXP, FEXP2).", it is failing tests. llvm-svn: 146157
-
Douglas Gregor authored
that's currently being built. This is important for supporting transitive dependencies ("export *" in the module map) completely. llvm-svn: 146156
-
David Blaikie authored
llvm-svn: 146155
-
Douglas Gregor authored
directory_iterator for them. llvm-svn: 146154
-
Hans Wennborg authored
they are treated as errors. Doing typo correction when these are just warnings slows down the compilation of source which deliberately uses implicit function declarations. llvm-svn: 146153
-
NAKAMURA Takumi authored
llvm-svn: 146152
-
Jan Sjödin authored
llvm-svn: 146151
-
Nadav Rotem authored
We must not issue a bitcast operation for integer-promotion of vector types, because the location of the values in the vector may be different. llvm-svn: 146150
-
Tobias Grosser authored
llvm-svn: 146149
-
Peter Collingbourne authored
llvm-svn: 146148
-
Erik Verbruggen authored
llvm-svn: 146147
-
Francois Pichet authored
llvm-svn: 146146
-
Francois Pichet authored
llvm-svn: 146145
-
Peter Collingbourne authored
between the casted type of the return value of a malloc/calloc/realloc call and the operand of any sizeof expressions contained within its argument(s). llvm-svn: 146144
-
Stepan Dyatkovskiy authored
Fix bug 9905: Failure in code selection for llvm intrinsics sqrt/exp (fix for FSQRT, FSIN, FCOS, FPOWI, FPOW, FLOG, FLOG2, FLOG10, FEXP, FEXP2). llvm-svn: 146143
-
Hal Finkel authored
llvm-svn: 146142
-
Greg Clayton authored
that is in a class from the expression parser, and it was causing an assertion. There is now a function that will correctly resolve a type even if it is in a class. llvm-svn: 146141
-
Rafael Espindola authored
that have it in /usr/include (only OS X Lion so far). llvm-svn: 146140
-
David Blaikie authored
llvm-svn: 146138
-
Hal Finkel authored
MTCTR needs to be glued to BCTR so that CTR is not marked dead in MTCTR (another find by -verify-machineinstrs) llvm-svn: 146137
-
Pete Cooper authored
llvm-svn: 146136
-
rdar://problem/10544202Greg Clayton authored
Fixed detection of AVX on darwin now that our kernel supports it. llvm-svn: 146135
-
Jim Ingham authored
<rdar://problem/10535460> lldb expression evaluation doesn't handle bit fields in ObjC classes properly llvm-svn: 146134
-
Sean Callanan authored
variables that might not have valid names. llvm-svn: 146133
-
Daniel Dunbar authored
stub SDK. - This allows us to build both the m32 and m64 variants without worrying about whether or not the user has the headers for the alternate arch installed. llvm-svn: 146132
-