HomeSort by relevance Sort by last modified time
    Searched defs:FrameSize (Results 1 - 25 of 48) sorted by null

1 2

  /external/llvm/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 47 size_t FrameSize; // Size of the frame in bytes.
57 // The resulting FrameSize should be multiple of MinHeaderSize.
  /external/llvm/lib/CodeGen/AsmPrinter/
OcamlGCPrinter.cpp 84 /// uint16_t FrameSize;
91 /// (FrameSize and LiveOffsets would overflow). FrameTablePrinter will abort if
138 uint64_t FrameSize = FI.getFrameSize();
139 if (FrameSize >= 1 << 16) {
144 Twine(FrameSize) + ">= 65536.\n"
164 AP.EmitInt16(FrameSize);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
OcamlGCPrinter.cpp 83 /// uint16_t FrameSize;
90 /// (FrameSize and LiveOffsets would overflow). FrameTablePrinter will abort if
126 uint64_t FrameSize = FI.getFrameSize();
127 if (FrameSize >= 1<<16) {
131 "Frame size " + Twine(FrameSize) + ">= 65536.\n"
149 AP.EmitInt16(FrameSize);
  /external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
BlackfinFrameLowering.cpp 54 int FrameSize = MFI->getStackSize();
55 if (FrameSize%4) {
56 FrameSize = (FrameSize+3) & ~3;
57 MFI->setStackSize(FrameSize);
63 RegInfo->adjustRegister(MBB, MBBI, dl, BF::SP, BF::P1, -FrameSize);
68 if (FrameSize <= 0x3ffff) {
69 BuildMI(MBB, MBBI, dl, TII.get(BF::LINK)).addImm(FrameSize);
77 // P1 = -FrameSize;
85 RegInfo->loadConstant(MBB, MBBI, dl, BF::P1, -FrameSize);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
OcamlGCPrinter.cpp 89 /// uint16_t FrameSize;
96 /// (FrameSize and LiveOffsets would overflow). FrameTablePrinter will abort if
143 uint64_t FrameSize = FI.getFrameSize();
144 if (FrameSize >= 1 << 16) {
149 Twine(FrameSize) + ">= 65536.\n"
169 AP.emitInt16(FrameSize);
  /external/llvm/lib/Target/Lanai/
LanaiFrameLowering.cpp 33 unsigned FrameSize = MFI->getStackSize();
52 FrameSize += MaxCallFrameSize;
55 FrameSize = alignTo(FrameSize, StackAlign);
58 MFI->setStackSize(FrameSize);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 48 size_t FrameSize; // Size of the frame in bytes.
58 // The resulting FrameSize should be multiple of MinHeaderSize.
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Lanai/
LanaiFrameLowering.cpp 33 unsigned FrameSize = MFI.getStackSize();
52 FrameSize += MaxCallFrameSize;
55 FrameSize = alignTo(FrameSize, StackAlign);
58 MFI.setStackSize(FrameSize);
  /external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
SPUFrameLowering.cpp 60 unsigned FrameSize = MFI->getStackSize();
81 FrameSize += maxCallFrameSize;
84 FrameSize = (FrameSize + AlignMask) & ~AlignMask;
87 MFI->setStackSize(FrameSize);
108 int FrameSize = MFI->getStackSize();
110 assert((FrameSize & 0xf) == 0
111 && "SPURegisterInfo::emitPrologue: FrameSize not aligned");
114 if (FrameSize > 16 || MFI->adjustsStack()) {
115 FrameSize = -(FrameSize + SPUFrameLowering::minStackSize())
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/MSP430/
MSP430FrameLowering.cpp 57 uint64_t FrameSize = StackSize - 2;
58 NumBytes = FrameSize - MSP430FI->getCalleeSavedFrameSize();
131 uint64_t FrameSize = StackSize - 2;
132 NumBytes = FrameSize - CSSize;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp 58 uint64_t FrameSize = StackSize - 2;
59 NumBytes = FrameSize - MSP430FI->getCalleeSavedFrameSize();
132 uint64_t FrameSize = StackSize - 2;
133 NumBytes = FrameSize - CSSize;
  /external/webrtc/webrtc/modules/video_coding/
jitter_estimator_tests.cc 54 uint32_t FrameSize() { return 1000 + Delay(); }
68 regular_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
70 low_rate_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
85 regular_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
87 low_rate_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
102 regular_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
104 low_rate_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
119 regular_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
121 low_rate_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
134 regular_estimator_.UpdateEstimate(low_gen.Delay(), low_gen.FrameSize());
    [all...]
  /art/compiler/jni/quick/mips64/
calling_convention_mips64.cc 181 size_t Mips64JniCallingConvention::FrameSize() {