/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | OperandTraits.h | 32 static Use *op_begin(SubClass* U) { in op_begin() function 67 static Use *op_begin(SubClass* U) { in op_begin() function 94 static Use *op_begin(User* U) { in op_begin() function 112 inline op_iterator op_begin(); \ 113 inline const_op_iterator op_begin() const; \ 124 CLASS::op_iterator CLASS::op_begin() { \ 125 return OperandTraits<CLASS>::op_begin(this); \ 127 CLASS::const_op_iterator CLASS::op_begin() const { \ 128 return OperandTraits<CLASS>::op_begin(const_cast<CLASS*>(this)); \ 140 OperandTraits<CLASS>::op_begin(const_cast<CLASS*>(this))[i_nocapture].get()); \ [all …]
|
D | User.h | 115 : OperandTraits<U>::op_begin(const_cast<U*>(that))[Idx]; in OpFrom() 205 op_iterator op_begin() { return getOperandList(); } in op_begin() function 206 const_op_iterator op_begin() const { return getOperandList(); } in op_begin() function 214 return op_range(op_begin(), op_end()); in operands() 217 return const_op_range(op_begin(), op_end()); in operands() 232 return value_op_iterator(op_begin()); in value_op_begin()
|
D | Metadata.h | 1024 op_iterator op_begin() const { 1032 op_range operands() const { return op_range(op_begin(), op_end()); } 1036 return op_begin()[I]; 1092 SmallVector<Metadata *, 4>(op_begin(), op_end())); 1221 iterator begin() const { return N ? iterator(N->op_begin()) : iterator(); } 1365 op_iterator op_begin() { return op_iterator(this, 0); } 1369 const_op_iterator op_begin() const { return const_op_iterator(this, 0); } 1373 return make_range(op_begin(), op_end()); 1376 return make_range(op_begin(), op_end());
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | OperandTraits.h | 31 static Use *op_begin(SubClass* U) { in op_begin() function 69 static Use *op_begin(SubClass* U) { in op_begin() function 96 static Use *op_begin(User* U) { in op_begin() function 114 inline op_iterator op_begin(); \ 115 inline const_op_iterator op_begin() const; \ 126 CLASS::op_iterator CLASS::op_begin() { \ 127 return OperandTraits<CLASS>::op_begin(this); \ 129 CLASS::const_op_iterator CLASS::op_begin() const { \ 130 return OperandTraits<CLASS>::op_begin(const_cast<CLASS*>(this)); \ 142 OperandTraits<CLASS>::op_begin(const_cast<CLASS*>(this))[i_nocapture].get()); \ [all …]
|
D | User.h | 130 : OperandTraits<U>::op_begin(const_cast<U*>(that))[Idx]; in OpFrom() 229 op_iterator op_begin() { return getOperandList(); } in op_begin() function 230 const_op_iterator op_begin() const { return getOperandList(); } in op_begin() function 238 return op_range(op_begin(), op_end()); in operands() 241 return const_op_range(op_begin(), op_end()); in operands() 256 return value_op_iterator(op_begin()); in value_op_begin() 277 return const_value_op_iterator(op_begin()); in value_op_begin()
|
D | GetElementPtrTypeIterator.h | 131 GEP->op_begin() + 1); in gep_type_begin() 142 GEP.op_begin() + 1); in gep_type_begin()
|
D | Metadata.h | 1067 op_iterator op_begin() const { 1075 op_range operands() const { return op_range(op_begin(), op_end()); } 1079 return op_begin()[I]; 1134 SmallVector<Metadata *, 4>(op_begin(), op_end())); 1266 iterator begin() const { return N ? iterator(N->op_begin()) : iterator(); } 1418 op_iterator op_begin() { return op_iterator(this, 0); } 1423 const_op_iterator op_begin() const { return const_op_iterator(this, 0); } 1427 return make_range(op_begin(), op_end()); 1430 return make_range(op_begin(), op_end());
|
D | Operator.h | 482 inline op_iterator idx_begin() { return op_begin()+1; } in idx_begin() 483 inline const_op_iterator idx_begin() const { return op_begin()+1; } in idx_begin()
|
D | InstrTypes.h | 1163 User::op_iterator data_operands_begin() { return op_begin(); } 1211 User::op_iterator arg_begin() { return op_begin(); } 1793 return hasOperandBundles() && isBundleOperand(U - op_begin()); 2005 auto begin = op_begin(); 2206 op_range arg_operands() { return op_range(op_begin(), op_end() - 1); } 2210 return const_op_range(op_begin(), op_end() - 1);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
D | VPlanValue.h | 174 operand_iterator op_begin() { return Operands.begin(); } in op_begin() function 175 const_operand_iterator op_begin() const { return Operands.begin(); } in op_begin() function 178 operand_range operands() { return operand_range(op_begin(), op_end()); } in operands() 180 return const_operand_range(op_begin(), op_end()); in operands()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Instructions.cpp | 110 std::copy(PN.op_begin(), PN.op_end(), op_begin()); in PHINode() 125 std::copy(op_begin() + Idx + 1, op_end(), op_begin() + Idx); in removeIncomingValue() 358 auto It = op_begin() + BeginIndex; in populateBundleOperandInfos() 403 llvm::copy(Args, op_begin()); in init() 443 std::copy(CI.op_begin(), CI.op_end(), op_begin()); in CallInst() 740 llvm::copy(Args, op_begin()); in init() 754 std::copy(II.op_begin(), II.op_end(), op_begin()); in InvokeInst() 811 std::copy(Args.begin(), Args.end(), op_begin()); in init() 836 std::copy(CBI.op_begin(), CBI.op_end(), op_begin()); in CallBrInst() 899 OperandTraits<ResumeInst>::op_begin(this), 1) { in ResumeInst() [all …]
|
D | LLVMContextImpl.cpp | 183 unsigned Hash = hash_combine_range(N->op_begin() + Offset, N->op_end()); in calculateHash() 186 SmallVector<Metadata *, 8> MDs(N->op_begin() + Offset, N->op_end()); in calculateHash()
|
D | Use.cpp | 48 return this - getUser()->op_begin(); in getOperandNo()
|
D | Globals.cpp | 341 OperandTraits<GlobalVariable>::op_begin(this), in GlobalVariable() 361 OperandTraits<GlobalVariable>::op_begin(this), in GlobalVariable()
|
D | Metadata.cpp | 701 unsigned Op = static_cast<MDOperand *>(Ref) - op_begin(); in handleChangedOperand() 903 SmallSetVector<Metadata *, 4> MDs(A->op_begin(), A->op_end()); in concatenate() 904 MDs.insert(B->op_begin(), B->op_end()); in concatenate() 915 SmallSetVector<Metadata *, 4> MDs(A->op_begin(), A->op_end()); in intersect() 916 SmallPtrSet<Metadata *, 4> BSet(B->op_begin(), B->op_end()); in intersect()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Scalar/ |
D | GVNExpression.h | 184 op_iterator op_begin() { return Operands; } in op_begin() function 186 const_op_iterator op_begin() const { return Operands; } in op_begin() function 189 return iterator_range<op_iterator>(op_begin(), op_end()); in operands() 192 return iterator_range<const_op_iterator>(op_begin(), op_end()); in operands() 219 std::equal(op_begin(), op_end(), OE.op_begin()); in equals() 224 hash_combine_range(op_begin(), op_end())); in getHashValue()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | MemorySSA.h | 430 static Use *op_begin(MemoryUseOrDef *MUD) { 432 return OperandTraits<MemoryUse>::op_begin(MU); 433 return OperandTraits<MemoryDef>::op_begin(cast<MemoryDef>(MUD)); 502 auto *Ref = reinterpret_cast<Use::UserRef *>(op_begin() + ReservedSpace); 508 reinterpret_cast<const Use::UserRef *>(op_begin() + ReservedSpace); 550 return getIncomingBlock(unsigned(&U - op_begin()));
|
D | ScalarEvolutionExpressions.h | 167 op_iterator op_begin() const { return Operands; } in op_begin() function 170 return make_range(op_begin(), op_end()); in operands() 315 return SE.getAddRecExpr(SmallVector<const SCEV *, 3>(op_begin()+1, in getStepRecurrence()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | ScalarEvolutionExpander.cpp | 286 SmallVector<const SCEV *, 4> NewMulOps(M->op_begin(), M->op_end()); in FactorOutConstant() 333 Ops.append(Add->op_begin(), Add->op_end()); in SimplifyAddOperands() 361 Ops.append(Add->op_begin(), Add->op_end()); in SplitAddRecs() 402 Value *SCEVExpander::expandAddToGEP(const SCEV *const *op_begin, in expandAddToGEP() argument 410 SmallVector<const SCEV *, 8> Ops(op_begin, op_end); in expandAddToGEP() 697 E(S->op_begin()); I != E; ++I) in visitAddExpr() 767 E(S->op_begin()); I != E; ++I) in visitMulExpr() 887 SmallVector<const SCEV *, 8> NewAddOps(A->op_begin(), A->op_end()); in ExposePointerBase() 905 for (User::op_iterator OI = IncV->op_begin()+1, in isNormalAddRecExprPHI() 954 for (auto I = IncV->op_begin() + 1, E = IncV->op_end(); I != E; ++I) { in getIVIncOperand() [all …]
|
D | TypeMetadataUtils.cpp | 63 SmallVector<Value *, 8> Indices(GEP->op_begin() + 1, GEP->op_end()); in findLoadCallsAtConstantOffset()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/ObjCARC/ |
D | ObjCARCAPElim.cpp | 157 for (User::op_iterator OI = Init->op_begin(), OE = Init->op_end(); in runOnModule()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/Utils/ |
D | Local.h | 45 for (User::op_iterator i = GEP->op_begin() + 1, e = GEP->op_end(); i != e;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/ |
D | ValueEnumerator.cpp | 620 Worklist.push_back(std::make_pair(N, N->op_begin())); in EnumerateMetadata() 638 Worklist.push_back(std::make_pair(Op, Op->op_begin())); in EnumerateMetadata() 651 Worklist.push_back(std::make_pair(N, N->op_begin())); in EnumerateMetadata() 835 for (User::const_op_iterator I = C->op_begin(), E = C->op_end(); in EnumerateValue()
|
/third_party/mesa3d/src/gallium/frontends/clover/llvm/ |
D | metadata.hpp | 53 return range(data_node->op_begin(), data_node->op_end()); in get_kernel_metadata_operands()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/ |
D | ValueList.cpp | 182 for (User::op_iterator I = UserC->op_begin(), E = UserC->op_end(); I != E; in resolveConstantForwardRefs()
|