search for: realregalloc

Displaying 3 results from an estimated 3 matches for "realregalloc".

2006 Nov 20
0
[LLVMdev] FP emulation (continued)
On Fri, 17 Nov 2006, Roman Levenstein wrote: > I still have some questions about FP emulation for my embedded target. > To recap a bit: > My target only has integer registers and no hardware support for FP. FP > is supported only via emulation. Only f64 is supported. All FP > operations should be implemented to use i32 registers. ok > allocation. But anyway, I have an almost
2006 Nov 17
2
[LLVMdev] FP emulation (continued)
Hi, I still have some questions about FP emulation for my embedded target. To recap a bit: My target only has integer registers and no hardware support for FP. FP is supported only via emulation. Only f64 is supported. All FP operations should be implemented to use i32 registers. Based on the fruitful discussions on this list I was already able to implement mapping of the FP operations to
2006 Nov 20
3
[LLVMdev] FP emulation (continued)
...r like in this code? namespace { static RegisterRegAlloc TargetXRegAlloc("targetx", " targetx register allocator", createTargetXRegisterAllocator); struct VISIBILITY_HIDDEN RA : public MachineFunctionPass { private: MachineFunctionPass *RealRegAlloc; public: RA() { // Instantiate a real allocator to do the job! RealRegAlloc = (MachineFunctionPass*)(createLinearScanRegisterAllocator()); } virtual const char* getPassName() const { return "TargetX Register Allocator"; } virtual void getAna...