HomeSort by relevance Sort by last modified time
    Searched full:opc (Results 126 - 150 of 220) sorted by null

1 2 3 4 56 7 8 9

  /external/llvm/lib/VMCore/
ConstantFold.cpp 77 unsigned opc, ///< opcode of the second cast constant expression
83 assert(CastInst::isCast(opc) && "Invalid cast opcode");
89 Instruction::CastOps secondOp = Instruction::CastOps(opc);
506 Constant *llvm::ConstantFoldCastInstruction(unsigned opc, Constant *V,
512 if (opc == Instruction::ZExt || opc == Instruction::SExt ||
513 opc == Instruction::UIToFP || opc == Instruction::SIToFP)
530 if (unsigned newOpc = foldConstantCastPair(opc, CE, DestTy))
557 res.push_back(ConstantExpr::getCast(opc,
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 325 static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
326 ID.AddInteger(OpC);
356 unsigned short OpC, SDVTList VTList,
358 AddNodeIDOpcode(ID, OpC);
    [all...]
ScheduleDAGSDNodes.cpp 266 unsigned Opc = Node->getMachineOpcode();
267 const MCInstrDesc &MCID = TII->get(Opc);
401 unsigned Opc = MainNode->getMachineOpcode();
402 const MCInstrDesc &MCID = TII->get(Opc);
DAGCombiner.cpp 243 SDValue ReassociateOps(unsigned Opc, DebugLoc DL, SDValue LHS, SDValue RHS);
566 SDValue DAGCombiner::ReassociateOps(unsigned Opc, DebugLoc DL,
569 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
573 DAG.FoldConstantArithmetic(Opc, VT,
576 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
580 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
583 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
587 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
591 DAG.FoldConstantArithmetic(Opc, VT,
594 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode)
    [all...]
LegalizeDAG.cpp 124 SDValue ExpandBitCount(unsigned Opc, SDValue Op, DebugLoc dl);
    [all...]
  /external/libpcap/
grammar.y 193 %token SIO OPC DPC SLS
482 | OPC { $$.mtp3fieldtype = M_OPC; }
scanner.l 296 opc return OPC;
  /external/llvm/include/llvm/Support/
ConstantFolder.h 97 Constant *CreateBinOp(Instruction::BinaryOps Opc,
99 return ConstantExpr::get(Opc, LHS, RHS);
NoFolder.h 147 Instruction *CreateBinOp(Instruction::BinaryOps Opc,
149 return BinaryOperator::Create(Opc, LHS, RHS);
TargetFolder.h 109 Constant *CreateBinOp(Instruction::BinaryOps Opc,
111 return Fold(ConstantExpr::get(Opc, LHS, RHS));
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.cpp 762 unsigned Opc = isThumb ? ARM::t2SUBri : ARM::SUBri;
763 AddDefaultCC(AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(Opc), ARM::R4)
768 Opc = isThumb ? ARM::t2BICri : ARM::BICri;
770 AddDefaultCC(AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(Opc), ARM::R4)
778 Opc = isThumb ? ARM::tMOVr : ARM::MOVr;
779 MachineInstrBuilder MIB = BuildMI(MBB, MI, DL, TII.get(Opc), ARM::SP)
    [all...]
ARMExpandPseudoInsts.cpp 63 unsigned Opc, bool IsExt);
579 unsigned Opc, bool IsExt) {
583 MachineInstrBuilder MIB = BuildMI(MBB, MBBI, MI.getDebugLoc(), TII->get(Opc));
    [all...]
ARMCodeEmitter.cpp 419 default: llvm_unreachable("Unknown shift opc!");
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 364 unsigned Opc = (VT == MVT::i16 ? Opc16 : Opc8);
369 CurDAG->SelectNodeTo(Op, Opc,
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.h 299 virtual unsigned getOpcodeAfterMemoryUnfold(unsigned Opc,
359 bool isHighLatencyDef(int opc) const;
X86InstrInfo.td     [all...]
  /dalvik/vm/analysis/
Optimize.cpp 163 Opcode opc, quickOpc, volatileOpc; local
167 opc = dexOpcodeFromCodeUnit(*insns);
200 switch (opc) {
302 switch (opc) {
    [all...]
  /external/freetype/src/truetype/
ttobjs.h 179 FT_UInt opc; /* function #, or instruction code */ member in struct:TT_DefRecord_
  /external/llvm/lib/Target/CellSPU/
SPUISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 430 if (ConstantInt *OpC = dyn_cast<ConstantInt>(Op)) {
431 if (OpC->isZero()) continue;
435 Size = TD.getStructLayout(STy)->getElementOffset(OpC->getZExtValue());
445 ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_sim.c 172 u8 opc[16], k[16]; local
190 if (hexstr2bin(pos, opc, 16))
194 if (gsm_milenage(opc, k, data->rand[i],
  /external/wpa_supplicant_8/src/eap_peer/
eap_sim.c 165 u8 opc[16], k[16]; local
183 if (hexstr2bin(pos, opc, 16))
187 if (gsm_milenage(opc, k, data->rand[i],
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 415 BinaryOperator::Opcode opc = symIntExpr->getOpcode(); local
416 switch (opc) {
447 opc = NegateComparison(opc);
449 return makeNonLoc(symIntExpr->getLHS(), opc,
    [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...]

Completed in 1441 milliseconds

1 2 3 4 56 7 8 9