search for: isstrangetarget

Displaying 1 result from an estimated 1 matches for "isstrangetarget".

2009 Nov 17
1
[LLVMdev] LLVM target-independent code generator for reconfigurable logic
...rator. should i completely replace SelectionDAGISel, or modify SelectionDAGISel when necessary like this: LowerArguments(BasicBlock *LLVMBB) { // code for traditional target ........... for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I, ++Idx) { if (TLI.isStrangeTarget()) { //code for my strange target TLI.HandleArgment(...); continue; } // code for traditional target ....... } // code for traditional target ............. } thank you for any suggestion