blob: 93fe1874786aa8a73c65b569e063bea1d8bbc1cc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
#include "libexpr/value.hh"
#include <glog/logging.h>
namespace nix {
Value::Value(const Value& copy) { *this = copy; }
Value::Value(Value&& move) { *this = move; }
Value& Value::operator=(const Value& copy) {
if (type != copy.type) {
memset(this, 0, sizeof(*this));
}
type = copy.type;
switch (type) {
case tInt:
integer = copy.integer;
break;
case tBool:
boolean = copy.boolean;
break;
case tString:
string = copy.string;
break;
case tPath:
path = copy.path;
break;
case tNull:
/* no fields */
break;
case tAttrs:
attrs = copy.attrs;
break;
case tList:
list = copy.list;
break;
case tThunk:
thunk = copy.thunk;
break;
case tApp:
app = copy.app;
break;
case tLambda:
lambda = copy.lambda;
break;
case tBlackhole:
/* no fields */
break;
case tPrimOp:
primOp = copy.primOp;
break;
case tPrimOpApp:
primOpApp = copy.primOpApp;
break;
case _reserved1:
LOG(FATAL) << "attempted to assign a tExternal value";
break;
case tFloat:
fpoint = copy.fpoint;
break;
}
return *this;
}
Value& Value::operator=(Value&& move) {
if (type != move.type) {
memset(this, 0, sizeof(*this));
}
type = move.type;
switch (type) {
case tInt:
integer = move.integer;
break;
case tBool:
boolean = move.boolean;
break;
case tString:
string = move.string;
break;
case tPath:
path = move.path;
break;
case tNull:
/* no fields */
break;
case tAttrs:
attrs = move.attrs;
break;
case tList:
list = move.list;
break;
case tThunk:
thunk = move.thunk;
break;
case tApp:
app = move.app;
break;
case tLambda:
lambda = move.lambda;
break;
case tBlackhole:
/* no fields */
break;
case tPrimOp:
primOp = move.primOp;
break;
case tPrimOpApp:
primOpApp = move.primOpApp;
break;
case _reserved1:
LOG(FATAL) << "attempted to assign a tExternal value";
break;
case tFloat:
fpoint = move.fpoint;
break;
}
return *this;
}
} // namespace nix
|