reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
2098 B.SetInsertPoint(ArgInst->getParent(), ++ArgInst->getIterator()); 2102 BasicBlock &EntryBB = B.GetInsertBlock()->getParent()->getEntryBlock(); 2103 B.SetInsertPoint(&EntryBB, EntryBB.begin()); 2106 SinCos = B.CreateCall(Callee, Arg, "sincospi"); 2109 Sin = B.CreateExtractValue(SinCos, 0, "sinpi"); 2110 Cos = B.CreateExtractValue(SinCos, 1, "cospi"); 2112 Sin = B.CreateExtractElement(SinCos, ConstantInt::get(B.getInt32Ty(), 0), 2112 Sin = B.CreateExtractElement(SinCos, ConstantInt::get(B.getInt32Ty(), 0), 2114 Cos = B.CreateExtractElement(SinCos, ConstantInt::get(B.getInt32Ty(), 1), 2114 Cos = B.CreateExtractElement(SinCos, ConstantInt::get(B.getInt32Ty(), 1),