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

Side by Side Diff: src/handles.h

Issue 12114054: Supporting AllocationSiteInfo for Nested arrays (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressing a port compile failure Created 7 years, 9 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/full-codegen.h ('k') | src/handles.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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 Handle<String> name, 237 Handle<String> name,
238 PropertyAttributes* attributes); 238 PropertyAttributes* attributes);
239 239
240 Handle<Object> SetPrototype(Handle<JSObject> obj, Handle<Object> value); 240 Handle<Object> SetPrototype(Handle<JSObject> obj, Handle<Object> value);
241 241
242 Handle<Object> LookupSingleCharacterStringFromCode(Isolate* isolate, 242 Handle<Object> LookupSingleCharacterStringFromCode(Isolate* isolate,
243 uint32_t index); 243 uint32_t index);
244 244
245 Handle<JSObject> Copy(Handle<JSObject> obj); 245 Handle<JSObject> Copy(Handle<JSObject> obj);
246 246
247 Handle<JSObject> DeepCopy(Handle<JSObject> obj);
248
247 Handle<Object> SetAccessor(Handle<JSObject> obj, Handle<AccessorInfo> info); 249 Handle<Object> SetAccessor(Handle<JSObject> obj, Handle<AccessorInfo> info);
248 250
249 Handle<FixedArray> AddKeysFromJSArray(Handle<FixedArray>, 251 Handle<FixedArray> AddKeysFromJSArray(Handle<FixedArray>,
250 Handle<JSArray> array); 252 Handle<JSArray> array);
251 253
252 // Get the JS object corresponding to the given script; create it 254 // Get the JS object corresponding to the given script; create it
253 // if none exists. 255 // if none exists.
254 Handle<JSValue> GetScriptWrapper(Handle<Script> script); 256 Handle<JSValue> GetScriptWrapper(Handle<Script> script);
255 257
256 // Script line number computations. Note that the line number is zero-based. 258 // Script line number computations. Note that the line number is zero-based.
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 inline ~HandleDereferenceGuard(); 352 inline ~HandleDereferenceGuard();
351 private: 353 private:
352 Isolate* isolate_; 354 Isolate* isolate_;
353 bool old_state_; 355 bool old_state_;
354 #endif 356 #endif
355 }; 357 };
356 358
357 } } // namespace v8::internal 359 } } // namespace v8::internal
358 360
359 #endif // V8_HANDLES_H_ 361 #endif // V8_HANDLES_H_
OLDNEW
« no previous file with comments | « src/full-codegen.h ('k') | src/handles.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698