HomeSort by relevance Sort by last modified time
    Searched defs:SMI (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Target/PowerPC/
PPCQPXLoadSplat.cpp 86 MachineInstr *SMI = *SI;
87 unsigned SplatReg = SMI->getOperand(0).getReg();
88 unsigned SrcReg = SMI->getOperand(1).getReg();
120 // If SMI is directly after MI, then MBBI's base iterator is
121 // pointing at SMI. Adjust MBBI around the call to erase SMI to
124 SMI->eraseFromParent();
  /external/v8/src/ic/
ic-state.h 78 // Returns true if the IC should enable the inline smi code (i.e. if either
79 // parameter may be a smi).
98 enum Kind { NONE, SMI, INT32, NUMBER, STRING, GENERIC };
112 return (kind >= SMI && kind <= NUMBER) || kind == GENERIC;
155 // SMI < NUMBER
162 SMI,
  /external/v8/src/ast/
ast-value-factory.h 192 Smi* AsSmi() const {
194 return Smi::FromInt(smi_);
218 bool IsSmi() const { return type_ == SMI || type_ == SMI_WITH_DOT; }
250 SMI,
269 type_ = with_dot ? SMI_WITH_DOT : SMI;
278 DCHECK(type_ == SMI);
463 STATIC_ASSERT(kMaxCachedSmi <= Smi::kMaxValue);

Completed in 384 milliseconds