1 //===-- llvm/SymbolTableListTraitsImpl.h - Implementation ------*- C++ -*--===//
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
7 //===----------------------------------------------------------------------===//
9 // This file implements the stickier parts of the SymbolTableListTraits class,
10 // and is explicitly instantiated where needed to avoid defining all this code
11 // in a widely used header.
13 //===----------------------------------------------------------------------===//
15 #ifndef LLVM_LIB_IR_SYMBOLTABLELISTTRAITSIMPL_H
16 #define LLVM_LIB_IR_SYMBOLTABLELISTTRAITSIMPL_H
18 #include "llvm/IR/SymbolTableListTraits.h"
19 #include "llvm/IR/ValueSymbolTable.h"
23 /// setSymTabObject - This is called when (f.e.) the parent of a basic block
24 /// changes. This requires us to remove all the instruction symtab entries from
25 /// the current function and reinsert them into the new function.
26 template <typename ValueSubClass
>
27 template <typename TPtr
>
28 void SymbolTableListTraits
<ValueSubClass
>::setSymTabObject(TPtr
*Dest
,
30 // Get the old symtab and value list before doing the assignment.
31 ValueSymbolTable
*OldST
= getSymTab(getListOwner());
36 // Get the new SymTab object.
37 ValueSymbolTable
*NewST
= getSymTab(getListOwner());
39 // If there is nothing to do, quick exit.
40 if (OldST
== NewST
) return;
42 // Move all the elements from the old symtab to the new one.
43 ListTy
&ItemList
= getList(getListOwner());
44 if (ItemList
.empty()) return;
47 // Remove all entries from the previous symtab.
48 for (auto I
= ItemList
.begin(); I
!= ItemList
.end(); ++I
)
50 OldST
->removeValueName(I
->getValueName());
54 // Add all of the items to the new symtab.
55 for (auto I
= ItemList
.begin(); I
!= ItemList
.end(); ++I
)
57 NewST
->reinsertValue(&*I
);
62 template <typename ValueSubClass
>
63 void SymbolTableListTraits
<ValueSubClass
>::addNodeToList(ValueSubClass
*V
) {
64 assert(!V
->getParent() && "Value already in a container!!");
65 ItemParentClass
*Owner
= getListOwner();
68 if (ValueSymbolTable
*ST
= getSymTab(Owner
))
72 template <typename ValueSubClass
>
73 void SymbolTableListTraits
<ValueSubClass
>::removeNodeFromList(
75 V
->setParent(nullptr);
77 if (ValueSymbolTable
*ST
= getSymTab(getListOwner()))
78 ST
->removeValueName(V
->getValueName());
81 template <typename ValueSubClass
>
82 void SymbolTableListTraits
<ValueSubClass
>::transferNodesFromList(
83 SymbolTableListTraits
&L2
, iterator first
, iterator last
) {
84 // We only have to do work here if transferring instructions between BBs
85 ItemParentClass
*NewIP
= getListOwner(), *OldIP
= L2
.getListOwner();
89 // We only have to update symbol table entries if we are transferring the
90 // instructions to a different symtab object...
91 ValueSymbolTable
*NewST
= getSymTab(NewIP
);
92 ValueSymbolTable
*OldST
= getSymTab(OldIP
);
94 for (; first
!= last
; ++first
) {
95 ValueSubClass
&V
= *first
;
96 bool HasName
= V
.hasName();
98 OldST
->removeValueName(V
.getValueName());
100 if (NewST
&& HasName
)
101 NewST
->reinsertValue(&V
);
104 // Just transferring between blocks in the same function, simply update the
105 // parent fields in the instructions...
106 for (; first
!= last
; ++first
)
107 first
->setParent(NewIP
);
111 } // End llvm namespace