LLVM 22.0.0git
Use.cpp
Go to the documentation of this file.
1//===-- Use.cpp - Implement the Use class ---------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "llvm/IR/Use.h"
10#include "llvm/IR/User.h"
11
12namespace llvm {
13
14void Use::swap(Use &RHS) {
15 if (Val == RHS.Val)
16 return;
17
18 std::swap(Val, RHS.Val);
19 std::swap(Next, RHS.Next);
20 std::swap(Prev, RHS.Prev);
21
22 if (Prev)
23 *Prev = this;
24
25 if (Next)
26 Next->Prev = &Next;
27
28 if (RHS.Prev)
29 *RHS.Prev = &RHS;
30
31 if (RHS.Next)
32 RHS.Next->Prev = &RHS.Next;
33}
34
35unsigned Use::getOperandNo() const {
36 return this - getUser()->op_begin();
37}
38
39void Use::zap(Use *Start, const Use *Stop, bool del) {
40 while (Start != Stop)
41 (--Stop)->~Use();
42 if (del)
43 ::operator delete(Start);
44}
45
46} // namespace llvm
This defines the Use class.
Value * RHS
static LLVM_ABI void zap(Use *Start, const Use *Stop, bool del=false)
Destroys Use operands when the number of operands of a User changes.
Definition: Use.cpp:39
User * getUser() const
Returns the User that contains this Use.
Definition: Use.h:61
LLVM_ABI unsigned getOperandNo() const
Return the operand # of this use in its User.
Definition: Use.cpp:35
LLVM_ABI void swap(Use &RHS)
Provide a fast substitute to std::swap<Use> that also works with less standard-compliant compilers.
Definition: Use.cpp:14
Use(const Use &U)=delete
op_iterator op_begin()
Definition: User.h:284
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
Definition: BitVector.h:853