/external/llvm/lib/Target/XCore/ |
XCoreFrameLowering.cpp | 107 int FrameSize = MFI->getStackSize(); 108 assert(FrameSize%4 == 0 && "Misaligned frame size"); 109 FrameSize/=4; 111 bool isU6 = isImmU6(FrameSize); 113 if (!isU6 && !isImmU16(FrameSize)) { 115 report_fatal_error("emitPrologue Frame size too big: " + Twine(FrameSize)); 121 if (FrameSize) { 130 BuildMI(MBB, MBBI, dl, TII.get(Opcode)).addImm(FrameSize); 141 storeToStack(MBB, MBBI, XCore::LR, LRSpillOffset + FrameSize*4, dl, TII); 153 storeToStack(MBB, MBBI, XCore::R10, FPSpillOffset + FrameSize*4, dl, TII) [all...] |
/external/llvm/include/llvm/CodeGen/ |
GCMetadata.h | 92 uint64_t FrameSize; 139 uint64_t getFrameSize() const { return FrameSize; } 140 void setFrameSize(uint64_t S) { FrameSize = S; }
|
/art/compiler/jni/quick/x86/ |
calling_convention_x86.h | 55 virtual size_t FrameSize();
|
calling_convention_x86.cc | 125 size_t X86JniCallingConvention::FrameSize() {
|
/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);
|
/external/llvm/lib/Target/Mips/ |
Mips16InstrInfo.h | 69 // Adjust SP by FrameSize bytes. Save RA, S0, S1 70 void makeFrame(unsigned SP, int64_t FrameSize, MachineBasicBlock &MBB, 73 // Adjust SP by FrameSize bytes. Restore RA, S0, S1 74 void restoreFrame(unsigned SP, int64_t FrameSize, MachineBasicBlock &MBB,
|
Mips16InstrInfo.cpp | 173 // Adjust SP by FrameSize bytes. Save RA, S0, S1 174 void Mips16InstrInfo::makeFrame(unsigned SP, int64_t FrameSize, 179 if (isUInt<11>(FrameSize)) 180 BuildMI(MBB, I, DL, get(Mips::SaveRaF16)).addImm(FrameSize); 184 int64_t Remainder = FrameSize - Base; 211 adjustStackPtrBig(SP, -FrameSize, MBB, I, Mips::V0, Mips::V1); 215 // Adjust SP by FrameSize bytes. Restore RA, S0, S1 216 void Mips16InstrInfo::restoreFrame(unsigned SP, int64_t FrameSize, 221 if (isUInt<11>(FrameSize)) 222 BuildMI(MBB, I, DL, get(Mips::RestoreRaF16)).addImm(FrameSize); [all...] |
/art/compiler/jni/quick/arm/ |
calling_convention_arm.h | 57 virtual size_t FrameSize();
|
calling_convention_arm.cc | 144 size_t ArmJniCallingConvention::FrameSize() {
|
/art/compiler/jni/quick/mips/ |
calling_convention_mips.h | 56 virtual size_t FrameSize();
|
calling_convention_mips.cc | 148 size_t MipsJniCallingConvention::FrameSize() {
|
/external/chromium_org/third_party/libjingle/source/talk/sound/ |
alsasoundsystem.h | 82 static size_t FrameSize(const OpenParams ¶ms);
|
alsasoundsystem.cc | 626 inline size_t AlsaSoundSystem::FrameSize(const OpenParams ¶ms) { 678 FrameSize(params); 708 FrameSize(params),
|
/external/llvm/lib/Target/Hexagon/ |
HexagonFrameLowering.cpp | 50 unsigned FrameSize = MFI->getStackSize(); 66 FrameSize += maxCallFrameSize; 69 FrameSize = RoundUpToAlignment(FrameSize, TargetAlign); 72 MFI->setStackSize(FrameSize);
|
HexagonRegisterInfo.cpp | 143 const unsigned FrameSize = MFI.getStackSize(); 146 TII.isValidOffset(MI.getOpcode(), (FrameSize+Offset)) && 151 MI.getOperand(FIOperandNum + 1).ChangeToImmediate(FrameSize+Offset); 233 TII.isValidOffset(MI.getOpcode(), (FrameSize+Offset))) { 236 MI.getOperand(FIOperandNum+1).ChangeToImmediate(FrameSize+Offset);
|
HexagonVLIWPacketizer.cpp | [all...] |
/external/llvm/lib/Target/PowerPC/ |
PPCFrameLowering.cpp | 204 unsigned FrameSize = 226 FrameSize == 0) && 227 FrameSize <= 224 && // Fits in red zone. 255 FrameSize += maxCallFrameSize; 258 FrameSize = (FrameSize + AlignMask) & ~AlignMask; 262 MFI->setStackSize(FrameSize); 264 return FrameSize; 366 unsigned FrameSize = determineFrameLayout(MF); 367 int NegFrameSize = -FrameSize; [all...] |
PPCRegisterInfo.cpp | 245 /// addi R0, SP, \#frameSize ; get the address of the previous frame 267 unsigned FrameSize = MFI->getStackSize(); 275 // Determine the previous frame's address. If FrameSize can't be 285 if (MaxAlign < TargetAlign && isInt<16>(FrameSize)) { 288 .addImm(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;
|
/art/compiler/jni/quick/ |
calling_convention.h | 217 virtual size_t FrameSize() = 0;
|
jni_compiler.cc | 97 const size_t frame_size(main_jni_conv->FrameSize());
|
/external/llvm/lib/CodeGen/ |
GCMetadata.cpp | 51 : F(F), S(S), FrameSize(~0LL) {}
|
/external/llvm/lib/Target/X86/ |
X86FrameLowering.cpp | 739 uint64_t FrameSize = StackSize - SlotSize; 743 FrameSize -= X86FI->getCalleeSavedFrameSize(); 744 NumBytes = (FrameSize + MaxAlign - 1) / MaxAlign * MaxAlign; 746 NumBytes = FrameSize - X86FI->getCalleeSavedFrameSize(); [all...] |
/external/llvm/lib/Target/NVPTX/ |
NVPTXAsmPrinter.h | 221 void emitFunctionTempData(const MachineFunction &MF, unsigned &FrameSize);
|
/external/chromium_org/media/base/ |
audio_buffer_unittest.cc | 44 TEST(AudioBufferTest, FrameSize) {
|