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

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

Issue 345523002: An object should only be promoted to the old generation if it survived a scavenge operation. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 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
« no previous file with comments | « src/mark-compact.cc ('k') | test/cctest/test-heap.cc » ('j') | 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 19812 matching lines...) Expand 10 before | Expand all | Expand 10 after
19823 TEST(PersistentHandleInNewSpaceVisitor) { 19823 TEST(PersistentHandleInNewSpaceVisitor) {
19824 LocalContext context; 19824 LocalContext context;
19825 v8::Isolate* isolate = context->GetIsolate(); 19825 v8::Isolate* isolate = context->GetIsolate();
19826 v8::HandleScope scope(isolate); 19826 v8::HandleScope scope(isolate);
19827 v8::Persistent<v8::Object> object1(isolate, v8::Object::New(isolate)); 19827 v8::Persistent<v8::Object> object1(isolate, v8::Object::New(isolate));
19828 CHECK_EQ(0, object1.WrapperClassId()); 19828 CHECK_EQ(0, object1.WrapperClassId());
19829 object1.SetWrapperClassId(42); 19829 object1.SetWrapperClassId(42);
19830 CHECK_EQ(42, object1.WrapperClassId()); 19830 CHECK_EQ(42, object1.WrapperClassId());
19831 19831
19832 CcTest::heap()->CollectAllGarbage(i::Heap::kNoGCFlags); 19832 CcTest::heap()->CollectAllGarbage(i::Heap::kNoGCFlags);
19833 CcTest::heap()->CollectAllGarbage(i::Heap::kNoGCFlags);
19833 19834
19834 v8::Persistent<v8::Object> object2(isolate, v8::Object::New(isolate)); 19835 v8::Persistent<v8::Object> object2(isolate, v8::Object::New(isolate));
19835 CHECK_EQ(0, object2.WrapperClassId()); 19836 CHECK_EQ(0, object2.WrapperClassId());
19836 object2.SetWrapperClassId(42); 19837 object2.SetWrapperClassId(42);
19837 CHECK_EQ(42, object2.WrapperClassId()); 19838 CHECK_EQ(42, object2.WrapperClassId());
19838 19839
19839 Visitor42 visitor(&object2); 19840 Visitor42 visitor(&object2);
19840 v8::V8::VisitHandlesForPartialDependence(isolate, &visitor); 19841 v8::V8::VisitHandlesForPartialDependence(isolate, &visitor);
19841 CHECK_EQ(1, visitor.counter_); 19842 CHECK_EQ(1, visitor.counter_);
19842 19843
(...skipping 2956 matching lines...) Expand 10 before | Expand all | Expand 10 after
22799 call_eval_context = v8::Context::New(isolate); 22800 call_eval_context = v8::Context::New(isolate);
22800 v8::Context::Scope scope(call_eval_context); 22801 v8::Context::Scope scope(call_eval_context);
22801 call_eval_bound_function = 22802 call_eval_bound_function =
22802 Local<Function>::Cast(CompileRun("eval.bind(this, '1')")); 22803 Local<Function>::Cast(CompileRun("eval.bind(this, '1')"));
22803 } 22804 }
22804 env->Global()->Set(v8_str("CallEval"), 22805 env->Global()->Set(v8_str("CallEval"),
22805 v8::FunctionTemplate::New(isolate, CallEval)->GetFunction()); 22806 v8::FunctionTemplate::New(isolate, CallEval)->GetFunction());
22806 Local<Value> result = CompileRun("CallEval();"); 22807 Local<Value> result = CompileRun("CallEval();");
22807 CHECK_EQ(result, v8::Integer::New(isolate, 1)); 22808 CHECK_EQ(result, v8::Integer::New(isolate, 1));
22808 } 22809 }
OLDNEW
« no previous file with comments | « src/mark-compact.cc ('k') | test/cctest/test-heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698