Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(369)

Side by Side Diff: test/cctest/test-declarative-accessors.cc

Issue 12297012: Runtime version of declarative native accessors. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: round 2 Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« src/objects.cc ('K') | « test/cctest/cctest.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are
4 // met:
5 //
6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided
11 // with the distribution.
12 // * Neither the name of Google Inc. nor the names of its
13 // contributors may be used to endorse or promote products derived
14 // from this software without specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28 #include <stdlib.h>
29
30 #include "v8.h"
31
32 #include "cctest.h"
33
34 using namespace v8::internal;
35
36
37 class HandleArray : public Malloced {
38 public:
39 static const unsigned kArraySize = 200;
40 explicit HandleArray() {}
41 ~HandleArray() { Reset(v8::Isolate::GetCurrent()); }
42 void Reset(v8::Isolate* isolate) {
43 for (unsigned i = 0; i < kArraySize; i++) {
44 if (handles_[i].IsEmpty()) continue;
45 handles_[i].Dispose(isolate);
46 handles_[i].Clear();
47 }
48 }
49 v8::Persistent<v8::Value> handles_[kArraySize];
50 private:
51 DISALLOW_COPY_AND_ASSIGN(HandleArray);
52 };
53
54
55 // An aligned character array of size 1024.
56 class AlignedArray : public Malloced {
57 public:
58 static const unsigned kArraySize = 1024/sizeof(uint64_t);
59 AlignedArray() { Reset(); }
60
61 void Reset() {
62 for (unsigned i = 0; i < kArraySize; i++) {
63 data_[i] = 0;
64 }
65 }
66
67 template<typename T>
68 T As() { return reinterpret_cast<T>(data_); }
69
70 private:
71 uint64_t data_[kArraySize];
72 DISALLOW_COPY_AND_ASSIGN(AlignedArray);
73 };
74
75
76 class DescriptorTestHelper {
77 public:
78 DescriptorTestHelper() :
79 isolate_(NULL), array_(new AlignedArray), handle_array_(new HandleArray) {
80 v8::V8::Initialize();
81 isolate_ = v8::Isolate::GetCurrent();
82 }
83 v8::Isolate* isolate_;
84 // Data objects.
85 SmartPointer<AlignedArray> array_;
86 SmartPointer<HandleArray> handle_array_;
87 private:
88 DISALLOW_COPY_AND_ASSIGN(DescriptorTestHelper);
89 };
90
91
92 static v8::Local<v8::ObjectTemplate> CreateConstructor(
93 v8::Handle<v8::Context> context,
94 const char* class_name,
95 int internal_field,
96 const char* descriptor_name = NULL,
97 v8::Handle<v8::DeclaredAccessorDescriptor> descriptor =
98 v8::Handle<v8::DeclaredAccessorDescriptor>()) {
99 v8::Local<v8::FunctionTemplate> constructor = v8::FunctionTemplate::New();
100 v8::Local<v8::ObjectTemplate> obj_template = constructor->InstanceTemplate();
101 // Setup object template.
102 if (descriptor_name != NULL && !descriptor.IsEmpty()) {
103 bool added_accessor =
104 obj_template->SetAccessor(v8_str(descriptor_name), descriptor);
105 CHECK(added_accessor);
106 }
107 obj_template->SetInternalFieldCount((internal_field+1)*2 + 7);
108 context->Global()->Set(v8_str(class_name), constructor->GetFunction());
109 return obj_template;
110 }
111
112
113 static void VerifyRead(v8::Handle<v8::DeclaredAccessorDescriptor> descriptor,
114 int internal_field,
115 void* internal_object,
116 v8::Handle<v8::Value> expected_value) {
117 v8::HandleScope scope;
118 LocalContext local_context;
119 v8::Handle<v8::Context> context = local_context.local();
120 CreateConstructor(context, "Accessible", internal_field, "x", descriptor);
121 // Setup object.
122 CompileRun("var accessible = new Accessible();");
123 v8::Local<v8::Object> obj(
124 v8::Object::Cast(*context->Global()->Get(v8_str("accessible"))));
125 obj->SetAlignedPointerInInternalField(internal_field, internal_object);
126 bool added_accessor;
127 added_accessor = obj->SetAccessor(v8_str("y"), descriptor);
128 CHECK(added_accessor);
129 added_accessor = obj->SetAccessor(v8_str("13"), descriptor);
130 CHECK(added_accessor);
131 // Test access from template getter.
132 v8::Local<v8::Value> value;
133 value = CompileRun("accessible.x;");
134 CHECK_EQ(expected_value, value);
135 value = CompileRun("accessible['x'];");
136 CHECK_EQ(expected_value, value);
137 // Test access from object getter.
138 value = CompileRun("accessible.y;");
139 CHECK_EQ(expected_value, value);
140 value = CompileRun("accessible['y'];");
141 CHECK_EQ(expected_value, value);
142 value = CompileRun("accessible[13];");
143 CHECK_EQ(expected_value, value);
144 value = CompileRun("accessible['13'];");
145 CHECK_EQ(expected_value, value);
146 }
147
148
149 static v8::Handle<v8::Value> Convert(int32_t value, v8::Isolate* isolate) {
150 return v8::Integer::New(value, isolate);
151 }
152
153
154 static v8::Handle<v8::Value> Convert(float value, v8::Isolate*) {
155 return v8::Number::New(value);
156 }
157
158
159 static v8::Handle<v8::Value> Convert(double value, v8::Isolate*) {
160 return v8::Number::New(value);
161 }
162
163
164 template<typename T>
165 static void TestPrimitiveValue(
166 T value,
167 v8::DeclaredAccessorDescriptorDataType data_type,
168 DescriptorTestHelper* helper) {
169 v8::HandleScope handle_scope;
170 int index = 17;
171 int internal_field = 6;
172 v8::Handle<v8::DeclaredAccessorDescriptor> descriptor =
173 v8::ObjectOperationDescriptor::New(helper->isolate_, internal_field)
174 ->NewRawShift(helper->isolate_, index*sizeof(T))
175 ->NewPrimitiveValue(helper->isolate_, data_type, 0);
176 v8::Handle<v8::Value> expected = Convert(value, helper->isolate_);
177 helper->array_->Reset();
178 helper->array_->As<T*>()[index] = value;
179 VerifyRead(descriptor, internal_field, *helper->array_, expected);
180 }
181
182
183 TEST(PrimitiveValueRead) {
184 DescriptorTestHelper helper;
185 TestPrimitiveValue<int32_t>(203, v8::kDescriptorInt32Type, &helper);
186 TestPrimitiveValue<float>(23.7f, v8::kDescriptorFloatType, &helper);
187 TestPrimitiveValue<double>(23.7, v8::kDescriptorDoubleType, &helper);
188 }
189
190
191 template<typename T>
192 static void TestBitmaskCompare(T bitmask,
193 T compare_value,
194 DescriptorTestHelper* helper) {
195 v8::HandleScope handle_scope;
196 int index = 13;
197 int internal_field = 4;
198 v8::Handle<v8::RawOperationDescriptor> raw_descriptor =
199 v8::ObjectOperationDescriptor::New(helper->isolate_, internal_field)
200 ->NewRawShift(helper->isolate_, index*sizeof(T));
201 v8::Handle<v8::DeclaredAccessorDescriptor> descriptor;
202 switch (sizeof(T)) {
203 case 1:
204 descriptor =raw_descriptor->NewBitmaskCompare8(
205 helper->isolate_, bitmask, compare_value);
206 break;
207 case 2:
208 descriptor = raw_descriptor->NewBitmaskCompare16(
209 helper->isolate_, bitmask, compare_value);
210 break;
211 case 4:
212 descriptor = raw_descriptor->NewBitmaskCompare32(
213 helper->isolate_, bitmask, compare_value);
214 break;
215 default:
216 CHECK(false);
217 break;
218 }
219 AlignedArray* array = *helper->array_;
220 array->Reset();
221 VerifyRead(descriptor, internal_field, array, v8::False(helper->isolate_));
222 array->As<T*>()[index] = compare_value;
223 VerifyRead(descriptor, internal_field, array, v8::True(helper->isolate_));
224 helper->array_->As<T*>()[index] = compare_value & bitmask;
225 VerifyRead(descriptor, internal_field, array, v8::True(helper->isolate_));
226 }
227
228
229 TEST(BitmaskCompareRead) {
230 DescriptorTestHelper helper;
231 TestBitmaskCompare<uint8_t>(0xf3, 0xa8, &helper);
232 TestBitmaskCompare<uint16_t>(0xfefe, 0x7d42, &helper);
233 TestBitmaskCompare<uint32_t>(0xfefeab18, 0x1234fdec, &helper);
234 }
235
236
237 TEST(PointerCompareRead) {
238 DescriptorTestHelper helper;
239 v8::HandleScope handle_scope;
240 int index = 35;
241 int internal_field = 3;
242 void* ptr = helper.isolate_;
243 v8::Handle<v8::DeclaredAccessorDescriptor> descriptor =
244 v8::ObjectOperationDescriptor::New(helper.isolate_, internal_field)
245 ->NewRawShift(helper.isolate_, index*sizeof(ptr))
246 ->NewPointerCompare(helper.isolate_, ptr);
247 AlignedArray* array = *helper.array_;
248 VerifyRead(descriptor, internal_field, array, v8::False(helper.isolate_));
249 array->As<uintptr_t*>()[index] = reinterpret_cast<uintptr_t>(ptr);
250 VerifyRead(descriptor, internal_field, array, v8::True(helper.isolate_));
251 }
252
253
254 TEST(PointerDereferenceRead) {
255 DescriptorTestHelper helper;
256 v8::HandleScope handle_scope;
257 int first_index = 13;
258 int internal_field = 7;
259 int second_index = 11;
260 int pointed_to_index = 75;
261 uint16_t expected = 0x1425;
262 v8::Handle<v8::DeclaredAccessorDescriptor> descriptor =
263 v8::ObjectOperationDescriptor::New(helper.isolate_, internal_field)
264 ->NewRawShift(helper.isolate_, first_index*kPointerSize)
265 ->NewRawDereference(helper.isolate_)
266 ->NewRawShift(helper.isolate_, second_index*sizeof(int16_t))
267 ->NewPrimitiveValue(helper.isolate_, v8::kDescriptorInt16Type, 0);
268 AlignedArray* array = *helper.array_;
269 array->As<uintptr_t**>()[first_index] =
270 &array->As<uintptr_t*>()[pointed_to_index];
271 VerifyRead(descriptor, internal_field, array, v8::Integer::New(0));
272 second_index += pointed_to_index*sizeof(uintptr_t)/sizeof(uint16_t);
273 array->As<uint16_t*>()[second_index] = expected;
274 VerifyRead(descriptor, internal_field, array, v8::Integer::New(expected));
275 }
276
277
278 TEST(HandleDereferenceRead) {
279 DescriptorTestHelper helper;
280 v8::HandleScope handle_scope;
281 int index = 13;
282 int internal_field = 0;
283 v8::Handle<v8::DeclaredAccessorDescriptor> descriptor =
284 v8::ObjectOperationDescriptor::New(helper.isolate_, internal_field)
285 ->NewRawShift(helper.isolate_, index*kPointerSize)
286 ->NewHandleDereference(helper.isolate_);
287 HandleArray* array = *helper.handle_array_;
288 v8::Handle<v8::String> expected = v8_str("whatever");
289 array->handles_[index] = v8::Persistent<v8::Value>::New(expected);
290 VerifyRead(descriptor, internal_field, array, expected);
291 }
292
OLDNEW
« src/objects.cc ('K') | « test/cctest/cctest.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698