- Apr 07, 2010
-
-
Benjamin Kramer authored
llvm-svn: 100615
-
John McCall authored
to the intrinsic, even when math-errno is off. Fixes rdar://problem/7828230 by falling back on the library function. llvm-svn: 100613
-
Sanjiv Gupta authored
llvm-svn: 100612
-
Mon P Wang authored
llvm-svn: 100611
-
Evan Cheng authored
llvm-svn: 100610
-
Evan Cheng authored
llvm-svn: 100609
-
Chris Lattner authored
have the code generate slap a srcloc metadata on inline asm nodes. This allows us to diagnose invalid inline asms with such nice diagnostics as: <inline asm>:1:2: error: unrecognized instruction abc incl %eax ^ asm.c:2:12: note: generated from here __asm__ ("abc incl %0" : "+r" (X)); ^ 2 diagnostics generated. llvm-svn: 100608
-
Chris Lattner authored
Have the asmprinter use the mdnode to scavenge a source location if present. Document this nonsense in langref. llvm-svn: 100607
-
Chris Lattner authored
llvm-svn: 100606
-
Chris Lattner authored
1. Introduce some enums and accessors in the InlineAsm class that eliminate a ton of magic numbers when handling inline asm SDNode. 2. Add a new MDNodeSDNode selection dag node type that holds a MDNode (shocking!) 3. Add a new argument to ISD::INLINEASM nodes that hold !srcloc metadata, propagating it to the instruction emitter, which drops it. No functionality change. llvm-svn: 100605
-
Zhongxing Xu authored
llvm-svn: 100604
-
Ted Kremenek authored
llvm-svn: 100603
-
Chris Lattner authored
We would return the error without inserting the new instruction into the program, so it wouldn't get deallocated, and an abort would trigger when the module was deleted. llvm-svn: 100602
-
Sanjiv Gupta authored
llvm-svn: 100601
-
Jeffrey Yasskin authored
llvm-svn: 100600
-
John McCall authored
llvm-svn: 100599
-
Dale Johannesen authored
into AsmPrinter. Target-dependent form is still generated by FastISel and still handled in X86 code. llvm-svn: 100596
-
John McCall authored
Fixes a spurious warning in LLVM. llvm-svn: 100595
-
Ted Kremenek authored
llvm-svn: 100594
-
John McCall authored
have a temporary object in C++. Also fix a tag mismatch that Doug noticed. llvm-svn: 100593
-
Evan Cheng authored
llvm-svn: 100592
-
-
Fariborz Jahanian authored
a stand-alone type declaration. llvm-svn: 100588
-
Douglas Gregor authored
definitions, e.g., after - or - (id) we'll find all of the "likely" instance methods that one would want to declare or define at this point. In the latter case, we only produce results whose return types match "id". llvm-svn: 100587
-
Devang Patel authored
Do not emit specification DIE with DW_AT_specification attribute for member functions of a funcation local class. This trips gdb's partial scan of DIEs at load time. Fixes Radar 7833483. llvm-svn: 100586
-
Jakob Stoklund Olesen authored
This test only cares about alignment, so don't test for other cruft. An upcoming llvm-gcc patch needs this. llvm-svn: 100584
-
Fariborz Jahanian authored
llvm-svn: 100583
-
Fariborz Jahanian authored
Fixes radar 7823675. llvm-svn: 100582
-
John McCall authored
solution. The only reason these don't fire with gcc-4.2 is that gcc turns off part of -Wsign-compare in C++ on accident. llvm-svn: 100581
-
Dale Johannesen authored
llvm-svn: 100578
-
Fariborz Jahanian authored
declared in categories. llvm-svn: 100577
-
John McCall authored
(void*) someFunction(5, 10, 15, 20); where the cast is presumably meant to be to 'void'. llvm-svn: 100574
-
Dale Johannesen authored
There is probably a more elegant way to do this. llvm-svn: 100573
-
Ted Kremenek authored
them the same way as fields. This fixes a regression in RegionStore::RemoveDeadbindings() that emerged from going to the cluster-based analysis. llvm-svn: 100570
-
Bob Wilson authored
Radar 7770501. llvm-svn: 100568
-
- Apr 06, 2010
-
-
Dale Johannesen authored
to a SDNode that didn't have code generated for it. llvm-svn: 100566
-
Stuart Hastings authored
llvm-svn: 100563
-
John McCall authored
that protected members be used on objects of types which derive from the naming class of the lookup. My first N attempts at this were poorly-founded, largely because the standard is very badly worded here. llvm-svn: 100562
-
Jim Grosbach authored
When a frame pointer is not otherwise required, and dynamic stack alignment is necessary solely due to the spilling of a register with larger alignment requirements than the default stack alignment, the frame pointer can be both used as a general purpose register and a frame pointer. That goes poorly, for obvious reasons. This patch brings back a bit of old logic for identifying the use of such registers and conservatively reserves the frame pointer during register allocation in such cases. For now, implement for X86 only since it's 32-bit linux which is hitting this, and we want a targeted fix for 2.7. As a follow-on, this will be expanded to handle other targets, as theoretically the problem could arise elsewhere as well. llvm-svn: 100559
-
Douglas Gregor authored
while we're completing in the middle of a function call), also produce "ordinary" name results that show what can be typed at that point. llvm-svn: 100558
-