HomeSort by relevance Sort by last modified time
    Searched defs:mov (Results 1 - 9 of 9) sorted by null

  /external/v8/src/mips/
macro-assembler-mips.h 169 void mov(Register rd, Register rt) { or_(rd, rt, zero_reg); } function in class:v8::internal::MacroAssembler
  /external/zlib/contrib/inflate86/
inffas86.c 800 mov [eax], esp /* save esp, ebp */ local
801 mov [eax+4], ebp local
802 mov esp, eax
803 mov esi, [esp+8] /* esi = in */
804 mov edi, [esp+16] /* edi = out */
805 mov edx, [esp+40] /* edx = hold */
806 mov ebx, [esp+44] /* ebx = bits */
807 mov ebp, [esp+32] /* ebp = lcode */
825 mov cl, bl /* cl = bits, needs it for shifting */
831 mov eax, [esp+56] /* eax = lmask *
851 mov [esp+64], ecx \/* save len *\/ local
948 mov [edi], al local
974 mov [edi], al \/* memset out with from[-1] *\/ local
1115 mov [esp+16], edi \/* save out *\/ local
1116 mov [esp+44], ebx \/* save bits *\/ local
1117 mov [esp+40], edx \/* save hold *\/ local
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngvcrd.c 51 mov ecx, eax //Make another copy of Eflag in ecx
75 //faster than the instruction "mov eax, 1"
84 mov mmx_supported_local, 1 //set return value to 1
87 mov eax, mmx_supported_local //move return value to eax
188 mov ecx,len //load length of line
189 mov esi,srcptr //load source
190 mov ebx,dstptr //load dest
227 mov ecx,diff
231 mov edx,mask
236 mov ax,[esi
237 mov [ebx],ax local
240 mov [ebx+2],al local
384 mov [ebx],eax local
491 mov [ebx],al local
773 mov [ebx],ax local
934 mov [ebx],eax local
936 mov [ebx+4],ax \/\/ Glenn R-P local
1967 mov [edi+ebx-1], al \/\/ Write back Raw(x); local
1990 mov [edi+ebx-1], al \/\/ Write back Raw(x); local
2263 mov [edi+ebx-1], al \/\/ Write back Raw(x); local
2362 mov [edi+ebx-1], al \/\/ Write back Raw(x); local
2405 mov [edi + ebx - 1], al local
3602 mov [edi + ebx-1], al \/\/ mov does not affect flags; -1 to offset inc ebx local
3684 mov [edi + ebx-1], al \/\/ mov does not affect flags; -1 to offset inc ebx local
    [all...]
  /external/v8/src/arm/
assembler-arm.h 683 void mov(Register dst, const Operand& src,
685 void mov(Register dst, Register src, SBit s = LeaveCC, Condition cond = al) { function in class:v8::internal::Assembler
686 mov(dst, Operand(src), s, cond);
853 void nop() { mov(r0, Operand(r0)); }
    [all...]
assembler-thumb2.h 683 void mov(Register dst, const Operand& src,
685 void mov(Register dst, Register src, SBit s = LeaveCC, Condition cond = al) { function in class:v8::internal::Assembler
686 mov(dst, Operand(src), s, cond);
853 void nop() { mov(r0, Operand(r0)); }
    [all...]
assembler-arm.cc 355 // mov lr, pc
622 // If the opcode is mov or mvn and if ~imm32 fits, change the opcode.
666 // However, if the original instruction is a 'mov rd, x' (not setting the
671 if ((instr & ~CondMask) == 13*B21) { // mov, S not set
709 mov(ip, Operand(x.offset_), LeaveCC,
743 mov(ip, Operand(x.offset_), LeaveCC,
754 mov(ip, Operand(x.rm_, x.shift_op_, x.shift_imm_), LeaveCC,
989 void Assembler::mov(Register dst, const Operand& src, SBit s, Condition cond) { function in class:v8::internal::Assembler
    [all...]
assembler-thumb2.cc 335 // mov lr, pc
602 // If the opcode is mov or mvn and if ~imm32 fits, change the opcode.
646 // However, if the original instruction is a 'mov rd, x' (not setting the
651 if ((instr & ~CondMask) == 13*B21) { // mov, S not set
689 mov(ip, Operand(x.offset_), LeaveCC,
723 mov(ip, Operand(x.offset_), LeaveCC,
734 mov(ip, Operand(x.rm_, x.shift_op_, x.shift_imm_), LeaveCC,
969 void Assembler::mov(Register dst, const Operand& src, SBit s, Condition cond) { function in class:v8::internal::Assembler
    [all...]
  /external/v8/src/ia32/
assembler-ia32.cc 73 __ mov(ebp, Operand(esp));
78 __ mov(edx, Operand(eax));
96 __ mov(eax, 1);
105 __ mov(eax, Operand(edx));
107 __ mov(edx, Operand(ecx));
111 __ mov(esp, Operand(ebp));
450 // Convert 'push src; pop dst' to 'mov dst, src'.
477 // 0x71283c 396 890424 mov [esp],eax
487 PrintF("%d push/pop (mov-pop) eliminated\n", pc_offset());
515 // b8XXffffff mov eax,0xffffffX
621 void Assembler::mov(Register dst, int32_t imm32) { function in class:v8::internal::Assembler
629 void Assembler::mov(Register dst, const Immediate& x) { function in class:v8::internal::Assembler
637 void Assembler::mov(Register dst, Handle<Object> handle) { function in class:v8::internal::Assembler
645 void Assembler::mov(Register dst, const Operand& src) { function in class:v8::internal::Assembler
653 void Assembler::mov(Register dst, Register src) { function in class:v8::internal::Assembler
661 void Assembler::mov(const Operand& dst, const Immediate& x) { function in class:v8::internal::Assembler
670 void Assembler::mov(const Operand& dst, Handle<Object> handle) { function in class:v8::internal::Assembler
679 void Assembler::mov(const Operand& dst, Register src) { function in class:v8::internal::Assembler
    [all...]
  /external/webkit/JavaScriptCore/assembler/
ARMv7Assembler.h 408 ? use of MOV (register) instructions in which <Rd> is the SP or PC and <Rm> is also the SP or PC.
1124 void mov(RegisterID rd, ARMThumbImmediate imm) function in class:JSC::ARMv7Assembler
1137 void mov(RegisterID rd, RegisterID rm) function in class:JSC::ARMv7Assembler
    [all...]

Completed in 1431 milliseconds