- Oct 20, 2003
-
-
John Criswell authored
Header files will be on the way. llvm-svn: 9298
-
Chris Lattner authored
llvm-svn: 9297
-
Chris Lattner authored
llvm-svn: 9296
-
Brian Gaeke authored
llvm-svn: 9295
-
Chris Lattner authored
llvm-svn: 9294
-
Chris Lattner authored
llvm-svn: 9293
-
Chris Lattner authored
llvm-svn: 9292
-
John Criswell authored
llvm-svn: 9291
-
John Criswell authored
between the "Getting Started Quickly" and "Getting Started Slowly" sections. :) Removed some of the nit-picky requirements information (i.e. GNU tar and GNU zip). Attempted to compact the requirements information so that it is less scary. llvm-svn: 9290
-
Brian Gaeke authored
llvm-svn: 9289
-
Brian Gaeke authored
llvm-svn: 9288
-
Brian Gaeke authored
Make it assert by default. llvm-svn: 9287
-
Chris Lattner authored
when changing Instruction.def. :( llvm-svn: 9286
-
Chris Lattner authored
llvm-svn: 9285
-
Chris Lattner authored
C is a constant which can be sign-extended from 8 bits without value loss, and op is one of: add, sub, imul, and, or, xor. This allows the JIT to emit the one byte version of the constant instead of the two or 4 byte version. Because these instructions are very common, this can save a LOT of code space. For example, I sampled two benchmarks, 176.gcc and 254.gap. BM Old New Reduction 176.gcc 2673621 2548962 4.89% 254.gap 498261 475104 4.87% Note that while the percentage is not spectacular, this did eliminate 124.6 _KILOBYTES_ of codespace from gcc. Not bad. Note that this doesn't effect the llc version at all, because the assembler already does this optimization. llvm-svn: 9284
-
Chris Lattner authored
llvm-svn: 9283
-
Chris Lattner authored
llvm-svn: 9282
-
Chris Lattner authored
llvm-svn: 9281
-
Misha Brukman authored
llvm-svn: 9280
-
Misha Brukman authored
* Added description of `mem2reg' llvm-svn: 9279
-
Chris Lattner authored
* Implement R1 = R2 * C where R1 and R2 are 32 or 16 bits. This avoids an extra copy into a register, reducing register pressure. llvm-svn: 9278
-
Chris Lattner authored
llvm-svn: 9274
-
- Oct 19, 2003
-
-
Chris Lattner authored
debugging with the JIT llvm-svn: 9273
-
Chris Lattner authored
llvm-svn: 9272
-
Chris Lattner authored
llvm-svn: 9270
-
Chris Lattner authored
Change the Opcode enum for PHI nodes from "Instruction::PHINode" to "Instruction::PHI" to be more consistent with the other instructions. llvm-svn: 9269
-
Chris Lattner authored
Change the Opcode enum for PHI nodes from "Instruction::PHINode" to "Instruction::PHI" to be more consistent with the other instructions. This allows removal of a special case from the instvisitor llvm-svn: 9268
-
Chris Lattner authored
getelementptr code path for use by other code paths (like malloc and alloca). * Optimize comparisons with zero * Generate neg, not, inc, and dec instructions, when possible. This gives some code size wins, which might translate into performance. We'll see tommorow in the nightly tester. llvm-svn: 9267
-
Chris Lattner authored
llvm-svn: 9266
-
Brian Gaeke authored
llvm-svn: 9265
-
Brian Gaeke authored
Mention that they should really read the gcc manual. llvm-svn: 9264
-
Brian Gaeke authored
llvm-svn: 9263
-
Brian Gaeke authored
llvm-svn: 9262
-
Brian Gaeke authored
llvm-svn: 9261
-
Chris Lattner authored
llvm-svn: 9260
-
Brian Gaeke authored
llvm-svn: 9259
-
Brian Gaeke authored
llvm-svn: 9258
-
Brian Gaeke authored
Refer to the various "modules" of bugpoint as "debuggers", not "debugging modes" or "modules". I think this is more evocative of how they typically act, and it's shorter. Add a note about how a linker bug can crash bugpoint early. llvm-svn: 9257
-
Chris Lattner authored
llvm-svn: 9256
-
Brian Gaeke authored
Add Design Philosophy as a separate subsection. Clarify its last sentence. Give Automatic Mode Selection a uniquely-named anchor. Always call the program the "test program", instead of the "initial program", the "LLVM program", the "test case", the "resultant module", etc. Try to explain the assumptions a little more, instead of just describing the process. llvm-svn: 9255
-