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

  /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 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);
  /art/compiler/jni/quick/x86/
calling_convention_x86.cc 125 size_t X86JniCallingConvention::FrameSize() {
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
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/llvm/lib/Target/Hexagon/
HexagonRegisterInfo.cpp 142 const unsigned FrameSize = MFI.getStackSize();
145 TII.isValidOffset(MI.getOpcode(), (FrameSize+Offset)) &&
150 MI.getOperand(FIOperandNum + 1).ChangeToImmediate(FrameSize+Offset);
232 TII.isValidOffset(MI.getOpcode(), (FrameSize+Offset))) {
235 MI.getOperand(FIOperandNum+1).ChangeToImmediate(FrameSize+Offset);
HexagonFrameLowering.cpp 50 unsigned FrameSize = MFI->getStackSize();
66 FrameSize += maxCallFrameSize;
69 FrameSize = RoundUpToAlignment(FrameSize, TargetAlign);
72 MFI->setStackSize(FrameSize);
HexagonVLIWPacketizer.cpp     [all...]
  /art/compiler/jni/quick/arm/
calling_convention_arm.cc 144 size_t ArmJniCallingConvention::FrameSize() {
  /art/compiler/jni/quick/arm64/
calling_convention_arm64.cc 196 size_t Arm64JniCallingConvention::FrameSize() {
  /art/compiler/jni/quick/mips/
calling_convention_mips.cc 148 size_t MipsJniCallingConvention::FrameSize() {
  /art/compiler/jni/quick/x86_64/
calling_convention_x86_64.cc 148 size_t X86_64JniCallingConvention::FrameSize() {
  /external/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/llvm/include/llvm/CodeGen/
GCMetadata.h 94 uint64_t FrameSize;
141 uint64_t getFrameSize() const { return FrameSize; }
142 void setFrameSize(uint64_t S) { FrameSize = S; }
  /external/llvm/lib/Target/PowerPC/
PPCRegisterInfo.cpp 267 /// addi R0, SP, \#frameSize ; get the address of the previous frame
289 unsigned FrameSize = MFI->getStackSize();
297 // Determine the previous frame's address. If FrameSize can't be
307 if (MaxAlign < TargetAlign && isInt<16>(FrameSize)) {
310 .addImm(FrameSize);
    [all...]
PPCFrameLowering.cpp 366 unsigned FrameSize =
387 FrameSize == 0) &&
388 FrameSize <= 224 && // Fits in red zone.
416 FrameSize += maxCallFrameSize;
419 FrameSize = (FrameSize + AlignMask) & ~AlignMask;
423 MFI->setStackSize(FrameSize);
425 return FrameSize;
532 unsigned FrameSize = determineFrameLayout(MF);
533 int NegFrameSize = -FrameSize;
    [all...]
  /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/chromium_org/third_party/webrtc/sound/
alsasoundsystem.cc 609 inline size_t AlsaSoundSystem::FrameSize(const OpenParams &params) {
661 FrameSize(params);
691 FrameSize(params),
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]

Completed in 669 milliseconds