HomeSort by relevance Sort by last modified time
    Searched refs:stack_offset (Results 1 - 25 of 30) 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/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
x86inc.asm 143 %define r%1m [rsp + stack_offset + %3]
146 %define r%1m [esp + stack_offset + %3]
208 %assign stack_offset stack_offset+gprsize
213 %assign stack_offset stack_offset-gprsize
246 %assign stack_offset stack_offset+(%2)
253 %assign stack_offset stack_offset-(%2
    [all...]
  /external/chromium_org/third_party/libvpx/source/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/third_party/libyuv/source/
x86inc.asm 143 %define r%1m [rsp + stack_offset + %3]
146 %define r%1m [esp + stack_offset + %3]
208 %assign stack_offset stack_offset+gprsize
213 %assign stack_offset stack_offset-gprsize
246 %assign stack_offset stack_offset+(%2)
253 %assign stack_offset stack_offset-(%2
    [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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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/jemalloc/src/
tcache.c 312 size_t size, stack_offset; local
318 stack_offset = size;
346 (uintptr_t)stack_offset);
347 stack_offset += tcache_bin_info[i].ncached_max * sizeof(void *);
  /external/lldb/source/Plugins/UnwindAssembly/x86/
UnwindAssembly-x86.cpp 546 int stack_offset, insn_len; local
619 if (mov_reg_to_local_stack_frame_p (machine_regno, stack_offset) && nonvolatile_reg_p (machine_regno))
636 if (sub_rsp_pattern_p (stack_offset))
638 current_sp_bytes_offset_from_cfa += stack_offset;
  /art/compiler/utils/mips/
assembler_mips.cc 550 int stack_offset = frame_size - kFramePointerSize; local
551 StoreToOffset(kStoreWord, RA, SP, stack_offset);
553 stack_offset -= kFramePointerSize;
555 StoreToOffset(kStoreWord, reg, SP, stack_offset);
573 int stack_offset = frame_size - (callee_save_regs.size() * kFramePointerSize) - kFramePointerSize; local
576 LoadFromOffset(kLoadWord, reg, SP, stack_offset);
577 stack_offset += kFramePointerSize;
579 LoadFromOffset(kLoadWord, RA, SP, stack_offset);
    [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/optimizing/
code_generator_x86_64.cc 1407 int stack_offset = ensure_scratch.IsSpilled() ? kX86_64WordSize : 0; local
1408 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem1 + stack_offset)); local
1410 Address(CpuRegister(RSP), mem2 + stack_offset)); local
1411 __ movl(Address(CpuRegister(RSP), mem2 + stack_offset), CpuRegister(TMP)); local
1412 __ movl(Address(CpuRegister(RSP), mem1 + stack_offset), local
1426 int stack_offset = ensure_scratch.IsSpilled() ? kX86_64WordSize : 0; local
1427 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem1 + stack_offset)); local
1429 Address(CpuRegister(RSP), mem2 + stack_offset)); local
1430 __ movq(Address(CpuRegister(RSP), mem2 + stack_offset), CpuRegister(TMP)); local
1431 __ movq(Address(CpuRegister(RSP), mem1 + stack_offset), local
    [all...]
code_generator_x86.cc 1494 int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0; local
1537 int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0; local
1551 int stack_offset = ensure_scratch1.IsSpilled() ? kX86WordSize : 0; local
    [all...]
  /external/chromium_org/v8/src/x87/
codegen-x87.cc 104 int stack_offset = 0; // Update if we change the stack height. local
110 stack_offset += 2 * kPointerSize;
114 __ mov(dst, Operand(esp, stack_offset + kDestinationOffset));
115 __ mov(src, Operand(esp, stack_offset + kSourceOffset));
116 __ mov(count, Operand(esp, stack_offset + kSizeOffset));
  /external/chromium_org/v8/src/mips/
macro-assembler-mips.cc 1023 int16_t stack_offset = num_to_push * kPointerSize; local
1025 Subu(sp, sp, Operand(stack_offset));
1028 stack_offset -= kPointerSize;
1029 sw(ToRegister(i), MemOperand(sp, stack_offset));
1037 int16_t stack_offset = num_to_push * kPointerSize; local
1039 Subu(sp, sp, Operand(stack_offset));
1042 stack_offset -= kPointerSize;
1043 sw(ToRegister(i), MemOperand(sp, stack_offset));
1050 int16_t stack_offset = 0; local
1054 lw(ToRegister(i), MemOperand(sp, stack_offset));
1063 int16_t stack_offset = 0; local
1077 int16_t stack_offset = num_to_push * kDoubleSize; local
1091 int16_t stack_offset = num_to_push * kDoubleSize; local
1104 int16_t stack_offset = 0; local
1117 int16_t stack_offset = 0; local
    [all...]
  /external/chromium_org/v8/src/mips64/
macro-assembler-mips64.cc 1153 int16_t stack_offset = num_to_push * kPointerSize; local
1155 Dsubu(sp, sp, Operand(stack_offset));
1158 stack_offset -= kPointerSize;
1159 sd(ToRegister(i), MemOperand(sp, stack_offset));
1167 int16_t stack_offset = num_to_push * kPointerSize; local
1169 Dsubu(sp, sp, Operand(stack_offset));
1180 int16_t stack_offset = 0; local
1193 int16_t stack_offset = 0; local
1207 int16_t stack_offset = num_to_push * kDoubleSize; local
1221 int16_t stack_offset = num_to_push * kDoubleSize; local
1234 int16_t stack_offset = 0; local
1247 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); /* ??? */
  /external/mesa3d/src/mesa/x86/rtasm/
x86sse.c 317 p->stack_offset += 4;
325 p->stack_offset -= 4;
1156 p->stack_offset + arg * 4); /* ??? */
  /external/chromium_org/v8/src/ia32/
codegen-ia32.cc 224 int stack_offset = 0; // Update if we change the stack height. local
230 stack_offset += 2 * kPointerSize;
235 __ mov(dst, Operand(esp, stack_offset + kDestinationOffset));
236 __ mov(src, Operand(esp, stack_offset + kSourceOffset));
237 __ mov(count, Operand(esp, stack_offset + kSizeOffset));
    [all...]
  /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...]
  /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...]
  /external/qemu/tcg/
tcg.c 2263 intptr_t stack_offset; local
    [all...]

Completed in 718 milliseconds

1 2