- Feb 19, 2007
-
-
Chris Lattner authored
this offers no performance advantage. llvm-svn: 34415
-
Chris Lattner authored
llvm-svn: 34414
-
Chris Lattner authored
llvm-svn: 34413
-
Chris Lattner authored
llvm-svn: 34412
-
Chris Lattner authored
llvm-svn: 34411
-
Chris Lattner authored
llvm-svn: 34410
-
Chris Lattner authored
llvm-svn: 34409
-
Chris Lattner authored
llvm-svn: 34408
-
Chris Lattner authored
llvm-svn: 34407
-
Chris Lattner authored
Much of its content is now in other parts of the doc, and this brings it up immediately after 'stay informed' and right before 'code reviews'. llvm-svn: 34406
-
Chris Lattner authored
llvm-svn: 34405
-
Chris Lattner authored
move testcases above quality. Mention that a testcase is part of quality. llvm-svn: 34404
-
Chris Lattner authored
incremental development as a subsection of it. llvm-svn: 34403
-
Reid Spencer authored
llvm-svn: 34402
-
Chris Lattner authored
llvm-svn: 34401
-
Chris Lattner authored
llvm-svn: 34400
-
Reid Spencer authored
Revert patches that caused the problem. Evan, please investigate and reapply when you've discovered the problem. llvm-svn: 34399
-
Reid Spencer authored
llvm-svn: 34398
-
- Feb 18, 2007
-
-
Reid Spencer authored
2. Implement toString for power-of-2 radix without using divide and always printing full words. This allows hex/binary to look at the bit respresentation of the APInt as well as avoid bugs in divide. llvm-svn: 34396
-
Chris Lattner authored
llvm-svn: 34395
-
Chris Lattner authored
llvm-svn: 34394
-
Reid Spencer authored
llvm-svn: 34393
-
Reid Spencer authored
2. Teach slt about signedness. 3. Teach roundToDouble to properly sign extend. llvm-svn: 34391
-
Reid Spencer authored
Size matters in this case. 2. Remove the unused whichByte private function, which was also broken. 3. Remove the non-const overload of the getWord function, getWord() is never used as an lvalue. 4. Rename some local variables for clarity (e.g. API -> Result). llvm-svn: 34390
-
Reid Spencer authored
2. Consolidate memory allocation into just two inline functions. 3. Convert "unsigned" to uint32_t to gaurantee its size. 4. Eliminate magic constants and replace with symbolic equivalent. 5. Improve code documentation slightly. 6. Simplify the logical operator code because bitwidths must be the same. 7. Fix indentation per coding standards. 8. Use exit-early style to reduce indentation in several functions. llvm-svn: 34389
-
Reid Spencer authored
Fix line breaks and 80 cols violation. Simplify operator^= since bitwidths must be the same. llvm-svn: 34388
-
Chris Lattner authored
llvm-svn: 34387
-
Reid Spencer authored
Fix bugs in countLeadingZeros and countTrailingZeros. llvm-svn: 34386
-
Chris Lattner authored
compile-time regression in LLC. llvm-svn: 34385
-
- Feb 17, 2007
-
-
Reid Spencer authored
llvm-svn: 34384
-
Evan Cheng authored
- When coalescing a copy MI, if its destination is "dead", propagate the property to the source MI's destination if there are no intervening uses. - Detect dead function live-in's and remove them. llvm-svn: 34383
-
Evan Cheng authored
llvm-svn: 34382
-
Evan Cheng authored
llvm-svn: 34381
-
Evan Cheng authored
llvm-svn: 34380
-
Evan Cheng authored
- Allow LiveVariables to track liveness of more registers. llvm-svn: 34379
-
Evan Cheng authored
llvm-svn: 34378
-
Evan Cheng authored
llvm-svn: 34377
-
Evan Cheng authored
llvm-svn: 34376
-
Evan Cheng authored
virtual registers, test if they the same. - Added a virtual method to return target specific reserved registers, e.g. SP. llvm-svn: 34375
-
Chris Lattner authored
_test2: li r2, 0 lis r3, 1 std r2, 9024(r3) blr instead of: _test2: lis r2, 1 li r3, 0 ori r2, r2, 9024 std r3, 0(r2) blr This implements CodeGen/PowerPC/LargeAbsoluteAddr.ll:test2 llvm-svn: 34373
-