HomeSort by relevance Sort by last modified time
    Searched refs:stack_offset (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
gl_x86-64_asm.py 58 for [reg, stack_offset] in registers:
59 save_reg( reg, stack_offset, adjust_stack )
70 [reg, stack_offset] = temp.pop()
71 restore_reg(reg, stack_offset, adjust_stack)
222 stack_offset = 0
229 registers.append( [int_parameters[int_class], stack_offset] )
231 stack_offset += 8
234 registers.append( ["%%xmm%u" % (sse_class), stack_offset] )
236 stack_offset += 8
  /external/mesa3d/src/mapi/glapi/gen/
gl_x86-64_asm.py 58 for [reg, stack_offset] in registers:
59 save_reg( reg, stack_offset, adjust_stack )
70 [reg, stack_offset] = temp.pop()
71 restore_reg(reg, stack_offset, adjust_stack)
222 stack_offset = 0
229 registers.append( [int_parameters[int_class], stack_offset] )
231 stack_offset += 8
234 registers.append( ["%%xmm%u" % (sse_class), stack_offset] )
236 stack_offset += 8
  /external/pixman/pixman/
pixman-mips-dspr2-asm.h 106 .macro CHECK_STACK_OFFSET regs_num, stack_offset
107 .if \stack_offset < \regs_num * 4 - 16
123 .macro SAVE_REGS_ON_STACK stack_offset = 0, r1, \
129 .if (\stack_offset < 0) || (\stack_offset - (\stack_offset / 4) * 4)
132 .if \stack_offset != 0
133 addiu sp, sp, -\stack_offset
146 CHECK_STACK_OFFSET 5, \stack_offset
150 CHECK_STACK_OFFSET 6, \stack_offset
    [all...]
  /external/chromium_org/third_party/x86inc/
x86inc.asm 218 %assign stack_offset stack_offset+gprsize
223 %assign stack_offset stack_offset-gprsize
229 %assign stack_offset stack_offset+(%2)
236 %assign stack_offset stack_offset-(%2)
292 DECLARE_REG 4, rdi, edi, di, dil, [rsp + stack_offset + 40]
293 DECLARE_REG 5, rsi, esi, si, sil, [rsp + stack_offset + 48
    [all...]
  /external/v8/src/ia32/
codegen-ia32.cc 168 int stack_offset = 0; // Update if we change the stack height. local
171 __ cmp(Operand(esp, kSizeOffset + stack_offset),
182 stack_offset += 2 * kPointerSize;
186 __ mov(dst, Operand(esp, stack_offset + kDestinationOffset));
187 __ mov(src, Operand(esp, stack_offset + kSourceOffset));
188 __ mov(count, Operand(esp, stack_offset + kSizeOffset));
243 __ mov(eax, Operand(esp, stack_offset + kDestinationOffset));
289 __ mov(eax, Operand(esp, stack_offset + kDestinationOffset));
299 stack_offset += 2 * kPointerSize;
304 __ mov(dst, Operand(esp, stack_offset + kDestinationOffset))
    [all...]
  /external/libvpx/libvpx/third_party/x86inc/
x86inc.asm 236 %define r%1m [rsp + stack_offset + %6]
239 %define r%1m [esp + stack_offset + %6]
298 %assign stack_offset stack_offset+gprsize
303 %assign stack_offset stack_offset-gprsize
336 %assign stack_offset stack_offset+(%2)
343 %assign stack_offset stack_offset-(%2
    [all...]
  /external/chromium_org/media/base/simd/
scale_yuv_to_rgb_sse2_x64.asm 25 %assign stack_offset 0
linear_scale_yuv_to_rgb_mmx_x64.asm 25 %assign stack_offset 0
  /art/compiler/utils/mips/
assembler_mips.cc 560 int stack_offset = frame_size - kPointerSize; local
561 StoreToOffset(kStoreWord, RA, SP, stack_offset);
563 stack_offset -= kPointerSize;
565 StoreToOffset(kStoreWord, reg, SP, stack_offset);
583 int stack_offset = frame_size - (callee_save_regs.size() * kPointerSize) - kPointerSize; local
586 LoadFromOffset(kLoadWord, reg, SP, stack_offset);
587 stack_offset += kPointerSize;
589 LoadFromOffset(kLoadWord, RA, SP, stack_offset);
    [all...]
  /external/chromium_org/v8/src/mips/
macro-assembler-mips.cc 803 int16_t stack_offset = num_to_push * kPointerSize; local
805 Subu(sp, sp, Operand(stack_offset));
808 stack_offset -= kPointerSize;
809 sw(ToRegister(i), MemOperand(sp, stack_offset));
817 int16_t stack_offset = num_to_push * kPointerSize; local
819 Subu(sp, sp, Operand(stack_offset));
822 stack_offset -= kPointerSize;
823 sw(ToRegister(i), MemOperand(sp, stack_offset));
830 int16_t stack_offset = 0; local
834 lw(ToRegister(i), MemOperand(sp, stack_offset));
843 int16_t stack_offset = 0; local
857 int16_t stack_offset = num_to_push * kDoubleSize; local
871 int16_t stack_offset = num_to_push * kDoubleSize; local
884 int16_t stack_offset = 0; local
897 int16_t stack_offset = 0; local
    [all...]
code-stubs-mips.h 159 int stack_offset,
  /external/v8/src/mips/
macro-assembler-mips.cc 802 int16_t stack_offset = num_to_push * kPointerSize; local
804 Subu(sp, sp, Operand(stack_offset));
807 stack_offset -= kPointerSize;
808 sw(ToRegister(i), MemOperand(sp, stack_offset));
816 int16_t stack_offset = num_to_push * kPointerSize; local
818 Subu(sp, sp, Operand(stack_offset));
821 stack_offset -= kPointerSize;
822 sw(ToRegister(i), MemOperand(sp, stack_offset));
829 int16_t stack_offset = 0; local
833 lw(ToRegister(i), MemOperand(sp, stack_offset));
842 int16_t stack_offset = 0; local
857 int16_t stack_offset = num_to_push * kDoubleSize; local
872 int16_t stack_offset = num_to_push * kDoubleSize; local
886 int16_t stack_offset = 0; local
900 int16_t stack_offset = 0; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/x86/rtasm/
x86sse.c 317 p->stack_offset += 4;
325 p->stack_offset -= 4;
1156 p->stack_offset + arg * 4); /* ??? */
x86sse.h 22 unsigned stack_offset; member in struct:x86_function
  /external/mesa3d/src/mesa/x86/rtasm/
x86sse.c 317 p->stack_offset += 4;
325 p->stack_offset -= 4;
1156 p->stack_offset + arg * 4); /* ??? */
x86sse.h 22 unsigned stack_offset; member in struct:x86_function
  /external/chromium_org/v8/src/ia32/
codegen-ia32.cc 289 int stack_offset = 0; // Update if we change the stack height. local
295 stack_offset += 2 * kPointerSize;
300 __ mov(dst, Operand(esp, stack_offset + kDestinationOffset));
301 __ mov(src, Operand(esp, stack_offset + kSourceOffset));
302 __ mov(count, Operand(esp, stack_offset + kSizeOffset));
    [all...]
code-stubs-ia32.h 158 int stack_offset,
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
rtasm_x86sse.c 580 p->stack_offset += sizeof(void*);
590 p->stack_offset += sizeof(void*);
600 p->stack_offset -= sizeof(void*);
632 assert(p->stack_offset == 0);
    [all...]
rtasm_x86sse.h 56 unsigned stack_offset:16; member in struct:x86_function
  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_x86sse.c 580 p->stack_offset += sizeof(void*);
590 p->stack_offset += sizeof(void*);
600 p->stack_offset -= sizeof(void*);
632 assert(p->stack_offset == 0);
    [all...]
rtasm_x86sse.h 56 unsigned stack_offset:16; member in struct:x86_function
  /external/qemu/tcg/
tcg.c 1833 tcg_target_long stack_offset, call_stack_size, func_addr; local
    [all...]
  /external/chromium_org/v8/src/arm/
code-stubs-arm.h 158 int stack_offset,
  /external/chromium_org/v8/src/x64/
code-stubs-x64.h 148 int stack_offset,

Completed in 913 milliseconds

1 2