本文整理汇总了C++中PPCEmuAssembler::not_方法的典型用法代码示例。如果您正苦于以下问题:C++ PPCEmuAssembler::not_方法的具体用法?C++ PPCEmuAssembler::not_怎么用?C++ PPCEmuAssembler::not_使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PPCEmuAssembler
的用法示例。
在下文中一共展示了PPCEmuAssembler::not_方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: updateConditionRegister
static bool
orGeneric(PPCEmuAssembler& a, Instruction instr)
{
a.mov(a.eax, a.ppcgpr[instr.rS]);
if (flags & OrImmediate) {
a.mov(a.ecx, instr.uimm);
} else {
a.mov(a.ecx, a.ppcgpr[instr.rB]);
}
if (flags & OrShifted) {
a.shl(a.ecx, 16);
}
if (flags & OrComplement) {
a.not_(a.ecx);
}
a.or_(a.eax, a.ecx);
a.mov(a.ppcgpr[instr.rA], a.eax);
if (flags & OrAlwaysRecord) {
updateConditionRegister(a, a.eax, a.ecx, a.edx);
} else if (flags & OrCheckRecord) {
if (instr.rc) {
updateConditionRegister(a, a.eax, a.ecx, a.edx);
}
}
return true;
}
示例2: getTwoCRB
// Condition Register OR with Complement
static bool
crorc(PPCEmuAssembler& a, Instruction instr)
{
getTwoCRB(a, instr.crbA, a.eax, instr.crbB, a.ecx);
a.not_(a.ecx);
a.or_(a.eax, a.ecx);
setCRB(a, instr.crbD, a.eax, a.ecx, a.edx);
return true;
}
示例3: jit_fallback
static bool
addGeneric(PPCEmuAssembler& a, Instruction instr)
{
if (flags & AddSubtract) {
return jit_fallback(a, instr);
}
bool recordCarry = false;
bool recordOverflow = false;
bool recordCond = false;
if (flags & AddCarry) {
recordCarry = true;
}
if (flags & AddAlwaysRecord) {
recordOverflow = true;
recordCond = true;
} else if (flags & AddCheckRecord) {
if (instr.oe) {
recordOverflow = true;
}
if (instr.rc) {
recordCond = true;
}
}
if ((flags & AddZeroRA) && instr.rA == 0) {
a.mov(a.eax, 0);
} else {
a.mov(a.eax, a.ppcgpr[instr.rA]);
}
if (flags & AddSubtract) {
a.not_(a.eax);
}
if (flags & AddImmediate) {
a.mov(a.ecx, sign_extend<16>(instr.simm));
} else if (flags & AddToZero) {
a.mov(a.ecx, 0);
} else if (flags & AddToMinusOne) {
a.mov(a.ecx, -1);
} else {
a.mov(a.ecx, a.ppcgpr[instr.rB]);
}
if (flags & AddShifted) {
a.shl(a.ecx, 16);
}
// Mark x64 CF based on PPC CF
if (flags & AddExtended) {
a.mov(a.edx, a.ppcxer);
a.and_(a.edx, XERegisterBits::Carry);
a.add(a.edx, 0xffffffff);
a.adc(a.eax, a.ecx);
} else if (flags & AddSubtract) {
a.stc();
a.adc(a.eax, a.ecx);
} else {
a.add(a.eax, a.ecx);
}
if (recordCarry && recordOverflow) {
a.mov(a.ecx, 0);
a.setc(a.ecx.r8());
a.mov(a.edx, 0);
a.seto(a.edx.r8());
a.shl(a.ecx, XERegisterBits::CarryShift);
a.shl(a.edx, XERegisterBits::OverflowShift);
a.or_(a.ecx, a.edx);
} else if (recordCarry) {
a.mov(a.ecx, 0);
a.setc(a.ecx.r8());
a.shl(a.ecx, XERegisterBits::CarryShift);
} else if (recordOverflow) {
a.mov(a.ecx, 0);
a.seto(a.ecx.r8());
a.shl(a.ecx, XERegisterBits::OverflowShift);
}
if (recordCarry || recordOverflow) {
uint32_t mask = 0xFFFFFFFF;
if (recordCarry) {
mask &= ~XERegisterBits::Carry;
}
if (recordOverflow) {
mask &= ~XERegisterBits::Overflow;
}
a.mov(a.edx, a.ppcxer);
a.and_(a.edx, mask);
a.or_(a.edx, a.ecx);
//.........这里部分代码省略.........