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

  /external/llvm/lib/Target/PowerPC/
PPCRegisterInfo.cpp 407 unsigned OpC = MI.getOpcode();
411 (OpC == PPC::DYNALLOC || OpC == PPC::DYNALLOC8)) {
417 if (OpC == PPC::SPILL_CR) {
420 } else if (OpC == PPC::RESTORE_CR) {
437 switch (OpC) {
447 switch (OpC) {
486 if (OpC == PPC::DBG_VALUE || // DBG_VALUE is always Reg+Imm
517 else if (OpC != TargetOpcode::INLINEASM) {
518 assert(ImmToIdxMap.count(OpC) &
    [all...]
PPCISelDAGToDAG.cpp 333 static bool isOpcWithIntImmediate(SDNode *N, unsigned Opc, unsigned& Imm) {
334 return N->getOpcode() == Opc
477 unsigned Opc;
506 Opc = PPC::CMPLW;
511 Opc = PPC::CMPLW;
518 Opc = PPC::CMPW;
549 Opc = PPC::CMPLD;
554 Opc = PPC::CMPLD;
561 Opc = PPC::CMPD;
564 Opc = PPC::FCMPUS
    [all...]
  /external/llvm/include/llvm/IR/
Operator.h 151 static bool isPossiblyExactOpcode(unsigned OpC) {
152 return OpC == Instruction::SDiv ||
153 OpC == Instruction::UDiv ||
154 OpC == Instruction::AShr ||
155 OpC == Instruction::LShr;
313 template<typename SuperClass, unsigned Opc>
317 return I->getOpcode() == Opc;
320 return CE->getOpcode() == Opc;
451 ConstantInt *OpC = dyn_cast<ConstantInt>(GTI.getOperand());
452 if (!OpC)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 34 ConstantInt *OpC = dyn_cast<ConstantInt>(I->getOperand(OpNo));
35 if (!OpC) return false;
38 Demanded = Demanded.zextOrTrunc(OpC->getValue().getBitWidth());
39 if ((~Demanded & OpC->getValue()) == 0)
43 Demanded &= OpC->getValue();
44 I->setOperand(OpNo, ConstantInt::get(OpC->getType(), Demanded));
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 543 static Constant *SymbolicallyEvaluateBinop(unsigned Opc, Constant *Op0,
552 if (Opc == Instruction::And && DL) {
576 if (Opc == Instruction::Sub && DL) {
    [all...]
ValueTracking.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 51 ConstantInt *OpC = dyn_cast<ConstantInt>(GEP->getOperand(i));
52 if (OpC == 0)
54 if (OpC->isZero()) continue; // No offset.
58 Offset += TD.getStructLayout(STy)->getElementOffset(OpC->getZExtValue());
65 Offset += Size*OpC->getSExtValue();
    [all...]
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp 258 ConstantInt *OpC = dyn_cast<ConstantInt>(GTI.getOperand());
259 if (!OpC)
261 OpC = dyn_cast<ConstantInt>(SimpleOp);
262 if (!OpC)
264 if (OpC->isZero()) continue;
268 unsigned ElementIdx = OpC->getZExtValue();
275 Offset += OpC->getValue().sextOrTrunc(IntPtrWidth) * TypeSize;
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 90 bool X86FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src, EVT SrcVT,
183 unsigned Opc = 0;
189 Opc = X86::MOV8rm;
193 Opc = X86::MOV16rm;
197 Opc = X86::MOV32rm;
202 Opc = X86::MOV64rm;
207 Opc = Subtarget->hasAVX() ? X86::VMOVSSrm : X86::MOVSSrm;
210 Opc = X86::LD_Fp32m;
216 Opc = Subtarget->hasAVX() ? X86::VMOVSDrm : X86::MOVSDrm;
219 Opc = X86::LD_Fp64m
    [all...]

Completed in 355 milliseconds