HomeSort by relevance Sort by last modified time
    Searched refs:Amount (Results 1 - 25 of 34) 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,
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).addImm(-1);
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 151 int64_t Amount = I->getOperand(0).getImm();
154 Amount = -Amount;
159 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 499 int64_t Amount = I->getOperand(0).getImm();
502 Amount = -Amount;
505 TII.adjustStackPtr(SP, Amount, MBB, I);
MipsSEInstrInfo.cpp 359 /// Adjust SP by Amount bytes.
360 void MipsSEInstrInfo::adjustStackPtr(unsigned SP, int64_t Amount,
368 if (isInt<16>(Amount))// addi sp, sp, amount
369 BuildMI(MBB, I, DL, get(ADDiu), SP).addReg(SP).addImm(Amount);
371 unsigned Reg = loadImmediate(Amount, MBB, I, DL, nullptr);
  /external/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 110 void Distribution::add(const BlockNode &Node, uint64_t Amount,
112 assert(Amount && "invalid weight of 0");
113 uint64_t NewTotal = Total + Amount;
126 W.Amount = Amount;
133 if (!W.Amount) {
139 assert(W.Amount < W.Amount + OtherW.Amount && "Unexpected overflow");
140 W.Amount += OtherW.Amount
    [all...]
InstructionSimplify.cpp     [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/XCore/
XCoreFrameLowering.cpp 487 uint64_t Amount = Old->getOperand(0).getImm();
488 if (Amount != 0) {
490 // amount of space needed for the outgoing arguments up to the next
493 Amount = (Amount+Align-1)/Align*Align;
495 assert(Amount%4 == 0);
496 Amount /= 4;
498 bool isU6 = isImmU6(Amount);
499 if (!isU6 && !isImmU16(Amount)) {
503 << 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/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 327 /// In addition to the raw weight amount, Weight stores the type of the edge
335 uint64_t Amount;
336 Weight() : Type(Local), Amount(0) {}
354 void addLocal(const BlockNode &Node, uint64_t Amount) {
355 add(Node, Amount, Weight::Local);
357 void addExit(const BlockNode &Node, uint64_t Amount) {
358 add(Node, Amount, Weight::Exit);
360 void addBackedge(const BlockNode &Node, uint64_t Amount) {
361 add(Node, Amount, Weight::Backedge);
376 void add(const BlockNode &Node, uint64_t Amount, Weight::DistType Type)
    [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/llvm/lib/Target/AArch64/
AArch64FrameLowering.cpp 122 int64_t Amount = I->getOperand(0).getImm();
123 Amount = RoundUpToAlignment(Amount, Align);
125 Amount = -Amount;
141 assert(Amount > -0xffffff && Amount < 0xffffff && "call frame too large");
142 emitFrameOffset(MBB, I, DL, AArch64::SP, AArch64::SP, Amount, TII);
172 // Calculate amount of bytes used for return address storing.
458 // ... otherwise the amount to pop is *all* of the argument space
    [all...]
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.h 52 template<int Amount>
54 printPostIncOperand(MI, OpNo, Amount, O);
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp     [all...]
  /external/chromium_org/chrome/browser/resources/cryptotoken/
gnubbies.js 198 * Amount of time past last activity to set the inactivity timer to, in millis.
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
viewport.js 479 * @param {number} dx Amount of shift.
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/AArch64/AsmParser/
AArch64AsmParser.cpp 227 unsigned Amount;
398 return ShiftExtend.Amount;
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp     [all...]

Completed in 947 milliseconds

1 2