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

  /external/llvm/lib/Target/PowerPC/
PPCRegisterInfo.cpp 529 unsigned OpC = MI.getOpcode();
533 (OpC == PPC::DYNALLOC || OpC == PPC::DYNALLOC8)) {
540 if (OpC == PPC::SPILL_CR) {
554 switch (OpC) {
615 if (OpC != TargetOpcode::INLINEASM) {
616 assert(ImmToIdxMap.count(OpC) &&
618 unsigned NewOpcode = ImmToIdxMap.find(OpC)->second;
PPCISelDAGToDAG.cpp 305 static bool isOpcWithIntImmediate(SDNode *N, unsigned Opc, unsigned& Imm) {
306 return N->getOpcode() == Opc
449 unsigned Opc;
478 Opc = PPC::CMPLW;
483 Opc = PPC::CMPLW;
490 Opc = PPC::CMPW;
521 Opc = PPC::CMPLD;
526 Opc = PPC::CMPLD;
533 Opc = PPC::CMPD;
536 Opc = PPC::FCMPUS
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 33 ConstantInt *OpC = dyn_cast<ConstantInt>(I->getOperand(OpNo));
34 if (!OpC) return false;
37 Demanded = Demanded.zextOrTrunc(OpC->getValue().getBitWidth());
38 if ((~Demanded & OpC->getValue()) == 0)
42 Demanded &= OpC->getValue();
43 I->setOperand(OpNo, ConstantInt::get(OpC->getType(), Demanded));
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 515 static Constant *SymbolicallyEvaluateBinop(unsigned Opc, Constant *Op0,
526 if (Opc == Instruction::Sub && TD) {
    [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/Target/X86/
X86FastISel.cpp 86 bool X86FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src, EVT SrcVT,
179 unsigned Opc = 0;
185 Opc = X86::MOV8rm;
189 Opc = X86::MOV16rm;
193 Opc = X86::MOV32rm;
198 Opc = X86::MOV64rm;
203 Opc = Subtarget->hasAVX() ? X86::VMOVSSrm : X86::MOVSSrm;
206 Opc = X86::LD_Fp32m;
212 Opc = Subtarget->hasAVX() ? X86::VMOVSDrm : X86::MOVSDrm;
215 Opc = X86::LD_Fp64m
    [all...]

Completed in 438 milliseconds