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

1 2

  /external/llvm/lib/Target/Mips/
MipsFrameLowering.cpp 142 int64_t Amount = I->getOperand(0).getImm();
144 Amount = -Amount;
146 STI.getInstrInfo()->adjustStackPtr(SP, Amount, MBB, I);
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,
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 120 virtual void adjustStackPtr(unsigned SP, int64_t Amount,
MipsSEInstrInfo.cpp 358 /// Adjust SP by Amount bytes.
359 void MipsSEInstrInfo::adjustStackPtr(unsigned SP, int64_t Amount,
367 if (Amount == 0)
370 if (isInt<16>(Amount))// addi sp, sp, amount
371 BuildMI(MBB, I, DL, get(ADDiu), SP).addReg(SP).addImm(Amount);
373 unsigned Reg = loadImmediate(Amount, MBB, I, DL, nullptr);
  /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...]
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp 239 uint64_t Amount = Old->getOperand(0).getImm();
240 if (Amount != 0) {
242 // amount of space needed for the outgoing arguments up to the next
244 Amount = (Amount+StackAlign-1)/StackAlign*StackAlign;
250 .addReg(MSP430::SP).addImm(Amount);
253 // factor out the amount the callee already popped.
255 Amount -= CalleeAmt;
256 if (Amount)
259 .addReg(MSP430::SP).addImm(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/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/lib/Target/X86/
X86FrameLowering.h 88 uint64_t Amount) const;
X86FrameLowering.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 315 /// In addition to the raw weight amount, Weight stores the type of the edge
323 uint64_t Amount;
324 Weight() : Type(Local), Amount(0) {}
325 Weight(DistType Type, BlockNode TargetNode, uint64_t Amount)
326 : Type(Type), TargetNode(TargetNode), Amount(Amount) {}
344 void addLocal(const BlockNode &Node, uint64_t Amount) {
345 add(Node, Amount, Weight::Local);
347 void addExit(const BlockNode &Node, uint64_t Amount) {
348 add(Node, Amount, Weight::Exit)
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 486 uint64_t Amount = Old->getOperand(0).getImm();
487 if (Amount != 0) {
489 // amount of space needed for the outgoing arguments up to the next
492 Amount = (Amount+Align-1)/Align*Align;
494 assert(Amount%4 == 0);
495 Amount /= 4;
497 bool isU6 = isImmU6(Amount);
498 if (!isU6 && !isImmU16(Amount)) {
502 << Amount << "\n"
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb1FrameLowering.cpp 60 // ADJCALLSTACKDOWN -> sub, sp, sp, amount
61 // ADJCALLSTACKUP -> add, sp, sp, amount
64 unsigned Amount = Old->getOperand(0).getImm();
65 if (Amount != 0) {
67 // amount of space needed for the outgoing arguments up to the next
70 Amount = (Amount+Align-1)/Align*Align;
75 emitSPUpdate(MBB, I, TII, dl, *RegInfo, -Amount);
78 emitSPUpdate(MBB, I, TII, dl, *RegInfo, Amount);
ARMFrameLowering.cpp     [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.
561 // ... otherwise the amount to pop is *all* of the argument space
    [all...]
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.h 59 template <int Amount>
62 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/AArch64/AsmParser/
AArch64AsmParser.cpp 231 unsigned Amount;
406 return ShiftExtend.Amount;
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
setupapi.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntifs.h     [all...]

Completed in 1036 milliseconds

1 2