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

  /external/webkit/JavaScriptCore/assembler/
ARMAssembler.cpp 59 return OP2_IMM | imm;
86 return OP2_IMM | (imm >> 24) | (rol << 8);
132 imm1 = OP2_IMM | ((imm >> 16) & 0xff) | (((rol + 4) & 0xf) << 8);
133 imm2 = OP2_IMM | ((imm >> 8) & 0xff) | (((rol + 8) & 0xf) << 8);
135 imm1 = OP2_IMM | ((imm >> 24) & 0xff) | ((rol & 0xf) << 8);
155 imm2 = OP2_IMM | (imm >> 24) | ((rol & 0xf) << 8);
169 imm1 = OP2_IMM | ((imm >> 24) & 0xff) | ((rol & 0xf) << 8);
184 imm2 = OP2_IMM | (imm >> 24) | ((rol & 0xf) << 8);
271 add_r(ARMRegisters::S0, base, OP2_IMM | (offset >> 12) | (10 << 8));
282 sub_r(ARMRegisters::S0, base, OP2_IMM | (offset >> 12) | (10 << 8))
    [all...]
MacroAssemblerARM.cpp 86 m_assembler.add_r(ARMRegisters::S0, ARMRegisters::S0, ARMAssembler::OP2_IMM | 0x2);
ARMAssembler.h 152 OP2_IMM = (1 << 25),
232 ASSERT ( ((op2 & ~OP2_IMM) <= 0xfff) || (((op2 & ~OP2_IMMh) <= 0xfff)) );
MacroAssemblerARM.h 882 m_assembler.add_r(ARMRegisters::S0, base, ARMAssembler::OP2_IMM | (offset >> 12) | (10 << 8));
896 m_assembler.sub_r(ARMRegisters::S0, base, ARMAssembler::OP2_IMM | (offset >> 12) | (10 << 8));

Completed in 4775 milliseconds