HomeSort by relevance Sort by last modified time
    Searched refs:Amount (Results 1 - 25 of 38) 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,
91 static bool validImmediate(unsigned Opcode, unsigned Reg, int64_t Amount);
114 // Adjust SP by Amount bytes where bytes can be up to 32bit number.
115 void adjustStackPtrBig(unsigned SP, int64_t Amount, MachineBasicBlock &MBB,
119 // Adjust SP by Amount bytes where bytes can be up to 32bit number.
120 void adjustStackPtrBigUnrestricted(unsigned SP, int64_t Amount,
MipsFrameLowering.cpp 153 int64_t Amount = I->getOperand(0).getImm();
155 Amount = -Amount;
157 STI.getInstrInfo()->adjustStackPtr(SP, Amount, MBB, I);
Mips16InstrInfo.cpp 257 // Adjust SP by Amount bytes where bytes can be up to 32bit number.
262 void Mips16InstrInfo::adjustStackPtrBig(unsigned SP, int64_t Amount,
275 MIB1.addImm(Amount).addImm(-1);
287 unsigned SP, int64_t Amount, MachineBasicBlock &MBB,
289 llvm_unreachable("adjust stack pointer amount exceeded");
292 /// Adjust SP by Amount bytes.
293 void Mips16InstrInfo::adjustStackPtr(unsigned SP, int64_t Amount,
296 if (Amount == 0)
299 if (isInt<16>(Amount)) // need to change to addiu sp, ....and isInt<16>
300 BuildAddiuSpImm(MBB, I, Amount);
    [all...]
MipsSEInstrInfo.h 69 /// Adjust SP by Amount bytes.
70 void adjustStackPtr(unsigned SP, int64_t Amount, MachineBasicBlock &MBB,
MipsInstrInfo.h 119 virtual void adjustStackPtr(unsigned SP, int64_t Amount,
MipsSEInstrInfo.cpp 426 /// Adjust SP by Amount bytes.
427 void MipsSEInstrInfo::adjustStackPtr(unsigned SP, int64_t Amount,
435 if (Amount == 0)
438 if (isInt<16>(Amount))// addi sp, sp, amount
439 BuildMI(MBB, I, DL, get(ADDiu), SP).addReg(SP).addImm(Amount);
441 unsigned Reg = loadImmediate(Amount, MBB, I, DL, nullptr);
  /external/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp 240 uint64_t Amount = Old->getOperand(0).getImm();
241 if (Amount != 0) {
243 // amount of space needed for the outgoing arguments up to the next
245 Amount = (Amount+StackAlign-1)/StackAlign*StackAlign;
251 .addReg(MSP430::SP).addImm(Amount);
254 // factor out the amount the callee already popped.
256 Amount -= CalleeAmt;
257 if (Amount)
260 .addReg(MSP430::SP).addImm(Amount);
    [all...]
  /external/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 101 void Distribution::add(const BlockNode &Node, uint64_t Amount,
103 assert(Amount && "invalid weight of 0");
104 uint64_t NewTotal = Total + Amount;
115 Weights.push_back(Weight(Type, Node, Amount));
120 if (!W.Amount) {
126 assert(OtherW.Amount && "Expected non-zero weight");
127 if (W.Amount > W.Amount + OtherW.Amount)
129 W.Amount = UINT64_MAX
    [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/icu/android_icu4j/src/main/java/android/icu/text/
CompactDecimalFormat.java 229 Amount amount = toAmount(number, currencyUnit); local
233 Unit unit = amount.getUnit();
235 super.format(amount.getQty(), toAppendTo, pos);
252 Amount amount = toAmount(number.doubleValue(), null); local
253 return super.formatToCharacterIterator(amount.getQty(), amount.getUnit());
309 private Amount toAmount(double number, Output<Unit> currencyUnit) {
326 return new Amount(
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CompactDecimalFormat.java 236 Amount amount = toAmount(number, currencyUnit); local
240 Unit unit = amount.getUnit();
242 super.format(amount.getQty(), toAppendTo, pos);
260 Amount amount = toAmount(number.doubleValue(), null); local
261 return super.formatToCharacterIterator(amount.getQty(), amount.getUnit());
322 private Amount toAmount(double number, Output<Unit> currencyUnit) {
339 return new Amount(
    [all...]
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 326 /// In addition to the raw weight amount, Weight stores the type of the edge
334 uint64_t Amount;
335 Weight() : Type(Local), Amount(0) {}
336 Weight(DistType Type, BlockNode TargetNode, uint64_t Amount)
337 : Type(Type), TargetNode(TargetNode), Amount(Amount) {}
355 void addLocal(const BlockNode &Node, uint64_t Amount) {
356 add(Node, Amount, Weight::Local);
358 void addExit(const BlockNode &Node, uint64_t Amount) {
359 add(Node, Amount, Weight::Exit)
    [all...]
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyFrameLowering.cpp 65 /// Adjust the stack pointer by a constant amount.
117 unsigned Amount = I->getOperand(0).getImm();
118 if (Amount)
119 adjustStackPointer(Amount, IsDestroy, MF, MBB,
  /external/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 493 uint64_t Amount = Old->getOperand(0).getImm();
494 if (Amount != 0) {
496 // amount of space needed for the outgoing arguments up to the next
499 Amount = (Amount+Align-1)/Align*Align;
501 assert(Amount%4 == 0);
502 Amount /= 4;
504 bool isU6 = isImmU6(Amount);
505 if (!isU6 && !isImmU16(Amount)) {
509 << Amount << "\n"
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FrameLowering.cpp 172 int64_t Amount = I->getOperand(0).getImm();
173 Amount = RoundUpToAlignment(Amount, Align);
175 Amount = -Amount;
191 assert(Amount > -0xffffff && Amount < 0xffffff && "call frame too large");
192 emitFrameOffset(MBB, I, DL, AArch64::SP, AArch64::SP, Amount, TII);
222 // Calculate amount of bytes used for return address storing.
572 // ... otherwise the amount to pop is *all* of the argument space
    [all...]
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.h 60 template <int Amount>
63 printPostIncOperand(MI, OpNo, Amount, O);
  /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.h 147 uint64_t Amount) const;
X86FrameLowering.cpp 499 // We need to exit with RSP modified by this amount and execute suitable
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb1FrameLowering.cpp 61 // ADJCALLSTACKDOWN -> sub, sp, sp, amount
62 // ADJCALLSTACKUP -> add, sp, sp, amount
65 unsigned Amount = Old->getOperand(0).getImm();
66 if (Amount != 0) {
68 // amount of space needed for the outgoing arguments up to the next
71 Amount = (Amount+Align-1)/Align*Align;
76 emitSPUpdate(MBB, I, TII, dl, *RegInfo, -Amount);
79 emitSPUpdate(MBB, I, TII, dl, *RegInfo, Amount);
ARMFrameLowering.cpp     [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mws/
response.py 382 _amount = 'Amount'
441 EstimatedFees = MemberList(Amount=Element(ComplexAmount))
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 1652 int amount = (isInc ? 1 : -1); local
    [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 240 unsigned Amount;
429 return ShiftExtend.Amount;
    [all...]

Completed in 5660 milliseconds

1 2