- Oct 30, 2008
-
-
Evan Cheng authored
llvm-svn: 58433
-
Mon P Wang authored
One will only see an effect if legalizetype is not active. Will move support to LegalizeType soon. llvm-svn: 58426
-
Chris Lattner authored
llvm-svn: 58416
-
Scott Michel authored
so that va_start/va_arg/et.al. will walk arguments correctly for Cell SPU. N.B.: Because neither clang nor llvm-gcc-4.2 can be built for CellSPU, this is still unexorcised code. llvm-svn: 58415
-
Bill Wendling authored
llvm-svn: 58414
-
Dan Gohman authored
llvm-svn: 58413
-
Bill Wendling authored
"__STDC_CONSTANT_MACROS" needs to be #defined first. llvm-svn: 58411
-
Evan Cheng authored
llvm-svn: 58409
-
Evan Cheng authored
llvm-svn: 58408
-
Evan Cheng authored
llvm-svn: 58407
-
Evan Cheng authored
llvm-svn: 58406
-
Evan Cheng authored
Add a bit to MachineRelocation that tells JIT that target is responsible for resolving the address. e.g. ARM constpool. llvm-svn: 58405
-
Nate Begeman authored
llvm-svn: 58403
-
- Oct 29, 2008
-
-
Chris Lattner authored
llvm-svn: 58393
-
Dale Johannesen authored
allows ppcf128->int conversion to work with DeadInstructionElimination. This is now turned off but RM is harmless. It does not do a complete job of modeling the rounding mode. Revert marking MFCR as using all 7 CR subregisters; while correct, this caused the problem in PR 2964, plus the local RA crash noted in the comments. This was needed to make DeadInstructionElimination, but as we are not running that, it is backed out for now. Eventually it should go back in and the other problems fixed where they're broken. llvm-svn: 58391
-
Duncan Sands authored
llvm-svn: 58389
-
Duncan Sands authored
llvm-svn: 58386
-
Chris Lattner authored
I don't really see this as being needed, but there is little harm from doing it. llvm-svn: 58385
-
Torok Edwin authored
llvm-svn: 58384
-
Duncan Sands authored
x86-64-linux. llvm-svn: 58383
-
Duncan Sands authored
VAARG. llvm-svn: 58379
-
Duncan Sands authored
other day that PPC custom lowering could create a BUILD_PAIR of two f64 with a result type of... f64! - already fixed). Fix a place that triggers the sanity check. llvm-svn: 58378
-
Evan Cheng authored
- If a def is spilt, remember its spill index to allow its reuse. llvm-svn: 58375
-
Duncan Sands authored
is morphed by AnalyzeNewNode into a previously processed node, and different result values of that node are remapped to values with different nodes, then we could end up using wrong values here [we were assuming that all results remap to values with the same underlying node]. This seems theoretically possible, but I don't have a testcase. The meat of the patch is in the changes to AnalyzeNewNode/AnalyzeNewValue and ReplaceNodeWith. While there, I changed names like RemapNode to RemapValue, since it really remaps values. To tell the truth, I would be much happier if we were only remapping nodes (it would simplify a bunch of logic, and allow for some cute speedups) but I haven't yet worked out how to do that. llvm-svn: 58372
-
Duncan Sands authored
llvm-svn: 58371
-
Duncan Sands authored
llvm-svn: 58370
-
Evan Cheng authored
- Create and update spill slot live intervals. - Lots of bug fixes. llvm-svn: 58367
-
Oscar Fuentes authored
llvm-svn: 58358
-
Daniel Dunbar authored
- No functionality change. llvm-svn: 58355
-
David Greene authored
Don't force things to be Value * when they're not. llvm-svn: 58354
-
Daniel Dunbar authored
- No functionality change. llvm-svn: 58352
-
- Oct 28, 2008
-
-
Dan Gohman authored
llvm-svn: 58351
-
Dan Gohman authored
EnableFastISelAbort variables for Release mode instead of using ifdefs in the code. llvm-svn: 58350
-
Chris Lattner authored
llvm-svn: 58345
-
Daniel Dunbar authored
- One functionality change, '\\' in a name is now printed as a hex escape instead of "\\\\". This is consistent with other users of PrintEscapedString. llvm-svn: 58343
-
Dan Gohman authored
llvm-svn: 58340
-
Dan Gohman authored
llvm-svn: 58339
-
Jim Grosbach authored
Since the ARM constant pool handling supercedes the standard LLVM constant pool entirely, the JIT emitter does not allocate space for the constants, nor initialize the memory. The constant pool is considered part of the instruction stream. Likewise, when resolving relocations into the constant pool, a hook into the target back end is used to resolve from the constant ID# to the address where the constant is stored. For now, the support in the ARM emitter is limited to 32-bit integer. Future patches will expand this to the full range of constants necessary. llvm-svn: 58338
-
Torok Edwin authored
virtual void print(std::ostream &O, const Module *M) const; instead of virtual void print(llvm::OStream &O, const Module *M) const; as the docs say llvm-svn: 58337
-
Evan Cheng authored
Avoid calls to setSubgraphColor in release mode. They generate lots of error messages and slow down compilation. llvm-svn: 58336
-