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

Side by Side Diff: src/api.cc

Issue 7851013: Fixing shared library build of d8. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 3 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 | « no previous file | src/d8.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 4961 matching lines...) Expand 10 before | Expand all | Expand 10 after
4972 4972
4973 void V8::RemoveMemoryAllocationCallback(MemoryAllocationCallback callback) { 4973 void V8::RemoveMemoryAllocationCallback(MemoryAllocationCallback callback) {
4974 i::Isolate* isolate = i::Isolate::Current(); 4974 i::Isolate* isolate = i::Isolate::Current();
4975 if (IsDeadCheck(isolate, "v8::V8::RemoveMemoryAllocationCallback()")) return; 4975 if (IsDeadCheck(isolate, "v8::V8::RemoveMemoryAllocationCallback()")) return;
4976 isolate->memory_allocator()->RemoveMemoryAllocationCallback( 4976 isolate->memory_allocator()->RemoveMemoryAllocationCallback(
4977 callback); 4977 callback);
4978 } 4978 }
4979 4979
4980 4980
4981 void V8::PauseProfiler() { 4981 void V8::PauseProfiler() {
4982 ApiCheck(i::FLAG_prof,
4983 "V8::ResumeProfiler",
Jakob Kummerow 2011/09/08 09:48:54 s/Resume/Pause/
4984 "Profiling has to be enabled with --prof");
4982 i::Isolate* isolate = i::Isolate::Current(); 4985 i::Isolate* isolate = i::Isolate::Current();
4983 isolate->logger()->PauseProfiler(); 4986 isolate->logger()->PauseProfiler();
4984 } 4987 }
4985 4988
4986 4989
4987 void V8::ResumeProfiler() { 4990 void V8::ResumeProfiler() {
4991 ApiCheck(i::FLAG_prof,
4992 "V8::ResumeProfiler",
4993 "Profiling has to be enabled with --prof");
4988 i::Isolate* isolate = i::Isolate::Current(); 4994 i::Isolate* isolate = i::Isolate::Current();
4989 isolate->logger()->ResumeProfiler(); 4995 isolate->logger()->ResumeProfiler();
4990 } 4996 }
4991 4997
4992 4998
4993 bool V8::IsProfilerPaused() { 4999 bool V8::IsProfilerPaused() {
4994 i::Isolate* isolate = i::Isolate::Current(); 5000 i::Isolate* isolate = i::Isolate::Current();
4995 return isolate->logger()->IsProfilerPaused(); 5001 return isolate->logger()->IsProfilerPaused();
4996 } 5002 }
4997 5003
(...skipping 1040 matching lines...) Expand 10 before | Expand all | Expand 10 after
6038 6044
6039 6045
6040 char* HandleScopeImplementer::Iterate(ObjectVisitor* v, char* storage) { 6046 char* HandleScopeImplementer::Iterate(ObjectVisitor* v, char* storage) {
6041 HandleScopeImplementer* scope_implementer = 6047 HandleScopeImplementer* scope_implementer =
6042 reinterpret_cast<HandleScopeImplementer*>(storage); 6048 reinterpret_cast<HandleScopeImplementer*>(storage);
6043 scope_implementer->IterateThis(v); 6049 scope_implementer->IterateThis(v);
6044 return storage + ArchiveSpacePerThread(); 6050 return storage + ArchiveSpacePerThread();
6045 } 6051 }
6046 6052
6047 } } // namespace v8::internal 6053 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/d8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698