- Jun 23, 2012
-
-
Nuno Lopes authored
llvm-svn: 159055
-
Richard Smith authored
llvm-svn: 159054
-
Jim Grosbach authored
As an example of how the custom DiagnosticType can be used to provide better operand-mismatch diagnostics, add a custom diagnostic for the imm0_15 operand class used for several system instructions. Update the tests to expect the improved diagnostic. rdar://8987109 llvm-svn: 159051
-
Jim Grosbach authored
"Invalid operand" may be a completely correct diagnostic, but it's often insufficiently specific to really help identify and fix the problem in assembly source. Allow a target to specify a more-specific diagnostic kind for each AsmOperandClass derived definition and use that to provide more detailed diagnostics when an operant of that class resulted in a match failure. rdar://8987109 llvm-svn: 159050
-
Ted Kremenek authored
llvm-svn: 159047
-
Kaelyn Uhrain authored
llvm-svn: 159046
-
Hal Finkel authored
The isel (integer select) instruction is supported on the 440 and A2 embedded cores and on the POWER7. llvm-svn: 159045
-
Chad Rosier authored
llvm-svn: 159044
-
Anna Zaks authored
relinquish memory. llvm-svn: 159043
-
Lang Hames authored
llvm-svn: 159042
-
Jakob Stoklund Olesen authored
The ProcessImplicitDefs class can be local to its implementation file. llvm-svn: 159041
-
Anna Zaks authored
(Committed in r159038 by mistake.) llvm-svn: 159040
-
Jakob Stoklund Olesen authored
llvm-svn: 159039
-
Anna Zaks authored
This would be useful to investigate performance issues. llvm-svn: 159038
-
Anna Zaks authored
llvm-svn: 159037
-
Anna Zaks authored
llvm-svn: 159036
-
Chad Rosier authored
llvm-svn: 159035
-
- Jun 22, 2012
-
-
Chandler Carruth authored
include of int_lib.h. The purpose of this change is to make the C code conform to the pedantic rules of C99 -- an empty translation unit is not valid. It should have absolutely no functional impact, and changes nothing about the built libraries. llvm-svn: 159034
-
Chandler Carruth authored
number of -pedantic warnings. llvm-svn: 159033
-
Chandler Carruth authored
llvm-svn: 159032
-
Jim Ingham authored
The StepOverBreakpoint plan should only explain eStopReasonTrace. It didn't cause any other exceptional stop reason. llvm-svn: 159031
-
Jakob Stoklund Olesen authored
llvm-svn: 159030
-
Jakob Stoklund Olesen authored
It is both smaller and faster than DenseMap. llvm-svn: 159029
-
Evan Cheng authored
llvm-svn: 159028
-
Hal Finkel authored
Original commit message: Allow up to 64 functional units per processor itinerary. This patch changes the type used to hold the FU bitset from unsigned to uint64_t. This will be needed for some upcoming PowerPC itineraries. llvm-svn: 159027
-
Dmitri Gribenko authored
llvm-svn: 159026
-
Chandler Carruth authored
there. I didn't notice this because I had a stub that wasn't checked in floating around in my client. llvm-svn: 159025
-
Evan Cheng authored
EmitZerofill should take a 64-bit size or else it's chopping off large zero-filled global. rdar://11729134 llvm-svn: 159023
-
Jakob Stoklund Olesen authored
Don't try to print out the live range of a physreg. llvm-svn: 159021
-
Jakob Stoklund Olesen authored
DBG_VALUE instructions could be referring to non-existing virtual registers. llvm-svn: 159020
-
Jakob Stoklund Olesen authored
There is no need to check for physreg live ranges. They don't exist any more. llvm-svn: 159019
-
Jakob Stoklund Olesen authored
Everyone is using on-demand regunit ranges now. llvm-svn: 159018
-
Marshall Clow authored
llvm-svn: 159017
-
Nuno Lopes authored
revert CodeGen support for the alloc_size attribute until we finish the design of a more generic metadata node llvm-svn: 159016
-
Jakob Stoklund Olesen authored
These functions only operate on virtual registers now, and they all have live ranges. llvm-svn: 159015
-
Marshall Clow authored
llvm-svn: 159014
-
Jakob Stoklund Olesen authored
Don't depend on LiveIntervals::hasInterval() to determine if a physreg is reserved and constant. llvm-svn: 159013
-
Rafael Espindola authored
llvm-svn: 159012
-
Kaelyn Uhrain authored
llvm-svn: 159011
-
Jordan Rose authored
We don't handle exceptions yet, so we treat them as sinks. ExprEngine hardcodes messages that are known to raise Objective-C exceptions like -raise, but it was only checking for +raise:format: and +raise:format:arguments: on NSException itself, not subclasses. <rdar://problem/11724201> llvm-svn: 159010
-