- Nov 03, 2010
-
-
Duncan Sands authored
value type, so there is no point in passing it around using an EVT. Use the simpler MVT everywhere. Rather than trying to propagate this information maximally in all the code that using the calling convention stuff, I chose to do a mainly low impact change instead. llvm-svn: 118167
-
Eric Christopher authored
this by using an undef as a pointer. Fixes rdar://8625016 llvm-svn: 118164
-
Duncan Sands authored
llvm-svn: 118163
-
Evan Cheng authored
Fix preload instruction isel. Only v7 supports pli, and only v7 with mp extension supports pldw. Add subtarget attribute to denote mp extension support and legalize illegal ones to nothing. llvm-svn: 118160
-
-
Bill Wendling authored
llvm-svn: 118151
-
Eric Christopher authored
easier to read. llvm-svn: 118148
-
Bill Wendling authored
vldr.64 d1, [r0, #-32] The problem was with how the addressing mode 5 encodes the offsets. This change makes sure that the way offsets are handled in addressing mode 5 is consistent throughout the MC code. It involves re-refactoring the "getAddrModeImmOpValue" method into an "Imm12" and "addressing mode 5" version. But not to worry! The majority of the duplicated code has been unified. llvm-svn: 118144
-
Dan Gohman authored
encounters (and:i64 (shl:i64 (load:i64), 1), 0xffffffff). This fixes rdar://8606584. llvm-svn: 118143
-
Jim Grosbach authored
llvm-svn: 118141
-
Jim Grosbach authored
printOperand() asm printer helper functions. rdar://8425198 llvm-svn: 118140
-
Jim Grosbach authored
llvm-svn: 118139
-
Jim Grosbach authored
parts. Represent the operation mode as an optional operand instead. rdar://8614429 llvm-svn: 118137
-
Evan Cheng authored
1. Fix pre-ra scheduler so it doesn't try to push instructions above calls to "optimize for latency". Call instructions don't have the right latency and this is more likely to use introduce spills. 2. Fix if-converter cost function. For ARM, it should use instruction latencies, not # of micro-ops since multi-latency instructions is completely executed even when the predicate is false. Also, some instruction will be "slower" when they are predicated due to the register def becoming implicit input. rdar://8598427 llvm-svn: 118135
-
Evan Cheng authored
latencies) of loads. llvm-svn: 118134
-
Dan Gohman authored
llvm-svn: 118133
-
Chris Lattner authored
llvm-svn: 118131
-
Dan Gohman authored
llvm-svn: 118130
-
Dan Gohman authored
llvm-svn: 118128
-
Dan Gohman authored
llvm-svn: 118127
-
Eric Christopher authored
llvm-svn: 118126
-
Chris Lattner authored
instructions as isCodeGenOnly in the parent class instead of sprinkling it throughout the .td files. llvm-svn: 118125
-
Chris Lattner authored
llvm-svn: 118124
-
Chris Lattner authored
llvm-svn: 118122
-
Owen Anderson authored
llvm-svn: 118121
-
Chris Lattner authored
llvm-svn: 118120
-
Chris Lattner authored
ins/outs list that isn't specified by their asmstring. Previously the asmmatcher would just force a 0 register into it, which clearly isn't right. Mark a bunch of ARM instructions that use this as isCodeGenOnly. Some of them are clearly pseudo instructions (like t2TBB) others use a weird hasExtraSrcRegAllocReq thing that will either need to be removed or the asmmatcher will need to be taught about it (someday). llvm-svn: 118119
-
Jakob Stoklund Olesen authored
clang are using. llvm-svn: 118118
-
Jakob Stoklund Olesen authored
threshold given to createFunctionInliningPass(). Both opt -O3 and clang would silently ignore the -inline-threshold option. llvm-svn: 118117
-
Dan Gohman authored
limits on their own. llvm-svn: 118113
-
Chris Lattner authored
that have complicated tying going on. llvm-svn: 118112
-
Dan Gohman authored
llvm-svn: 118110
-
John Thompson authored
llvm-svn: 118107
-
- Nov 02, 2010
-
-
Dan Gohman authored
llvm-svn: 118106
-
Dan Gohman authored
llvm-svn: 118105
-
Chris Lattner authored
filling them in one at a time. Previously this iterated over the asmoperands, which left the problem of "holes". The new approach simplifies things. llvm-svn: 118104
-
Bill Wendling authored
llvm-svn: 118103
-
Dan Gohman authored
llvm-svn: 118102
-
Bill Wendling authored
llvm-svn: 118099
-
Bill Wendling authored
is handled with the MC encoder. llvm-svn: 118098
-