HomeSort by relevance Sort by last modified time
    Searched refs:Amount (Results 1 - 21 of 21) sorted by null

  /external/llvm/lib/Target/Mips/
Mips16InstrInfo.h 76 /// Adjust SP by Amount bytes.
77 void adjustStackPtr(unsigned SP, int64_t Amount, MachineBasicBlock &MBB,
108 // Adjust SP by Amount bytes where bytes can be up to 32bit number.
109 void adjustStackPtrBig(unsigned SP, int64_t Amount, MachineBasicBlock &MBB,
113 // Adjust SP by Amount bytes where bytes can be up to 32bit number.
114 void adjustStackPtrBigUnrestricted(unsigned SP, int64_t Amount,
Mips16FrameLowering.cpp 147 int64_t Amount = I->getOperand(0).getImm();
150 Amount = -Amount;
155 TII.adjustStackPtr(Mips::SP, Amount, MBB, I);
MipsSEInstrInfo.h 68 /// Adjust SP by Amount bytes.
69 void adjustStackPtr(unsigned SP, int64_t Amount, MachineBasicBlock &MBB,
Mips16InstrInfo.cpp 258 // Adjust SP by Amount bytes where bytes can be up to 32bit number.
263 void Mips16InstrInfo::adjustStackPtrBig(unsigned SP, int64_t Amount,
279 MIB1.addImm(Amount);
290 void Mips16InstrInfo::adjustStackPtrBigUnrestricted(unsigned SP, int64_t Amount,
293 assert(false && "adjust stack pointer amount exceeded");
296 /// Adjust SP by Amount bytes.
297 void Mips16InstrInfo::adjustStackPtr(unsigned SP, int64_t Amount,
300 if (isInt<16>(Amount)) // need to change to addiu sp, ....and isInt<16>
301 BuildAddiuSpImm(MBB, I, Amount);
303 adjustStackPtrBigUnrestricted(SP, Amount, MBB, I)
    [all...]
MipsSEFrameLowering.cpp 260 int64_t Amount = I->getOperand(0).getImm();
263 Amount = -Amount;
266 TII.adjustStackPtr(SP, Amount, MBB, I);
MipsSEInstrInfo.cpp 255 /// Adjust SP by Amount bytes.
256 void MipsSEInstrInfo::adjustStackPtr(unsigned SP, int64_t Amount,
264 if (isInt<16>(Amount))// addi sp, sp, amount
265 BuildMI(MBB, I, DL, get(ADDiu), SP).addReg(SP).addImm(Amount);
267 unsigned Reg = loadImmediate(Amount, MBB, I, DL, 0);
  /external/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp 238 uint64_t Amount = Old->getOperand(0).getImm();
239 if (Amount != 0) {
241 // amount of space needed for the outgoing arguments up to the next
243 Amount = (Amount+StackAlign-1)/StackAlign*StackAlign;
249 .addReg(MSP430::SPW).addImm(Amount);
252 // factor out the amount the callee already popped.
254 Amount -= CalleeAmt;
255 if (Amount)
258 .addReg(MSP430::SPW).addImm(Amount);
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 346 uint64_t Amount = Old->getOperand(0).getImm();
347 if (Amount != 0) {
349 // amount of space needed for the outgoing arguments up to the next
352 Amount = (Amount+Align-1)/Align*Align;
354 assert(Amount%4 == 0);
355 Amount /= 4;
357 bool isU6 = isImmU6(Amount);
358 if (!isU6 && !isImmU16(Amount)) {
362 << Amount << "\n"
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb1FrameLowering.cpp 56 // ADJCALLSTACKDOWN -> sub, sp, sp, amount
57 // ADJCALLSTACKUP -> add, sp, sp, amount
60 unsigned Amount = Old->getOperand(0).getImm();
61 if (Amount != 0) {
63 // amount of space needed for the outgoing arguments up to the next
66 Amount = (Amount+Align-1)/Align*Align;
71 emitSPUpdate(MBB, I, TII, dl, *RegInfo, -Amount);
74 emitSPUpdate(MBB, I, TII, dl, *RegInfo, Amount);
ARMFrameLowering.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FrameLowering.cpp 248 // ... otherwise the amount to pop is *all* of the argument space,
433 // A certain amount of implicit contract is present here. The actual stack
610 int64_t Amount = MI->getOperand(0).getImm();
611 Amount = RoundUpToAlignment(Amount, Align);
612 if (!IsDestroy) Amount = -Amount;
622 assert(Amount > -0xfff && Amount < 0xfff && "call frame too large");
623 emitSPUpdate(MBB, MI, dl, TII, AArch64::NoRegister, Amount);
    [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeFrameLowering.cpp 440 int Amount = Old->getOperand(0).getImm() + 4;
441 if (Amount != 0) {
443 // amount of space needed for the outgoing arguments up to the next
446 Amount = (Amount+Align-1)/Align*Align;
451 .addReg(MBlaze::R1).addImm(-Amount);
455 .addReg(MBlaze::R1).addImm(Amount);
  /external/v8/tools/
profile_view.js 90 * @param {number} totalTime Amount of time that application spent in the
93 * @param {number} selfTime Amount of time that application spent in the
152 * @param {number} totalTime Amount of time that application spent in the
155 * @param {number} selfTime Amount of time that application spent in the
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 187 unsigned Amount;
313 return ShiftExtend.Amount == Log2_32(MemSize) || ShiftExtend.Amount == 0;
453 return is64Bit ? ShiftExtend.Amount <= 63 : ShiftExtend.Amount <= 31;
655 return ShiftExtend.Amount <= 4;
664 return !ShiftExtend.ImplicitAmount && ShiftExtend.Amount <= 4;
752 unsigned Amount,
757 Op->ShiftExtend.Amount = Amount;
    [all...]
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp 319 // Calculate amount of bytes used for return address storing.
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]
  /external/e2fsprogs/lib/et/
texinfo.tex     [all...]
  /external/grub/docs/
texinfo.tex 795 % This records the amount of indent in the innermost environment.
    [all...]
  /external/bison/build-aux/
texinfo.tex 754 % This records the amount of indent in the innermost environment.
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
texinfo.tex 863 % This records the amount of indent in the innermost environment.
    [all...]

Completed in 1208 milliseconds