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

1 2

  /external/llvm/lib/Target/Mips/
Mips16InstrInfo.h 78 /// Adjust SP by Amount bytes.
79 void adjustStackPtr(unsigned SP, int64_t Amount, MachineBasicBlock &MBB,
96 static bool validImmediate(unsigned Opcode, unsigned Reg, int64_t Amount);
117 // Adjust SP by Amount bytes where bytes can be up to 32bit number.
118 void adjustStackPtrBig(unsigned SP, int64_t Amount, MachineBasicBlock &MBB,
122 // Adjust SP by Amount bytes where bytes can be up to 32bit number.
123 void adjustStackPtrBigUnrestricted(unsigned SP, int64_t Amount,
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...]
Mips16FrameLowering.cpp 146 int64_t Amount = I->getOperand(0).getImm();
149 Amount = -Amount;
154 TII.adjustStackPtr(Mips::SP, Amount, MBB, I);
MipsSEInstrInfo.h 70 /// Adjust SP by Amount bytes.
71 void adjustStackPtr(unsigned SP, int64_t Amount, MachineBasicBlock &MBB,
MipsSEFrameLowering.cpp 486 int64_t Amount = I->getOperand(0).getImm();
489 Amount = -Amount;
492 TII.adjustStackPtr(SP, Amount, MBB, I);
MipsSEInstrInfo.cpp 313 /// Adjust SP by Amount bytes.
314 void MipsSEInstrInfo::adjustStackPtr(unsigned SP, int64_t Amount,
322 if (isInt<16>(Amount))// addi sp, sp, amount
323 BuildMI(MBB, I, DL, get(ADDiu), SP).addReg(SP).addImm(Amount);
325 unsigned Reg = loadImmediate(Amount, MBB, I, DL, 0);
  /external/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 313 uint64_t Amount = Old->getOperand(0).getImm();
314 if (Amount != 0) {
316 // amount of space needed for the outgoing arguments up to the next
319 Amount = (Amount+Align-1)/Align*Align;
321 assert(Amount%4 == 0);
322 Amount /= 4;
324 bool isU6 = isImmU6(Amount);
325 if (!isU6 && !isImmU16(Amount)) {
329 << Amount << "\n"
    [all...]
  /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/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.c 53 float Amount;
119 float amount; local
156 amount = rc_get_constant_value(count_inst->C,
167 count_inst->Amount += amount;
174 count_inst->Amount -= amount;
232 count_inst.Amount = 0.0f;
272 if(count_inst.Amount == 0.0f){
275 DBG("Counter is increased by %f each iteration.\n", count_inst.Amount);
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.c 53 float Amount;
119 float amount; local
156 amount = rc_get_constant_value(count_inst->C,
167 count_inst->Amount += amount;
174 count_inst->Amount -= amount;
232 count_inst.Amount = 0.0f;
272 if(count_inst.Amount == 0.0f){
275 DBG("Counter is increased by %f each iteration.\n", count_inst.Amount);
    [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 249 // ... otherwise the amount to pop is *all* of the argument space,
435 // A certain amount of implicit contract is present here. The actual stack
612 int64_t Amount = MI->getOperand(0).getImm();
613 Amount = RoundUpToAlignment(Amount, Align);
614 if (!IsDestroy) Amount = -Amount;
624 assert(Amount > -0xfff && Amount < 0xfff && "call frame too large");
625 emitSPUpdate(MBB, MI, dl, TII, AArch64::NoRegister, Amount);
    [all...]
  /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;
674 // Valid shift amount is 0, 8, 16 and 24.
675 return ShiftExtend.Amount % 8 == 0 && ShiftExtend.Amount <= 24
    [all...]
  /external/chromium_org/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/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/X86/
X86FrameLowering.cpp 319 // Calculate amount of bytes used for return address storing.
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/image_editor/
exif_encoder.js 454 * Skips desired amount of bytes in output stream.
465 * @param {number} width Amount of bytes to check.
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]
  /external/chromium_org/chrome/browser/resources/history/
history.js 12 // Amount of time between pageviews that we consider a 'break' in browsing,
    [all...]
  /external/chromium_org/v8/test/mjsunit/
unicode-test.js     [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...]

Completed in 451 milliseconds

1 2