- Jun 06, 2003
-
-
Misha Brukman authored
* Removed instruction scheduling as it is too slow to run in a JIT environment * Removed other passes because they aren't necessary and can slow JIT down llvm-svn: 6652
-
Chris Lattner authored
llvm-svn: 6651
-
Misha Brukman authored
The JIT is designed to code-generate a function at-a-time. That means that any pass can only make local changes to its function. Period. Because the Sparc PreSelection pass claims to be a BasicBlock pass while adding globals to the Module, it cannot be run with the other passes, because by this time, the globals have been output already by the JIT, and the addresses of any globals appearing AFTER this point are not recognized. However, the PreSelection pass is a requirement for correctness in the Sparc codegen path, so it MUST be run. ::: HACK ALERT ::: HACK ALERT ::: HACK ALERT ::: HACK ALERT ::: HACK ALERT ::: llvm-svn: 6650
-
Misha Brukman authored
llvm-svn: 6649
-
Misha Brukman authored
llvm-svn: 6648
-
Misha Brukman authored
address of a floating-point (allocated via ConstantPool) correctly. llvm-svn: 6647
-
Chris Lattner authored
Add GROSS HACK to get CompilationCallback to work when compiled in release mode llvm-svn: 6646
-
Misha Brukman authored
* Do not block a print statement with a DEBUG() guard if we're going to abort() llvm-svn: 6645
-
Misha Brukman authored
llvm-svn: 6644
-
Misha Brukman authored
output clean so that tests can automatically diff the output. llvm-svn: 6643
-
Misha Brukman authored
that tests can automatically diff the output. llvm-svn: 6642
-
Misha Brukman authored
llvm-svn: 6641
-
Misha Brukman authored
Now %fcc registers are recognized correctly. llvm-svn: 6640
-
Misha Brukman authored
llvm-svn: 6639
-
Misha Brukman authored
class, because they are currently unused. llvm-svn: 6638
-
Misha Brukman authored
llvm-svn: 6637
-
Misha Brukman authored
* Added comment as to why we are still ignoring predict and annul bits. llvm-svn: 6636
-
- Jun 05, 2003
-
-
Vikram S. Adve authored
Also, reorder a couple of functions for inlining. llvm-svn: 6635
-
Chris Lattner authored
llvm-svn: 6634
-
Misha Brukman authored
llvm-svn: 6633
-
Misha Brukman authored
* Stop mapping FBcc instructions to deprecated opcodes, map to FBPcc instead. * Fixed opf in FCMPxy instructions. llvm-svn: 6632
-
Chris Lattner authored
llvm-svn: 6631
-
Chris Lattner authored
llvm-svn: 6630
-
Chris Lattner authored
llvm-svn: 6629
-
Chris Lattner authored
llvm-svn: 6628
-
Chris Lattner authored
llvm-svn: 6627
-
Chris Lattner authored
This avoid generating a register to hold C, which in turn speeds up the register allocator by a lot: ~9% on 164.gzip and ~17% on 256.bzip2. This also speeds up other passes. This also speeds up execution of the program marginally, and makes the asm much easier to read. :) llvm-svn: 6626
-
Chris Lattner authored
llvm-svn: 6625
-
Chris Lattner authored
llvm-svn: 6624
-
Chris Lattner authored
reintroduce a bug that didn't have a testcase. llvm-svn: 6623
-
Anand Shukla authored
llvm-svn: 6622
-
Chris Lattner authored
llvm-svn: 6621
-
Chris Lattner authored
llvm-svn: 6620
-
Misha Brukman authored
Special cases: STFSRx and STXFSRx - they operate on predefined rd=0 or rd=1, and expect %fsr as the parameter in assembly. They are disabled (since not used) until an encoding, both for code generation and output, is chosen. llvm-svn: 6619
-
Misha Brukman authored
llvm-svn: 6618
-
Brian Gaeke authored
Update file comment to contain a bunch of the overview mapping-info documentation previously buried within the file. Remove some unnecessary include/using stmts. Rename pass to MappingInfoCollector. Rewrite a lot of it so it doesn't use global instance variables and so it outputs into MappingInfo objects and then dumps those out, instead of going straight to an assembly file. Change name of factory to getMappingInfoCollector. Fold prologue & epilogue writers into MappingInfo methods. lib/Target/Sparc/FInfo.cpp: Correct file comment to reflect above change lib/Target/Sparc/Sparc.cpp: Change name of factory to getMappingInfoCollector. llvm-svn: 6617
-
Brian Gaeke authored
to reflect file's current location. Add definition of class MappingInfo. llvm-svn: 6616
-
- Jun 04, 2003
-
-
Chris Lattner authored
sorry dude llvm-svn: 6615
-
Tanya Lattner authored
undeclared. I was not sure what Brian wanted, so I will let him fix this. But now it compiles. llvm-svn: 6614
-
Chris Lattner authored
llvm-svn: 6613
-