HomeSort by relevance Sort by last modified time
    Searched refs:simm (Results 1 - 8 of 8) sorted by null

  /external/pcre/dist/sljit/
sljitNativeARM_64.c 414 static sljit_si load_immediate(struct sljit_compiler *compiler, sljit_si dst, sljit_sw simm)
416 sljit_uw imm = (sljit_uw)simm;
423 if (simm >= -0x10000 && simm < 0)
431 bitmask = logical_imm(simm, 16);
436 bitmask = logical_imm(simm, 32);
446 if (simm >= -0x100000000l && simm < 0) {
457 if ((simm & 0xffff) == 0)
459 if ((simm & 0xffff) == 0xffff
    [all...]
  /system/core/libpixelflinger/codeflinger/
Arm64Assembler.cpp 1021 uint32_t Rn, int32_t simm)
1024 LOG_INSTR("STR W%d, [SP, #%d]!\n", Rt, simm);
1026 LOG_INSTR("STR W%d, [X%d, #%d]!\n", Rt, Rn, simm);
1028 uint32_t imm9 = (unsigned)(simm) & 0x01FF;
1033 uint32_t Rn, int32_t simm)
1036 LOG_INSTR("LDR W%d, [SP], #%d\n",Rt,simm);
1038 LOG_INSTR("LDR W%d, [X%d], #%d\n",Rt, Rn, simm);
1040 uint32_t imm9 = (unsigned)(simm) & 0x01FF;
    [all...]
Arm64Assembler.h 201 uint32_t A64_STR_IMM_PreIndex(uint32_t Rt, uint32_t Rn, int32_t simm);
202 uint32_t A64_LDR_IMM_PostIndex(uint32_t Rt,uint32_t Rn, int32_t simm);
  /external/valgrind/VEX/priv/
host_arm64_defs.h 644 Int simm; /* needs to be 0 % 16 and in the range -4095 member in struct:__anon19456::__anon19457::__anon19475
905 extern ARM64Instr* ARM64Instr_AddToSP ( Int simm );
    [all...]
host_arm_isel.c 777 Int simm = (Int)e->Iex.Binop.arg2->Iex.Const.con->Ico.U32; local
778 if (simm >= -4095 && simm <= 4095) {
781 simm = -simm;
783 return ARMAMode1_RI(reg, simm);
843 Int simm = (Int)e->Iex.Binop.arg2->Iex.Const.con->Ico.U32; local
844 if (simm >= -255 && simm <= 255) {
847 simm = -simm
895 Int simm = (Int)e->Iex.Binop.arg2->Iex.Const.con->Ico.U32; local
    [all...]
host_arm64_defs.c 1524 Int simm = i->ARM64in.AddToSP.simm; local
    [all...]
host_arm64_isel.c 873 Long simm = (Long)e->Iex.Binop.arg2->Iex.Const.con->Ico.U64; local
874 if (simm >= -255 && simm <= 255) {
876 simm >= -256 && simm <= 255
877 we will need to negate simm in the case where the op is Sub64.
881 if (e->Iex.Binop.op == Iop_Sub64) simm = -simm;
882 return ARM64AMode_RI9(reg, (Int)simm);
    [all...]
guest_arm64_toIR.c 2466 ULong simm = sx_to_64(uimm, 21); local
    [all...]

Completed in 224 milliseconds