- May 01, 2009
-
-
Anders Carlsson authored
llvm-svn: 70523
-
Argyrios Kyrtzidis authored
llvm-svn: 70522
-
Stefanus Du Toit authored
Add a comment to refer to the section of the programmer's manual that explains what the pointer tagging in Use is for. llvm-svn: 70521
-
Argyrios Kyrtzidis authored
-Replace DebugLocTuple's Source ID with CompileUnit's GlobalVariable* -Remove DwarfWriter::getOrCreateSourceID -Make necessary changes for the above (fix callsites, etc.) llvm-svn: 70520
-
-
Fariborz Jahanian authored
llvm-svn: 70518
-
Argyrios Kyrtzidis authored
Don't include memory allocated for global variables during relocations resolution. llvm-svn: 70517
-
Anders Carlsson authored
llvm-svn: 70516
-
Jeffrey Yasskin authored
comment a bit. llvm-svn: 70515
-
- Apr 30, 2009
-
-
Fariborz Jahanian authored
llvm-svn: 70514
-
Jakob Stoklund Olesen authored
llvm-svn: 70513
-
Jakob Stoklund Olesen authored
classes. This is implemented as a function rather than a method on TargetRegisterClass because it is symmetric in its arguments. llvm-svn: 70512
-
Jakob Stoklund Olesen authored
A subclass is allowed to have a larger spill size than the superclass, and the spill alignment must be a multiple of the superclass alignment. This causes the following new subclass relations: === Alpha === F4RC -> F8RC === PPC === F4RC -> F8RC === SPU === R8C -> R16C -> R32C/R32FP -> R64C/R64FP -> GPRC/VECREG === X86 === FR32 -> FR64 -> VR128 RFP32 -> RFP64 -> RFP80 These subclass relations are consistent with the behaviour of -join-cross-class-copies. llvm-svn: 70511
-
Dan Gohman authored
llvm-svn: 70510
-
Dan Gohman authored
compute an upper-bound value for the trip count, in addition to the actual trip count. Use this to allow getZeroExtendExpr and getSignExtendExpr to fold casts in more cases. This may eventually morph into a more general value-range analysis capability; there are certainly plenty of places where more complete value-range information would allow more folding. llvm-svn: 70509
-
Ted Kremenek authored
'objc_ownership_release' to the effects on receivers. llvm-svn: 70507
-
Sebastian Redl authored
llvm-svn: 70506
-
Ted Kremenek authored
applied to ObjCMethodDecls, not just parameters. This allows one to specific side-effects on the receiver of a message expression. No checker support yet. llvm-svn: 70505
-
Ted Kremenek authored
appear between the return type and the selector. This is a separate code path from regular attribute processing, as we only want to (a) accept only a specific set of attributes in this place and (b) want to distinguish to clients the context in which an attribute was added to an ObjCMethodDecl. Currently, the attribute 'objc_ownership_returns' is the only attribute that uses this new feature. Shortly I will add a warning for 'objc_ownership_returns' to be placed at the end of a method declaration. llvm-svn: 70504
-
Evan Cheng authored
Add a smarter heuristic to determine when to coalesce a virtual register with a physical one. More specifically, it avoid tying a virtual register in the loop with a physical register defined / used outside the loop. When it determines it's not profitable, it will use the physical register as the allocation preference instead. This is *not* turned on by default. Testing indicates this is just as likely to pessimize code. The main issue seems to be allocation preference doesn't work effectively. That will change once I've taught register allocator "swapping". llvm-svn: 70503
-
Bob Wilson authored
so that it doesn't shadow the instance variable of the same name. Make the parameter names in method declarations match the definitions. llvm-svn: 70502
-
Ted Kremenek authored
the return type and selector. Haven't hooked this up to Sema yet. llvm-svn: 70501
-
Steve Naroff authored
llvm-svn: 70500
-
Bob Wilson authored
llvm-svn: 70499
-
Bob Wilson authored
of "class", so that it matches the subsequent definition. llvm-svn: 70498
-
Douglas Gregor authored
"aligned" attribute. Previously, we were skipping over these attributes when we jumped directly to the canonical type. Now, ASTContext::getTypeInfo walks through typedefs and other "non-canonical" types manually, looking for "aligned" attributes on typedefs. As part of this change, I moved the GNU-specific logic (such as determining the alignment of void or of a function pointer) out of the expression evaluator and into ASTContext::getTypeInfo. llvm-svn: 70497
-
Torok Edwin authored
Make dataflow iteration possible on Value*, not only on User*: df_ext_iterator<Value*, SmallPtrSet<const Value*, 16> > llvm-svn: 70496
-
Dan Gohman authored
in getSCEVAtScope. llvm-svn: 70495
-
Fariborz Jahanian authored
to match gcc's closely. llvm-svn: 70493
-
Steve Naroff authored
This fixes <rdar://problem/6839489> 10A345: Clang does not warm about mismatched returns (void return from a bool function) Will implement -Wreturn-type, -Wno-return-type in another commit. llvm-svn: 70492
-
Nick Lewycky authored
llvm-svn: 70491
-
Nick Lewycky authored
run when assembling. Wire this up to the gold plugin. You can now pass --plugin-opt gcc=/foo/bar/gcc and it will run that gcc instead of looking for it on the path. llvm-svn: 70490
-
Ted Kremenek authored
llvm-svn: 70489
-
Jay Foad authored
class. llvm-svn: 70488
-
Eli Friedman authored
constant initializers. llvm-svn: 70483
-
Chris Lattner authored
to hook up if someone was interested. llvm-svn: 70482
-
Chris Lattner authored
llvm-svn: 70481
-
Chris Lattner authored
have support for __divti3 and friends. llvm-svn: 70480
-
Ted Kremenek authored
llvm-svn: 70475
-
Ted Kremenek authored
matching ObjCMethodDecl exists in the @interface. llvm-svn: 70474
-