Esempio n. 1
0
bool BEQRelInstr::exp(asmjit::X86Assembler& a, MemoryMapper& m) {
	auto NotSet = a.newLabel();

	a.bt(REG_S, S_ZERO);
	a.jnc(NotSet);
	a.mov(asmjit::x86::di, this->next + this->target);
	a.jmp((uint64_t)&jit_and_jump);
	a.bind(NotSet);
	a.mov(asmjit::x86::di, this->next);
	a.jmp((uint64_t)&jit_and_jump);
	return false;
}
Esempio n. 2
0
bool BITZeroP::exp(asmjit::X86Assembler& a, MemoryMapper& m) {
	m.emitLoad(a, operand, asmjit::x86::al);
	// @COMPLETENESS: We should check and set the S_ flags here before the and
	a.push(asmjit::x86::rax);

	a.and_(asmjit::x86::al, REG_A);
	auto Zero = a.newLabel();
	auto Exit = a.newLabel();
	a.jz(Zero);

	//Not zero
	a.btr(REG_S, S_ZERO);
	a.jmp(Exit);
	a.bind(Zero);
	a.bts(REG_S, S_ZERO);
	a.bind(Exit);

	a.pop(asmjit::x86::rax);

	{
		a.btr(REG_S, S_OVERFLOW);
		a.bt(asmjit::x86::al, 6);
		auto End = a.newLabel();
		a.jnc(End);
		a.bts(REG_S, S_OVERFLOW);
		a.bind(End);
	}

	{
		a.btr(REG_S, S_NEGATIVE);
		a.bt(asmjit::x86::al, 7);
		auto End = a.newLabel();
		a.jnc(End);
		a.bts(REG_S, S_NEGATIVE);
		a.bind(End);
	}
	return true;
}
Esempio n. 3
0
bool CMPImm::exp(asmjit::X86Assembler& a, MemoryMapper& m) {
	a.cmp(REG_A, this->operand);

	{
		a.pushfd();
		a.btr(REG_S, S_CARRY);
		a.popfd();
		auto End = a.newLabel();
		a.jnc(End);
		a.pushfd();
		a.bts(REG_S, S_CARRY);
		a.popfd();
		a.bind(End);
	}

	{
		a.pushfd();
		a.btr(REG_S, S_ZERO);
		a.popfd();


		auto End = a.newLabel();
		a.jne(End);
		a.pushfd();
		a.bts(REG_S, S_ZERO);
		a.popfd();
		a.bind(End);
	}

	{
		a.pushfd();
		a.btr(REG_S, S_NEGATIVE);
		a.popfd();


		auto End = a.newLabel();
		a.jns(End);
		a.pushfd();
		a.bts(REG_S, S_NEGATIVE);
		a.popfd();
		a.bind(End);
	}
	return true;
}