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

1 2 3

  /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/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/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...]
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
XCoreFrameLowering.cpp 111 int FrameSize = MFI->getStackSize();
112 assert(FrameSize%4 == 0 && "Misaligned frame size");
113 FrameSize/=4;
115 bool isU6 = isImmU6(FrameSize);
117 if (!isU6 && !isImmU16(FrameSize)) {
119 report_fatal_error("emitPrologue Frame size too big: " + Twine(FrameSize));
124 if (FrameSize) {
136 BuildMI(MBB, MBBI, dl, TII.get(Opcode)).addImm(FrameSize);
146 MachineLocation SPSrc(MachineLocation::VirtualFP, -FrameSize * 4);
157 storeToStack(MBB, MBBI, XCore::LR, LRSpillOffset + FrameSize*4, dl, TII)
    [all...]
  /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/Target/Lanai/
LanaiFrameLowering.cpp 33 unsigned FrameSize = MFI->getStackSize();
52 FrameSize += MaxCallFrameSize;
55 FrameSize = alignTo(FrameSize, StackAlign);
58 MFI->setStackSize(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/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/PowerPC/
PPCFrameLowering.cpp 177 unsigned FrameSize = MFI->getStackSize();
191 FrameSize <= 224 && // Fits in red zone.
217 FrameSize += maxCallFrameSize;
220 FrameSize = (FrameSize + AlignMask) & ~AlignMask;
223 MFI->setStackSize(FrameSize);
283 unsigned FrameSize = MFI->getStackSize();
285 int NegFrameSize = -FrameSize;
344 if (!FrameSize) return;
528 int FrameSize = MFI->getStackSize()
    [all...]
  /external/llvm/lib/Transforms/Utils/
ASanStackFrameLayout.cpp 105 Layout->FrameSize = Offset;
106 assert((Layout->FrameSize % MinHeaderSize) == 0);
107 assert(Layout->FrameSize / Granularity == Layout->ShadowBytes.size());
  /external/llvm/lib/Target/Mips/
Mips16InstrInfo.h 68 // Adjust SP by FrameSize bytes. Save RA, S0, S1
69 void makeFrame(unsigned SP, int64_t FrameSize, MachineBasicBlock &MBB,
72 // Adjust SP by FrameSize bytes. Restore RA, S0, S1
73 void restoreFrame(unsigned SP, int64_t FrameSize, MachineBasicBlock &MBB,
Mips16InstrInfo.cpp 193 // Adjust SP by FrameSize bytes. Save RA, S0, S1
194 void Mips16InstrInfo::makeFrame(unsigned SP, int64_t FrameSize,
203 unsigned Opc = ((FrameSize <= 128) && !SaveS2)? Mips::Save16:Mips::SaveX16;
209 if (isUInt<11>(FrameSize))
210 MIB.addImm(FrameSize);
214 int64_t Remainder = FrameSize - Base;
223 // Adjust SP by FrameSize bytes. Restore RA, S0, S1
224 void Mips16InstrInfo::restoreFrame(unsigned SP, int64_t FrameSize,
233 unsigned Opc = ((FrameSize <= 128) && !SaveS2)?
236 if (!isUInt<11>(FrameSize)) {
    [all...]
  /art/compiler/jni/quick/arm/
calling_convention_arm.h 66 size_t FrameSize() OVERRIDE;
  /art/compiler/jni/quick/arm64/
calling_convention_arm64.h 65 size_t FrameSize() OVERRIDE;
  /art/compiler/jni/quick/mips/
calling_convention_mips.h 68 size_t FrameSize() OVERRIDE;
  /art/compiler/jni/quick/mips64/
calling_convention_mips64.h 67 size_t FrameSize() OVERRIDE;
  /art/compiler/jni/quick/x86/
calling_convention_x86.h 68 size_t FrameSize() OVERRIDE;
  /art/compiler/jni/quick/x86_64/
calling_convention_x86_64.h 61 size_t FrameSize() OVERRIDE;
  /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/webrtc/webrtc/sound/
alsasoundsystem.h 65 static size_t FrameSize(const OpenParams &params);
  /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/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 100 int OffsetFromTop, int &Adjusted, int FrameSize,
103 assert(Adjusted < FrameSize && "OffsetFromTop is beyond FrameSize");
104 int remaining = FrameSize - Adjusted;
126 assert(RemainingAdj && "OffsetFromTop is beyond FrameSize");
245 // We will adjust the SP in stages towards the final FrameSize.
247 const int FrameSize = MFI->getStackSize() / 4;
251 bool UseENTSP = saveLR && FrameSize
260 Adjusted = (FrameSize > MaxImmU16) ? MaxImmU16 : FrameSize;
    [all...]
  /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" );

Completed in 912 milliseconds

1 2 3