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

Side by Side Diff: src/handles.h

Issue 12880017: Build fast literals in hydrogen. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 8 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/arm/lithium-codegen-arm.cc ('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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 Handle<Object> obj, 235 Handle<Object> obj,
236 Handle<Object> key); 236 Handle<Object> key);
237 237
238 Handle<Object> SetPrototype(Handle<JSObject> obj, Handle<Object> value); 238 Handle<Object> SetPrototype(Handle<JSObject> obj, Handle<Object> value);
239 239
240 Handle<Object> LookupSingleCharacterStringFromCode(Isolate* isolate, 240 Handle<Object> LookupSingleCharacterStringFromCode(Isolate* isolate,
241 uint32_t index); 241 uint32_t index);
242 242
243 Handle<JSObject> Copy(Handle<JSObject> obj); 243 Handle<JSObject> Copy(Handle<JSObject> obj);
244 244
245 Handle<JSObject> DeepCopy(Handle<JSObject> obj);
246
245 Handle<Object> SetAccessor(Handle<JSObject> obj, Handle<AccessorInfo> info); 247 Handle<Object> SetAccessor(Handle<JSObject> obj, Handle<AccessorInfo> info);
246 248
247 Handle<FixedArray> AddKeysFromJSArray(Handle<FixedArray>, 249 Handle<FixedArray> AddKeysFromJSArray(Handle<FixedArray>,
248 Handle<JSArray> array); 250 Handle<JSArray> array);
249 251
250 // Get the JS object corresponding to the given script; create it 252 // Get the JS object corresponding to the given script; create it
251 // if none exists. 253 // if none exists.
252 Handle<JSValue> GetScriptWrapper(Handle<Script> script); 254 Handle<JSValue> GetScriptWrapper(Handle<Script> script);
253 255
254 // Script line number computations. Note that the line number is zero-based. 256 // Script line number computations. Note that the line number is zero-based.
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 inline ~HandleDereferenceGuard(); 350 inline ~HandleDereferenceGuard();
349 private: 351 private:
350 Isolate* isolate_; 352 Isolate* isolate_;
351 bool old_state_; 353 bool old_state_;
352 #endif 354 #endif
353 }; 355 };
354 356
355 } } // namespace v8::internal 357 } } // namespace v8::internal
356 358
357 #endif // V8_HANDLES_H_ 359 #endif // V8_HANDLES_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/handles.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698