本文整理汇总了C++中LIR_Opr::rinfo方法的典型用法代码示例。如果您正苦于以下问题:C++ LIR_Opr::rinfo方法的具体用法?C++ LIR_Opr::rinfo怎么用?C++ LIR_Opr::rinfo使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LIR_Opr
的用法示例。
在下文中一共展示了LIR_Opr::rinfo方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: is_cache_reg
bool LocalMapping::is_cache_reg(LIR_Opr opr) const {
if (opr->is_register()) {
return is_cache_reg(opr->rinfo());
} else {
return false;
}
}
示例2: fpu_fanout_handled
// Handle fanout of fpu registers: return false if no fanout;
// If fanout than, we copy the value of float register into a new one,
// so that the new FPU register has ref-count 1
bool LIRGenerator::fpu_fanout_handled() {
if (result()->is_register() && (value()->type()->is_float_kind())) {
// The item is float or double register with a use_count > 1
LIR_Opr reg = rlock(value());
emit()->copy_fpu_item(reg->rinfo(), result());
set_result(value(), reg);
return true;
} else {
return false;
}
}
示例3: is_local_name_cached_in_reg
bool LocalMapping::is_local_name_cached_in_reg(int local_name, LIR_Opr opr) {
return _mapping->at(local_name).is_same(opr->rinfo());
}