blob: c6e4e89bb34cf3d047d7cd7ff0cf626c687c3ee7 [file] [log] [blame]
Jay Foad59809c72011-01-16 08:10:57 +00001//===-- User.cpp - Implement the User class -------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Chandler Carruth9fb823b2013-01-02 11:36:10 +000010#include "llvm/IR/User.h"
11#include "llvm/IR/Constant.h"
12#include "llvm/IR/GlobalValue.h"
13#include "llvm/IR/Operator.h"
Jay Foad59809c72011-01-16 08:10:57 +000014
15namespace llvm {
Pete Cooper87b925b2015-06-10 22:38:30 +000016class BasicBlock;
Jay Foad59809c72011-01-16 08:10:57 +000017
18//===----------------------------------------------------------------------===//
19// User Class
20//===----------------------------------------------------------------------===//
21
David Blaikie3a15e142011-12-01 08:00:17 +000022void User::anchor() {}
23
Jay Foad59809c72011-01-16 08:10:57 +000024void User::replaceUsesOfWith(Value *From, Value *To) {
25 if (From == To) return; // Duh what?
26
27 assert((!isa<Constant>(this) || isa<GlobalValue>(this)) &&
28 "Cannot call User::replaceUsesOfWith on a constant!");
29
30 for (unsigned i = 0, E = getNumOperands(); i != E; ++i)
31 if (getOperand(i) == From) { // Is This operand is pointing to oldval?
32 // The side effects of this setOperand call include linking to
33 // "To", adding "this" to the uses list of To, and
34 // most importantly, removing "this" from the use list of "From".
35 setOperand(i, To); // Fix it now...
36 }
37}
38
39//===----------------------------------------------------------------------===//
40// User allocHungoffUses Implementation
41//===----------------------------------------------------------------------===//
42
Pete Cooper3fc30402015-06-10 22:38:46 +000043void User::allocHungoffUses(unsigned N, bool IsPhi) {
Pete Cooperc91fda32015-06-12 17:48:14 +000044 assert(HasHungOffUses && "alloc must have hung off uses");
Jay Foad61ea0e42011-06-23 09:09:15 +000045 // Allocate the array of Uses, followed by a pointer (with bottom bit set) to
46 // the User.
47 size_t size = N * sizeof(Use) + sizeof(Use::UserRef);
Pete Cooper87b925b2015-06-10 22:38:30 +000048 if (IsPhi)
49 size += N * sizeof(BasicBlock *);
Jay Foad61ea0e42011-06-23 09:09:15 +000050 Use *Begin = static_cast<Use*>(::operator new(size));
Jay Foad59809c72011-01-16 08:10:57 +000051 Use *End = Begin + N;
Jay Foad5c54d752011-06-20 14:12:33 +000052 (void) new(End) Use::UserRef(const_cast<User*>(this), 1);
Pete Cooper74510a42015-06-12 17:48:05 +000053 setOperandList(Use::initTags(Begin, End));
Jay Foad59809c72011-01-16 08:10:57 +000054}
55
Pete Cooper93f9ff52015-06-10 22:38:41 +000056void User::growHungoffUses(unsigned NewNumUses, bool IsPhi) {
57 assert(HasHungOffUses && "realloc must have hung off uses");
58
59 unsigned OldNumUses = getNumOperands();
60
61 // We don't support shrinking the number of uses. We wouldn't have enough
62 // space to copy the old uses in to the new space.
63 assert(NewNumUses > OldNumUses && "realloc must grow num uses");
64
Pete Cooper74510a42015-06-12 17:48:05 +000065 Use *OldOps = getOperandList();
Pete Cooper93f9ff52015-06-10 22:38:41 +000066 allocHungoffUses(NewNumUses, IsPhi);
Pete Cooper74510a42015-06-12 17:48:05 +000067 Use *NewOps = getOperandList();
Pete Cooper93f9ff52015-06-10 22:38:41 +000068
69 // Now copy from the old operands list to the new one.
70 std::copy(OldOps, OldOps + OldNumUses, NewOps);
71
72 // If this is a Phi, then we need to copy the BB pointers too.
73 if (IsPhi) {
74 auto *OldPtr =
75 reinterpret_cast<char *>(OldOps + OldNumUses) + sizeof(Use::UserRef);
76 auto *NewPtr =
77 reinterpret_cast<char *>(NewOps + NewNumUses) + sizeof(Use::UserRef);
78 std::copy(OldPtr, OldPtr + (OldNumUses * sizeof(BasicBlock *)), NewPtr);
79 }
80 Use::zap(OldOps, OldOps + OldNumUses, true);
81}
82
Jay Foad59809c72011-01-16 08:10:57 +000083//===----------------------------------------------------------------------===//
84// User operator new Implementations
85//===----------------------------------------------------------------------===//
86
Pete Cooperc91fda32015-06-12 17:48:14 +000087void *User::operator new(size_t Size, unsigned Us) {
Pete Cooperb4eede22015-06-12 17:48:10 +000088 assert(Us < (1u << NumUserOperandsBits) && "Too many operands");
Pete Cooperc91fda32015-06-12 17:48:14 +000089 void *Storage = ::operator new(Size + sizeof(Use) * Us);
Jay Foad59809c72011-01-16 08:10:57 +000090 Use *Start = static_cast<Use*>(Storage);
91 Use *End = Start + Us;
92 User *Obj = reinterpret_cast<User*>(End);
Pete Cooperb4eede22015-06-12 17:48:10 +000093 Obj->NumUserOperands = Us;
Pete Cooperb676b012015-06-12 17:48:18 +000094 Obj->HasHungOffUses = false;
Jay Foad59809c72011-01-16 08:10:57 +000095 Use::initTags(Start, End);
96 return Obj;
97}
98
Pete Cooperc91fda32015-06-12 17:48:14 +000099void *User::operator new(size_t Size) {
Pete Cooperb676b012015-06-12 17:48:18 +0000100 // Allocate space for a single Use*
101 void *Storage = ::operator new(Size + sizeof(Use *));
102 Use **HungOffOperandList = static_cast<Use **>(Storage);
103 User *Obj = reinterpret_cast<User *>(HungOffOperandList + 1);
Pete Cooperc91fda32015-06-12 17:48:14 +0000104 Obj->NumUserOperands = 0;
Pete Cooperb676b012015-06-12 17:48:18 +0000105 Obj->HasHungOffUses = true;
106 *HungOffOperandList = nullptr;
Pete Cooperc91fda32015-06-12 17:48:14 +0000107 return Obj;
108}
109
Jay Foad59809c72011-01-16 08:10:57 +0000110//===----------------------------------------------------------------------===//
111// User operator delete Implementation
112//===----------------------------------------------------------------------===//
113
114void User::operator delete(void *Usr) {
Pete Cooperb676b012015-06-12 17:48:18 +0000115 // Hung off uses use a single Use* before the User, while other subclasses
116 // use a Use[] allocated prior to the user.
117 User *Obj = static_cast<User *>(Usr);
118 if (Obj->HasHungOffUses) {
119 Use **HungOffOperandList = static_cast<Use **>(Usr) - 1;
120 // drop the hung off uses.
121 Use::zap(*HungOffOperandList, *HungOffOperandList + Obj->NumUserOperands,
122 /* Delete */ true);
123 ::operator delete(HungOffOperandList);
124 } else {
125 Use *Storage = static_cast<Use *>(Usr) - Obj->NumUserOperands;
126 Use::zap(Storage, Storage + Obj->NumUserOperands,
127 /* Delete */ false);
128 ::operator delete(Storage);
129 }
Jay Foad59809c72011-01-16 08:10:57 +0000130}
131
Richard Smith1f6f4552012-10-24 00:30:41 +0000132//===----------------------------------------------------------------------===//
133// Operator Class
134//===----------------------------------------------------------------------===//
135
136Operator::~Operator() {
137 llvm_unreachable("should never destroy an Operator");
138}
139
Jay Foad59809c72011-01-16 08:10:57 +0000140} // End llvm namespace