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

Side by Side Diff: src/handles.h

Issue 11411033: Reduced TLS accesses even further. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Reverted accidental change Created 8 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/code-stubs.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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 209
210 // Flattens a string. 210 // Flattens a string.
211 void FlattenString(Handle<String> str); 211 void FlattenString(Handle<String> str);
212 212
213 // Flattens a string and returns the underlying external or sequential 213 // Flattens a string and returns the underlying external or sequential
214 // string. 214 // string.
215 Handle<String> FlattenGetString(Handle<String> str); 215 Handle<String> FlattenGetString(Handle<String> str);
216 216
217 int Utf8Length(Handle<String> str); 217 int Utf8Length(Handle<String> str);
218 218
219 Handle<Object> SetProperty(Handle<Object> object, 219 Handle<Object> SetProperty(Isolate* isolate,
220 Handle<Object> object,
220 Handle<Object> key, 221 Handle<Object> key,
221 Handle<Object> value, 222 Handle<Object> value,
222 PropertyAttributes attributes, 223 PropertyAttributes attributes,
223 StrictModeFlag strict_mode); 224 StrictModeFlag strict_mode);
224 225
225 Handle<Object> ForceSetProperty(Handle<JSObject> object, 226 Handle<Object> ForceSetProperty(Handle<JSObject> object,
226 Handle<Object> key, 227 Handle<Object> key,
227 Handle<Object> value, 228 Handle<Object> value,
228 PropertyAttributes attributes); 229 PropertyAttributes attributes);
229 230
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 inline ~NoHandleAllocation(); 337 inline ~NoHandleAllocation();
337 private: 338 private:
338 int level_; 339 int level_;
339 bool active_; 340 bool active_;
340 #endif 341 #endif
341 }; 342 };
342 343
343 } } // namespace v8::internal 344 } } // namespace v8::internal
344 345
345 #endif // V8_HANDLES_H_ 346 #endif // V8_HANDLES_H_
OLDNEW
« no previous file with comments | « src/code-stubs.cc ('k') | src/handles.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698