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

  /external/llvm/lib/Target/MBlaze/
MBlazeRegisterInfo.cpp 97 int Amount = Old->getOperand(0).getImm() + 4;
98 if (Amount != 0) {
100 // amount of space needed for the outgoing arguments up to the next
103 Amount = (Amount+Align-1)/Align*Align;
108 .addReg(MBlaze::R1).addImm(-Amount);
112 .addReg(MBlaze::R1).addImm(Amount);
  /external/llvm/lib/Target/XCore/
XCoreRegisterInfo.cpp 110 uint64_t Amount = Old->getOperand(0).getImm();
111 if (Amount != 0) {
113 // amount of space needed for the outgoing arguments up to the next
116 Amount = (Amount+Align-1)/Align*Align;
118 assert(Amount%4 == 0);
119 Amount /= 4;
121 bool isU6 = isImmU6(Amount);
122 if (!isU6 && !isImmU16(Amount)) {
126 << Amount << "\n"
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430RegisterInfo.cpp 114 uint64_t Amount = Old->getOperand(0).getImm();
115 if (Amount != 0) {
117 // amount of space needed for the outgoing arguments up to the next
119 Amount = (Amount+StackAlign-1)/StackAlign*StackAlign;
125 .addReg(MSP430::SPW).addImm(Amount);
128 // factor out the amount the callee already popped.
130 Amount -= CalleeAmt;
131 if (Amount)
134 .addReg(MSP430::SPW).addImm(Amount);
    [all...]
  /external/llvm/lib/Target/X86/
X86RegisterInfo.cpp 399 uint64_t Amount = !reseveCallFrame ? I->getOperand(0).getImm() : 0;
408 if (Amount == 0)
412 // amount of space needed for the outgoing arguments up to the next
415 Amount = (Amount + StackAlign - 1) / StackAlign * StackAlign;
419 New = BuildMI(MF, DL, TII.get(getSUBriOpcode(Is64Bit, Amount)),
422 .addImm(Amount);
426 // Factor out the amount the callee already popped.
427 Amount -= CalleeAmt;
429 if (Amount) {
    [all...]
  /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/ARM/
Thumb1RegisterInfo.cpp 314 // ADJCALLSTACKDOWN -> sub, sp, sp, amount
315 // ADJCALLSTACKUP -> add, sp, sp, amount
318 unsigned Amount = Old->getOperand(0).getImm();
319 if (Amount != 0) {
321 // amount of space needed for the outgoing arguments up to the next
324 Amount = (Amount+Align-1)/Align*Align;
329 emitSPUpdate(MBB, I, TII, dl, *this, -Amount);
332 emitSPUpdate(MBB, I, TII, dl, *this, Amount);
ARMBaseRegisterInfo.cpp 745 // ADJCALLSTACKDOWN -> sub, sp, sp, amount
746 // ADJCALLSTACKUP -> add, sp, sp, amount
749 unsigned Amount = Old->getOperand(0).getImm();
750 if (Amount != 0) {
752 // amount of space needed for the outgoing arguments up to the next
755 Amount = (Amount+Align-1)/Align*Align;
770 emitSPUpdate(isARM, MBB, I, dl, TII, -Amount, Pred, PredReg);
775 emitSPUpdate(isARM, MBB, I, dl, TII, Amount, Pred, PredReg);
    [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...]
  /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 2572 milliseconds