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

Side by Side Diff: test/cctest/test-api.cc

Issue 78453002: Reland r17907 - Make it possible to add more than one piece of embedder data to isolates" (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: updates Created 7 years, 1 month 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
« no previous file with comments | « src/isolate.cc ('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
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 19919 matching lines...) Expand 10 before | Expand all | Expand 10 after
19930 i::Handle<i::Object> false_value = factory->false_value(); 19930 i::Handle<i::Object> false_value = factory->false_value();
19931 CHECK(*v8::Utils::OpenHandle(*v8::False(isolate)) == *false_value); 19931 CHECK(*v8::Utils::OpenHandle(*v8::False(isolate)) == *false_value);
19932 } 19932 }
19933 19933
19934 19934
19935 UNINITIALIZED_TEST(IsolateEmbedderData) { 19935 UNINITIALIZED_TEST(IsolateEmbedderData) {
19936 CcTest::DisableAutomaticDispose(); 19936 CcTest::DisableAutomaticDispose();
19937 v8::Isolate* isolate = v8::Isolate::New(); 19937 v8::Isolate* isolate = v8::Isolate::New();
19938 isolate->Enter(); 19938 isolate->Enter();
19939 i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate); 19939 i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
19940 CHECK_EQ(NULL, isolate->GetData()); 19940 for (uint32_t slot = 0; slot < v8::Isolate::GetNumberOfDataSlots(); ++slot) {
19941 CHECK_EQ(NULL, i_isolate->GetData()); 19941 CHECK_EQ(NULL, isolate->GetData(slot));
19942 static void* data1 = reinterpret_cast<void*>(0xacce55ed); 19942 CHECK_EQ(NULL, i_isolate->GetData(slot));
19943 isolate->SetData(data1); 19943 }
19944 CHECK_EQ(data1, isolate->GetData()); 19944 for (uint32_t slot = 0; slot < v8::Isolate::GetNumberOfDataSlots(); ++slot) {
19945 CHECK_EQ(data1, i_isolate->GetData()); 19945 void* data = reinterpret_cast<void*>(0xacce55ed + slot);
19946 static void* data2 = reinterpret_cast<void*>(0xdecea5ed); 19946 isolate->SetData(slot, data);
19947 i_isolate->SetData(data2); 19947 }
19948 CHECK_EQ(data2, isolate->GetData()); 19948 for (uint32_t slot = 0; slot < v8::Isolate::GetNumberOfDataSlots(); ++slot) {
19949 CHECK_EQ(data2, i_isolate->GetData()); 19949 void* data = reinterpret_cast<void*>(0xacce55ed + slot);
19950 CHECK_EQ(data, isolate->GetData(slot));
19951 CHECK_EQ(data, i_isolate->GetData(slot));
19952 }
19953 for (uint32_t slot = 0; slot < v8::Isolate::GetNumberOfDataSlots(); ++slot) {
19954 void* data = reinterpret_cast<void*>(0xdecea5ed + slot);
19955 isolate->SetData(slot, data);
19956 }
19957 for (uint32_t slot = 0; slot < v8::Isolate::GetNumberOfDataSlots(); ++slot) {
19958 void* data = reinterpret_cast<void*>(0xdecea5ed + slot);
19959 CHECK_EQ(data, isolate->GetData(slot));
19960 CHECK_EQ(data, i_isolate->GetData(slot));
19961 }
19950 isolate->Exit(); 19962 isolate->Exit();
19951 isolate->Dispose(); 19963 isolate->Dispose();
19952 } 19964 }
19953 19965
19954 19966
19955 TEST(StringEmpty) { 19967 TEST(StringEmpty) {
19956 LocalContext context; 19968 LocalContext context;
19957 i::Factory* factory = CcTest::i_isolate()->factory(); 19969 i::Factory* factory = CcTest::i_isolate()->factory();
19958 v8::Isolate* isolate = CcTest::isolate(); 19970 v8::Isolate* isolate = CcTest::isolate();
19959 v8::HandleScope scope(isolate); 19971 v8::HandleScope scope(isolate);
(...skipping 852 matching lines...) Expand 10 before | Expand all | Expand 10 after
20812 } 20824 }
20813 for (int i = 0; i < runs; i++) { 20825 for (int i = 0; i < runs; i++) {
20814 Local<String> expected; 20826 Local<String> expected;
20815 if (i != 0) { 20827 if (i != 0) {
20816 CHECK_EQ(v8_str("escape value"), values[i]); 20828 CHECK_EQ(v8_str("escape value"), values[i]);
20817 } else { 20829 } else {
20818 CHECK(values[i].IsEmpty()); 20830 CHECK(values[i].IsEmpty());
20819 } 20831 }
20820 } 20832 }
20821 } 20833 }
OLDNEW
« no previous file with comments | « src/isolate.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698