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

  /external/llvm/lib/Target/R600/
R600MachineFunctionInfo.h 28 unsigned StackSize;
  /external/llvm/lib/Target/Mips/
Mips16FrameLowering.cpp 37 uint64_t StackSize = MFI->getStackSize();
40 if (StackSize == 0 && !MFI->adjustsStack()) return;
47 TII.makeFrame(Mips::SP, StackSize, MBB, MBBI);
49 // emit ".cfi_def_cfa_offset StackSize"
54 MCCFIInstruction::createDefCfaOffset(AdjustSPLabel, -StackSize));
84 uint64_t StackSize = MFI->getStackSize();
86 if (!StackSize)
94 // assumes stacksize multiple of 8
95 TII.restoreFrame(Mips::SP, StackSize, MBB, MBBI);
MipsSEFrameLowering.cpp 282 uint64_t StackSize = MFI->getStackSize();
285 if (StackSize == 0 && !MFI->adjustsStack()) return;
292 TII.adjustStackPtr(SP, -StackSize, MBB, MBBI);
294 // emit ".cfi_def_cfa_offset StackSize"
299 MCCFIInstruction::createDefCfaOffset(AdjustSPLabel, -StackSize));
426 uint64_t StackSize = MFI->getStackSize();
428 if (!StackSize)
432 TII.adjustStackPtr(SP, StackSize, MBB, MBBI);
  /external/llvm/lib/Target/NVPTX/
NVPTXPrologEpilogPass.cpp 223 int64_t StackSize = Offset - LocalAreaOffset;
224 MFI->setStackSize(StackSize);
  /external/compiler-rt/lib/asan/
asan_fake_stack.h 81 uptr StackSize() const { return stack_size_; }
  /external/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp 52 uint64_t StackSize = MFI->getStackSize();
57 uint64_t FrameSize = StackSize - 2;
79 NumBytes = StackSize - MSP430FI->getCalleeSavedFrameSize();
125 uint64_t StackSize = MFI->getStackSize();
131 uint64_t FrameSize = StackSize - 2;
137 NumBytes = StackSize - CSSize;
  /external/llvm/lib/Target/XCore/
XCoreRegisterInfo.cpp 118 int StackSize = MF.getFrameInfo()->getStackSize();
127 DEBUG(errs() << "StackSize : " << StackSize << "\n");
130 Offset += StackSize;
  /external/llvm/lib/Target/SystemZ/
SystemZFrameLowering.cpp 350 uint64_t StackSize = getAllocatedStackSize(MF);
351 if (StackSize) {
352 // Allocate StackSize bytes.
353 int64_t Delta = -int64_t(StackSize);
426 uint64_t StackSize = getAllocatedStackSize(MF);
435 uint64_t Offset = StackSize + MBBI->getOperand(AddrOpNo + 1).getImm();
451 } else if (StackSize) {
453 emitIncrement(MBB, MBBI, DL, SystemZ::R15D, StackSize, ZII);
487 uint64_t StackSize = MFFrame->getStackSize();
492 if (StackSize || MFFrame->hasVarSizedObjects() || MFFrame->hasCalls()
    [all...]
SystemZISelLowering.cpp 657 int64_t StackSize = CCInfo.getNextStackOffset();
658 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize, true));
    [all...]
  /external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp 687 int64_t StackSize = Offset - LocalAreaOffset;
688 MFI->setStackSize(StackSize);
689 NumBytesStackSpace += StackSize;
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 148 /// StackSize - The prolog/epilog code inserter calculates the final stack
150 /// above. It then updates StackSize to contain the number of bytes that need
153 uint64_t StackSize;
230 StackSize = NumFixedObjects = OffsetAdjustment = MaxAlignment = 0;
417 uint64_t getStackSize() const { return StackSize; }
421 void setStackSize(uint64_t Size) { StackSize = Size; }
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFrameLowering.cpp     [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
nasm-pp.c 287 "%scope", "%stacksize",
338 static int StackSize = 4;
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 296 milliseconds