HomeSort by relevance Sort by last modified time
    Searched defs:Ops (Results 51 - 66 of 66) sorted by null

1 23

  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp 690 std::pair<StringRef, StringRef> Ops = S.split('=');
691 if (Ops.second == "")
694 size_t start = Ops.first.find_first_of('$');
697 Ops.first = Ops.first.slice(start + 1, std::string::npos);
698 size_t end = Ops.first.find_last_of(" \t");
699 Ops.first = Ops.first.slice(0, end);
701 start = Ops.second.find_first_of('$');
704 Ops.second = Ops.second.slice(start + 1, std::string::npos)
    [all...]
CodeGenDAGPatterns.cpp     [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp     [all...]
CGObjCMac.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp 435 SDValue Ops[] = { N->getOperand(0), N->getOperand(1) };
437 DAG.getVTList(ValueVTs, 2), Ops, 2);
    [all...]
LegalizeVectorTypes.cpp 414 SmallVector<SDValue, 1> Ops(1);
415 Ops[0] = DAG.getNode(N->getOpcode(), N->getDebugLoc(),
420 &Ops[0], 1);
426 SmallVector<SDValue, 8> Ops(N->getNumOperands());
428 Ops[i] = GetScalarizedVector(N->getOperand(i));
430 &Ops[0], Ops.size());
    [all...]
SelectionDAG.cpp 339 const SDValue *Ops, unsigned NumOps) {
340 for (; NumOps; --NumOps, ++Ops) {
341 ID.AddPointer(Ops->getNode());
342 ID.AddInteger(Ops->getResNo());
349 const SDUse *Ops, unsigned NumOps) {
350 for (; NumOps; --NumOps, ++Ops) {
351 ID.AddPointer(Ops->getNode());
352 ID.AddInteger(Ops->getResNo());
742 SDValue Ops[] = { Op };
744 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1)
    [all...]
SelectionDAGBuilder.cpp 243 SmallVector<SDValue, 8> Ops(NumIntermediates);
248 Ops[i] = getCopyFromParts(DAG, DL, &Parts[i], 1,
257 Ops[i] = getCopyFromParts(DAG, DL, &Parts[i * Factor], Factor,
265 ValueVT, &Ops[0], NumIntermediates);
489 SmallVector<SDValue, 16> Ops;
491 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL,
496 Ops.push_back(DAG.getUNDEF(ElementVT));
498 Val = DAG.getNode(ISD::BUILD_VECTOR, DL, PartVT, &Ops[0], Ops.size());
543 SmallVector<SDValue, 8> Ops(NumIntermediates)
    [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 307 SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end());
308 const SCEV *NewMul = SE.getMulExpr(Ops);
518 SmallVector<const SCEV *, 8> Ops;
524 Ops.push_back(Op);
526 return SE.getAddExpr(Ops);
534 SmallVector<const SCEV *, 4> Ops;
545 Ops.push_back(S);
547 return Found ? SE.getMulExpr(Ops) : 0;
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 112 // We do not currently implement these libm ops for PowerPC.
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp 370 // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
    [all...]
  /prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 1388 milliseconds

1 23