reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1165 LLVM_DEBUG(errs() << "AMDIC: " << *CI << " ---> " << *opr0 << "\n"); 1166 replaceCall(opr0); 1173 LLVM_DEBUG(errs() << "AMDIC: " << *CI << " ---> sqrt(" << *opr0 << ")\n"); 1174 Value *nval = CreateCallEx(B,FPExpr, opr0, "__rootn2sqrt"); 1182 LLVM_DEBUG(errs() << "AMDIC: " << *CI << " ---> cbrt(" << *opr0 << ")\n"); 1183 Value *nval = CreateCallEx(B,FPExpr, opr0, "__rootn2cbrt"); 1188 LLVM_DEBUG(errs() << "AMDIC: " << *CI << " ---> 1.0 / " << *opr0 << "\n"); 1189 Value *nval = B.CreateFDiv(ConstantFP::get(opr0->getType(), 1.0), 1190 opr0, 1198 LLVM_DEBUG(errs() << "AMDIC: " << *CI << " ---> rsqrt(" << *opr0 1200 Value *nval = CreateCallEx(B,FPExpr, opr0, "__rootn2rsqrt");