本文整理汇总了C++中AType::isDouble方法的典型用法代码示例。如果您正苦于以下问题:C++ AType::isDouble方法的具体用法?C++ AType::isDouble怎么用?C++ AType::isDouble使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AType
的用法示例。
在下文中一共展示了AType::isDouble方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: genericArithmetic
bool Unboxing::genericArithmetic(llvm::Instruction::BinaryOps op) {
llvm::Value * lhs = ins->getOperand(0);
llvm::Value * rhs = ins->getOperand(1);
AType * lhsType = state().get(lhs);
AType * rhsType = state().get(rhs);
if (lhsType->isDouble() and rhsType->isDouble()) {
return doubleArithmetic(lhs, rhs, lhsType, rhsType, op);
}
return false;
}
示例2: genericRelational
bool Unboxing::genericRelational(llvm::CmpInst::Predicate op) {
llvm::Value * lhs = ins->getOperand(0);
llvm::Value * rhs = ins->getOperand(1);
AType * lhsType = state().get(lhs);
AType * rhsType = state().get(rhs);
if (lhsType->isDouble() and rhsType->isDouble()) {
return doubleRelational(lhs, rhs, lhsType, rhsType, op);
}
return false;
}
示例3: genericGetElement
void TypeAnalysis::genericGetElement(CallInst * ci) {
AType * from = state.get(ci->getOperand(0));
AType * index = state.get(ci->getOperand(1));
if (from->isDouble()) {
if (index->isDoubleScalar()) {
state.update(ci, AType::D1);
} else {
state.update(ci, AType::DV);
}
} else if (from->isCharacter()) {
state.update(ci, AType::CV);
} else {
state.update(ci, AType::T);
}
}
示例4: genericGetElement
bool Unboxing::genericGetElement() {
llvm::Value * src = ins->getOperand(0);
llvm::Value * idx = ins->getOperand(1);
AType * srcType = state().get(src);
AType * idxType = state().get(idx);
if (srcType->isDouble()) {
src = CastInst::CreatePointerCast(src, type::ptrDoubleVector, "", ins);
if (idxType->isDoubleScalar()) {
llvm::Value * i = state().getMetadata(idx);
if (i) {
llvm::Value * res = RUNTIME_CALL(m->doubleGetSingleElement, src, i);
updateDoubleScalar(res);
return true;
}
}
}
return false;
}