Lines Matching refs:Binding
243 const auto &Binding = RI.getBinding(); in lowerToCreateHandle() local
247 if (Binding.LowerBound != 0) in lowerToCreateHandle()
249 ConstantInt::get(Int32Ty, Binding.LowerBound)); in lowerToCreateHandle()
253 ConstantInt::get(Int32Ty, Binding.RecordID), IndexOp, in lowerToCreateHandle()
277 const auto &Binding = RI.getBinding(); in lowerToBindAndAnnotateHandle() local
282 if (Binding.LowerBound != 0) in lowerToBindAndAnnotateHandle()
284 ConstantInt::get(Int32Ty, Binding.LowerBound)); in lowerToBindAndAnnotateHandle()
292 uint32_t UpperBound = Binding.Size == Unbounded in lowerToBindAndAnnotateHandle()
294 : Binding.LowerBound + Binding.Size - 1; in lowerToBindAndAnnotateHandle()
295 Constant *ResBind = OpBuilder.getResBind(Binding.LowerBound, UpperBound, in lowerToBindAndAnnotateHandle()
296 Binding.Space, RC); in lowerToBindAndAnnotateHandle()