Searched refs:OpNode (Results 1 - 9 of 9) sorted by relevance

/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.h80 bool SelectADDRri_imp(SDNode *OpNode, SDValue Addr, SDValue &Base,
82 bool SelectADDRri(SDNode *OpNode, SDValue Addr, SDValue &Base,
84 bool SelectADDRri64(SDNode *OpNode, SDValue Addr, SDValue &Base,
87 bool SelectADDRsi_imp(SDNode *OpNode, SDValue Addr, SDValue &Base,
89 bool SelectADDRsi(SDNode *OpNode, SDValue Addr, SDValue &Base,
91 bool SelectADDRsi64(SDNode *OpNode, SDValue Addr, SDValue &Base,
H A DNVPTXISelDAGToDAG.cpp5090 SDNode *OpNode, SDValue Addr, SDValue &Base, SDValue &Offset, MVT mvt) {
5095 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), SDLoc(OpNode),
5105 bool NVPTXDAGToDAGISel::SelectADDRsi(SDNode *OpNode, SDValue Addr, argument
5107 return SelectADDRsi_imp(OpNode, Addr, Base, Offset, MVT::i32);
5111 bool NVPTXDAGToDAGISel::SelectADDRsi64(SDNode *OpNode, SDValue Addr, argument
5113 return SelectADDRsi_imp(OpNode, Addr, Base, Offset, MVT::i64);
5118 SDNode *OpNode, SDValue Addr, SDValue &Base, SDValue &Offset, MVT mvt) {
5121 Offset = CurDAG->getTargetConstant(0, SDLoc(OpNode), mvt);
5139 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), SDLoc(OpNode),
5148 bool NVPTXDAGToDAGISel::SelectADDRri(SDNode *OpNode, SDValu argument
5089 SelectADDRsi_imp( SDNode *OpNode, SDValue Addr, SDValue &Base, SDValue &Offset, MVT mvt) argument
5117 SelectADDRri_imp( SDNode *OpNode, SDValue Addr, SDValue &Base, SDValue &Offset, MVT mvt) argument
5154 SelectADDRri64(SDNode *OpNode, SDValue Addr, SDValue &Base, SDValue &Offset) argument
[all...]
/external/skia/include/private/
H A DGrAuditTrail.h139 struct OpNode { struct in class:GrAuditTrail
140 OpNode(const GrSurfaceProxy::UniqueID& proxyID) : fProxyUniqueID(proxyID) { } function in struct:GrAuditTrail::OpNode
147 typedef SkTArray<std::unique_ptr<OpNode>, true> OpList;
/external/skia/src/gpu/
H A DGrAuditTrail.cpp41 // Our algorithm doesn't bother to reorder inside of an OpNode so the ChildID will start at 0
45 // We use the op pointer as a key to find the OpNode we are 'glomming' ops onto
47 OpNode* opNode = new OpNode(proxyID);
59 OpNode& consumerOp = *fOpList[index];
66 OpNode& consumedOp = *fOpList[consumedIndex];
89 const OpNode* bn = fOpList[opListID].get();
286 SkString GrAuditTrail::OpNode::toJson() const {
/external/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp3068 TreePatternNode *OpNode = InVal->clone(); local
3071 OpNode->clearPredicateFns();
3074 if (Record *Xform = OpNode->getTransformFn()) {
3075 OpNode->setTransformFn(nullptr);
3077 Children.push_back(OpNode);
3078 OpNode = new TreePatternNode(Xform, Children, OpNode->getNumTypes());
3081 ResultNodeOperands.push_back(OpNode);
3526 TreePatternNode *OpNode = DstPattern->getChild(ii); local
3527 if (Record *Xform = OpNode
[all...]
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DCodeGenDAGPatterns.cpp2677 TreePatternNode *OpNode = InVal->clone(); local
2680 OpNode->clearPredicateFns();
2683 if (Record *Xform = OpNode->getTransformFn()) {
2684 OpNode->setTransformFn(0);
2686 Children.push_back(OpNode);
2687 OpNode = new TreePatternNode(Xform, Children, OpNode->getNumTypes());
2690 ResultNodeOperands.push_back(OpNode);
2959 TreePatternNode *OpNode = DstPattern->getChild(ii); local
2960 if (Record *Xform = OpNode
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp537 SDValue OpNode = local
541 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
545 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT, local
547 AddToWorkList(OpNode.getNode());
548 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
555 SDValue OpNode = local
559 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode);
563 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT, local
565 AddToWorkList(OpNode.getNode());
566 return DAG.getNode(Opc, DL, VT, OpNode, N
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp823 if (SDValue OpNode = DAG.FoldConstantArithmetic(Opc, DL, VT, L, R))
824 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
830 SDValue OpNode = DAG.getNode(Opc, SDLoc(N0), VT, N0.getOperand(0), N1); local
831 if (!OpNode.getNode())
833 AddToWorklist(OpNode.getNode());
834 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
843 if (SDValue OpNode = DAG.FoldConstantArithmetic(Opc, DL, VT, R, L))
844 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode);
850 SDValue OpNode = DAG.getNode(Opc, SDLoc(N0), VT, N0, N1.getOperand(0)); local
851 if (!OpNode
[all...]
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp4377 SDValue OpNode = IsUndef ? DAG.getUNDEF(EltVT) :
4379 Ops.push_back(OpNode);
[all...]

Completed in 277 milliseconds