Home
last modified time | relevance | path

Searched refs:stack_offset (Results 1 – 19 of 19) sorted by relevance

/external/libjpeg-turbo/simd/
Djsimd_mips_dspr2_asm.h129 .macro CHECK_STACK_OFFSET regs_num, stack_offset
130 .if \stack_offset < \regs_num * 4 - 16
146 .macro SAVE_REGS_ON_STACK stack_offset = 0, r1, \
152 .if (\stack_offset < 0) || (\stack_offset - (\stack_offset / 4) * 4)
155 .if \stack_offset != 0
156 addiu sp, sp, -\stack_offset
169 CHECK_STACK_OFFSET 5, \stack_offset
173 CHECK_STACK_OFFSET 6, \stack_offset
177 CHECK_STACK_OFFSET 7, \stack_offset
181 CHECK_STACK_OFFSET 8, \stack_offset
[all …]
/external/mesa3d/src/mapi/glapi/gen/
Dgl_x86-64_asm.py58 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/v8/src/compiler/
Dwasm-linkage.cc145 stack_offset(0) {} in Allocator()
155 int stack_offset; member
163 int offset = -1 - stack_offset; in Next()
164 stack_offset += Words(type); in Next()
172 int offset = -1 - stack_offset; in Next()
173 stack_offset += Words(type); in Next()
273 params.stack_offset, // stack_parameter_count in GetWasmCallDescriptor()
Dc-linkage.cc183 int stack_offset = STACK_SHADOW_WORDS; in GetSimplifiedCDescriptor() local
185 int stack_offset = 0; in GetSimplifiedCDescriptor() local
193 LinkageLocation::ForCallerFrameSlot(-1 - stack_offset)); in GetSimplifiedCDescriptor()
194 stack_offset++; in GetSimplifiedCDescriptor()
/external/libvpx/libvpx/third_party/libyuv/source/
Dx86inc.asm143 %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)
291 %xdefine %%stack_offset stack_offset
292 %undef stack_offset ; so that the current value of stack_offset doesn't get baked in by xdefine
/external/libvpx/libvpx/third_party/x86inc/
Dx86inc.asm242 %define r%1m [rstk + stack_offset + %3]
245 %define r%1m [rstk + stack_offset + %3]
308 %assign stack_offset stack_offset+gprsize
315 %assign stack_offset stack_offset-gprsize
349 %assign stack_offset stack_offset+(%2)
356 %assign stack_offset stack_offset-(%2)
394 %xdefine %%stack_offset stack_offset
395 %undef stack_offset ; so that the current value of stack_offset doesn't get baked in by xdefine
806 %assign stack_offset 0 ; stack pointer offset relative to the return address
/external/jemalloc/src/
Dtcache.c317 size_t size, stack_offset; in tcache_create() local
323 stack_offset = size; in tcache_create()
340 stack_offset += tcache_bin_info[i].ncached_max * sizeof(void *); in tcache_create()
347 (uintptr_t)stack_offset); in tcache_create()
/external/v8/src/x87/
Dcodegen-x87.cc123 int stack_offset = 0; // Update if we change the stack height. in CreateMemMoveFunction() local
129 stack_offset += 2 * kPointerSize; in CreateMemMoveFunction()
133 __ mov(dst, Operand(esp, stack_offset + kDestinationOffset)); in CreateMemMoveFunction()
134 __ mov(src, Operand(esp, stack_offset + kSourceOffset)); in CreateMemMoveFunction()
135 __ mov(count, Operand(esp, stack_offset + kSizeOffset)); in CreateMemMoveFunction()
/external/v8/test/cctest/compiler/
Dtest-run-native-calls.cc123 stack_offset(0) {} in Allocator()
133 int stack_offset; member
141 int offset = -1 - stack_offset; in Next()
142 stack_offset += StackWords(type); in Next()
150 int offset = -1 - stack_offset; in Next()
151 stack_offset += StackWords(type); in Next()
166 stack_offset = 0; in Reset()
198 int stack_param_count = params.stack_offset; in Create()
/external/v8/src/mips/
Dmacro-assembler-mips.cc1128 int16_t stack_offset = num_to_push * kPointerSize; in MultiPush() local
1130 Subu(sp, sp, Operand(stack_offset)); in MultiPush()
1133 stack_offset -= kPointerSize; in MultiPush()
1134 sw(ToRegister(i), MemOperand(sp, stack_offset)); in MultiPush()
1142 int16_t stack_offset = num_to_push * kPointerSize; in MultiPushReversed() local
1144 Subu(sp, sp, Operand(stack_offset)); in MultiPushReversed()
1147 stack_offset -= kPointerSize; in MultiPushReversed()
1148 sw(ToRegister(i), MemOperand(sp, stack_offset)); in MultiPushReversed()
1155 int16_t stack_offset = 0; in MultiPop() local
1159 lw(ToRegister(i), MemOperand(sp, stack_offset)); in MultiPop()
[all …]
/external/v8/src/mips64/
Dmacro-assembler-mips64.cc1386 int16_t stack_offset = num_to_push * kPointerSize; in MultiPush() local
1388 Dsubu(sp, sp, Operand(stack_offset)); in MultiPush()
1391 stack_offset -= kPointerSize; in MultiPush()
1392 sd(ToRegister(i), MemOperand(sp, stack_offset)); in MultiPush()
1400 int16_t stack_offset = num_to_push * kPointerSize; in MultiPushReversed() local
1402 Dsubu(sp, sp, Operand(stack_offset)); in MultiPushReversed()
1405 stack_offset -= kPointerSize; in MultiPushReversed()
1406 sd(ToRegister(i), MemOperand(sp, stack_offset)); in MultiPushReversed()
1413 int16_t stack_offset = 0; in MultiPop() local
1417 ld(ToRegister(i), MemOperand(sp, stack_offset)); in MultiPop()
[all …]
/external/v8/src/ppc/
Dmacro-assembler-ppc.cc230 int16_t stack_offset = num_to_push * kPointerSize; in MultiPush() local
232 subi(location, location, Operand(stack_offset)); in MultiPush()
235 stack_offset -= kPointerSize; in MultiPush()
236 StoreP(ToRegister(i), MemOperand(location, stack_offset)); in MultiPush()
243 int16_t stack_offset = 0; in MultiPop() local
247 LoadP(ToRegister(i), MemOperand(location, stack_offset)); in MultiPop()
248 stack_offset += kPointerSize; in MultiPop()
251 addi(location, location, Operand(stack_offset)); in MultiPop()
257 int16_t stack_offset = num_to_push * kDoubleSize; in MultiPushDoubles() local
259 subi(location, location, Operand(stack_offset)); in MultiPushDoubles()
[all …]
/external/mesa3d/src/gallium/auxiliary/rtasm/
Drtasm_x86sse.c580 p->stack_offset += sizeof(void*); in x86_push()
590 p->stack_offset += sizeof(void*); in x86_push_imm32()
600 p->stack_offset -= sizeof(void*); in x86_pop()
632 assert(p->stack_offset == 0); in x86_ret()
2120 p->stack_offset + arg * 8); in x86_fn_arg()
2139 p->stack_offset + (arg - 6) * 8); /* ??? */ in x86_fn_arg()
2143 p->stack_offset + arg * 4); /* ??? */ in x86_fn_arg()
Drtasm_x86sse.h56 unsigned stack_offset:16; member
/external/v8/src/ia32/
Dcodegen-ia32.cc226 int stack_offset = 0; // Update if we change the stack height. in CreateMemMoveFunction() local
232 stack_offset += 2 * kPointerSize; in CreateMemMoveFunction()
237 __ mov(dst, Operand(esp, stack_offset + kDestinationOffset)); in CreateMemMoveFunction()
238 __ mov(src, Operand(esp, stack_offset + kSourceOffset)); in CreateMemMoveFunction()
239 __ mov(count, Operand(esp, stack_offset + kSizeOffset)); in CreateMemMoveFunction()
/external/mesa3d/src/mesa/x86/rtasm/
Dx86sse.c317 p->stack_offset += 4; in x86_push()
325 p->stack_offset -= 4; in x86_pop()
1156 p->stack_offset + arg * 4); /* ??? */ in x86_fn_arg()
Dx86sse.h22 unsigned stack_offset; member
/external/bison/
DChangeLog-19989 * src/reader.c (stack_offset;): Change some warni to warns.
DChangeLog-201217967 (parse_guard): Rename the formal argument `stack_offset' as
23580 * src/reader.c (stack_offset;):