search for: newpart

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

Did you mean: newpars
2007 Sep 22
0
[LLVMdev] APFloat storage complications
...t/APFloat.cpp =================================================================== --- lib/Support/APFloat.cpp (revision 42219) +++ lib/Support/APFloat.cpp (working copy) @@ -1318,39 +1318,44 @@ APFloat::convert(const fltSemantics &toSemantics, roundingMode rounding_mode) { - unsigned int newPartCount; + lostFraction lostFraction; + unsigned int newPartCount, oldPartCount; opStatus fs; - + + lostFraction = lfExactlyZero; newPartCount = partCountForBits(toSemantics.precision + 1); + oldPartCount = partCount(); - /* If our new form is wider, re-allocate our bit pattern into wid...
2007 Aug 18
1
[LLVMdev] Soft floating point support
This patch supplies software IEEE floating point support. The comment from the patch reproduced below says all there is to say. This patch contains the prior "cleanup" patch; please don't apply that one. Please let me know of any bugs. It is tested reasonably well, but until I put together random tests it's hard to have 100% confidence. Neil. /* A self-contained host- and
2013 Jul 12
14
[LLVMdev] [Proposal] Parallelize post-IPO stage.
...) { + DestI->setName(I->getName()); // Copy the name over... + VMap[I] = DestI++; // Add mapping to VMap + } + } + SmallVector<ReturnInst*, 8> Returns; + CloneFunctionInto(NF, OF, VMap, true, Returns); + + OF->deleteBody(); + } + + IPOPartition *NewPart = IPOPartMgr.CreateIPOPart(NewMod); + + // We have to save the module to disk such that next time it's loaded + // it relong to different context. + NewPart->SaveBitCode(); + + return NewPart; +} + +void ModPartXform::PerformTransform() { + for (ModPartSchemeMgr::iterator I = PartSch...