HomeSort by relevance Sort by last modified time
    Searched full:stacksize (Results 126 - 150 of 405) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/llvm/lib/Target/Mips/
MipsRegisterInfo.h 74 int FrameIndex, uint64_t StackSize,
MipsSERegisterInfo.cpp 107 uint64_t StackSize,
163 Offset = SPOffset + (int64_t)StackSize;
MipsSEFrameLowering.cpp 401 uint64_t StackSize = MFI->getStackSize();
404 if (StackSize == 0 && !MFI->adjustsStack()) return;
411 TII.adjustStackPtr(SP, -StackSize, MBB, MBBI);
413 // emit ".cfi_def_cfa_offset StackSize"
415 MCCFIInstruction::createDefCfaOffset(nullptr, -StackSize));
716 uint64_t StackSize = MFI->getStackSize();
718 if (!StackSize)
722 TII.adjustStackPtr(SP, StackSize, MBB, MBBI);
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcSubtarget.h 89 int getAdjustedFrameSize(int stackSize) const;
  /external/llvm/test/CodeGen/MIR/ARM/
cfi-same-value.mir 19 stackSize: 48
  /external/llvm/test/CodeGen/MIR/X86/
callee-saved-info.mir 48 stackSize: 24
expected-named-register-in-callee-saved-register.mir 46 stackSize: 24
expected-stack-object.mir 37 stackSize: 40
frame-info-stack-references.mir 38 stackSize: 40
  /external/llvm/test/CodeGen/PowerPC/
no-rlwimi-trivial-commute.mir 63 stackSize: 0
  /external/valgrind/helgrind/tests/
stackteardown.c 28 "\tmov 8(%esp), %ecx\n" // stackSize
  /external/javassist/src/main/javassist/bytecode/
Bytecode.java 129 * <p>The parameters <code>stacksize</code> and <code>localvars</code>
135 * @param stacksize <code>max_stack</code>.
138 public Bytecode(ConstPool cp, int stacksize, int localvars) {
140 maxStack = stacksize;
797 int stacksize = 0; local
801 stacksize += addLoad(stacksize + offset, params[i]);
804 return stacksize;
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 509 unsigned StackSize = 0;
554 PrevStackSize = StackSize;
555 StackSize = std::abs(Inst.getOffset()) / StackDivide;
607 StackSize - PrevStackSize == 1) ||
608 (Instrs.size() == 1 && NumDefCFAOffsets == 1 && StackSize == 2))
614 if ((StackSize & 0xFF) == StackSize) {
619 CompactUnwindEncoding |= (StackSize & 0xFF) << 16;
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationShrinker.java 738 int stackSize = tracedStack.size();
742 for (int stackIndex = stackSize - popCount; stackIndex < stackSize; stackIndex++)
    [all...]
  /external/valgrind/coregrind/m_initimg/
initimg-darwin.c 325 unsigned stacksize; /* total client stack size */ local
378 stacksize =
388 if (0) VG_(printf)("stacksize = %d\n", stacksize);
391 client_SP = clstack_end + 1 - stacksize;
410 VG_(printf)("stringsize=%d auxsize=%d stacksize=%d maxsize=0x%x\n"
413 stringsize, auxsize, stacksize, (Int)clstack_max_size,
initimg-solaris.c 392 SizeT stacksize; /* total client stack size */ local
473 stacksize =
484 client_SP = clstack_end - stacksize;
502 VG_(printf)("stringsize=%lu, auxsize=%lu, stacksize=%lu, maxsize=%#lx\n"
505 stringsize, auxsize, stacksize, clstack_max_size,
568 "This may be the result of a very large --main-stacksize=\n");
898 --main-stacksize value. This makes it possible to run programs with
900 --main-stacksize. */
904 - If a larger --main-stacksize value is specified, use that instead.
    [all...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
PduComposer.java     [all...]
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
PduComposer.java     [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_mac.cc 219 uptr stacksize = pthread_get_stacksize_np(pthread_self()); local
224 stacksize == (1 << 19)) {
229 stacksize = rl.rlim_cur;
231 stacksize = kMaxThreadStackSize;
236 *stack_bottom = *stack_top - stacksize;
  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 170 /// above. It then updates StackSize to contain the number of bytes that need
172 uint64_t StackSize;
267 StackSize = NumFixedObjects = OffsetAdjustment = MaxAlignment = 0;
453 uint64_t getStackSize() const { return StackSize; }
456 void setStackSize(uint64_t Size) { StackSize = Size; }
MIRYamlMapping.h 344 uint64_t StackSize = 0;
365 YamlIO.mapOptional("stackSize", MFI.StackSize);
  /external/llvm/include/llvm/IR/
DiagnosticInfo.h 166 unsigned StackSize;
171 DiagnosticInfoStackSize(const Function &Fn, unsigned StackSize,
173 : DiagnosticInfo(DK_StackSize, Severity), Fn(Fn), StackSize(StackSize) {}
176 unsigned getStackSize() const { return StackSize; }
  /external/valgrind/coregrind/m_ume/
macho.c 380 vki_size_t stacksize = VG_PGROUNDUP(default_stack_size()); local
381 vm_address_t stackbase = VG_PGROUNDDN(stack_end+1-stacksize);
384 res = VG_(am_mmap_anon_fixed_client)(stackbase, stacksize, VKI_PROT_READ|VKI_PROT_WRITE|VKI_PROT_EXEC);
385 check_mmap(res, stackbase, stacksize, "load_unixthread1");
583 err = handle_lcmain ( &stack_start, &stack_end, epcmd->stacksize );
  /prebuilts/go/darwin-x86/src/runtime/
os1_darwin.go 104 func newosproc0(stacksize uintptr, fn unsafe.Pointer, fnarg uintptr) {
105 stack := sysAlloc(stacksize, &memstats.stacks_sys)
110 stk := unsafe.Pointer(uintptr(stack) + stacksize)
  /prebuilts/go/linux-x86/src/runtime/
os1_darwin.go 104 func newosproc0(stacksize uintptr, fn unsafe.Pointer, fnarg uintptr) {
105 stack := sysAlloc(stacksize, &memstats.stacks_sys)
110 stk := unsafe.Pointer(uintptr(stack) + stacksize)

Completed in 1418 milliseconds

1 2 3 4 56 7 8 91011>>