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() {
  /external/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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
GCMetadata.h 88 uint64_t FrameSize;
132 uint64_t getFrameSize() const { return FrameSize; }
133 void setFrameSize(uint64_t S) { FrameSize = S; }
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/RISCV/
RISCVFrameLowering.cpp 40 uint64_t FrameSize = MFI.getStackSize();
47 FrameSize = alignTo(FrameSize, StackAlign);
50 MFI.setStackSize(FrameSize);
  /art/compiler/jni/quick/arm/
calling_convention_arm.cc 361 size_t ArmJniCallingConvention::FrameSize() {
  /art/compiler/jni/quick/arm64/
calling_convention_arm64.cc 269 size_t Arm64JniCallingConvention::FrameSize() {
  /art/compiler/jni/quick/mips/
calling_convention_mips.cc 337 size_t MipsJniCallingConvention::FrameSize() {
  /art/compiler/jni/quick/x86/
calling_convention_x86.cc 215 size_t X86JniCallingConvention::FrameSize() {
  /art/compiler/jni/quick/x86_64/
calling_convention_x86_64.cc 197 size_t X86_64JniCallingConvention::FrameSize() {
  /external/llvm/include/llvm/CodeGen/
GCMetadata.h 83 uint64_t FrameSize;
130 uint64_t getFrameSize() const { return FrameSize; }
131 void setFrameSize(uint64_t S) { FrameSize = S; }
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
GCMetadata.h 91 uint64_t FrameSize;
133 uint64_t getFrameSize() const { return FrameSize; }
134 void setFrameSize(uint64_t S) { FrameSize = S; }
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
MBlazeFrameLowering.cpp 311 unsigned FrameSize = MFI->getStackSize();
312 DEBUG(dbgs() << "Original Frame Size: " << FrameSize << "\n" );
321 FrameSize = (FrameSize + AlignMask) & ~AlignMask;
322 MFI->setStackSize(FrameSize);
323 DEBUG(dbgs() << "Aligned Frame Size: " << FrameSize << "\n" );
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCRegisterInfo.cpp 335 /// addi R0, SP, \#frameSize ; get the address of the previous frame
356 unsigned FrameSize = MFI->getStackSize();
364 // Determine the previous frame's address. If FrameSize can't be
381 if (MaxAlign < TargetAlign && isInt<16>(FrameSize)) {
384 .addImm(FrameSize);

Completed in 595 milliseconds

1 2