本文整理汇总了C++中vixl::MacroAssembler::Fmov方法的典型用法代码示例。如果您正苦于以下问题:C++ MacroAssembler::Fmov方法的具体用法?C++ MacroAssembler::Fmov怎么用?C++ MacroAssembler::Fmov使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类vixl::MacroAssembler
的用法示例。
在下文中一共展示了MacroAssembler::Fmov方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: emit
void Vgen::emit(const ldimmq& i) {
union {
double dval;
int64_t ival;
};
ival = i.s.q();
if (i.d.isSIMD()) {
// Assembler::fmov (which you'd think shouldn't be a macro instruction)
// will emit a ldr from a literal pool if IsImmFP64 is false. vixl's
// literal pools don't work well with our codegen pattern, so if that
// would happen, emit the raw bits into a GPR first and then move them
// unmodified into a SIMD.
if (vixl::Assembler::IsImmFP64(dval)) {
a->Fmov(D(i.d), dval);
} else if (ival == 0) { // careful: dval==0.0 is true for -0.0
// 0.0 is not encodeable as an immediate to Fmov, but this works.
a->Fmov(D(i.d), vixl::xzr);
} else {
a->Mov(rAsm, ival); // XXX avoid scratch register somehow.
a->Fmov(D(i.d), rAsm);
}
} else {
a->Mov(X(i.d), ival);
}
}