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

Side by Side Diff: src/factory.h

Issue 914003: LiveEdit: patch positions in function (Closed)
Patch Set: merge Created 10 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
« no previous file with comments | « no previous file | src/factory.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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 Handle<Context> context, 223 Handle<Context> context,
224 PretenureFlag pretenure = TENURED); 224 PretenureFlag pretenure = TENURED);
225 225
226 static Handle<Code> NewCode(const CodeDesc& desc, 226 static Handle<Code> NewCode(const CodeDesc& desc,
227 ZoneScopeInfo* sinfo, 227 ZoneScopeInfo* sinfo,
228 Code::Flags flags, 228 Code::Flags flags,
229 Handle<Object> self_reference); 229 Handle<Object> self_reference);
230 230
231 static Handle<Code> CopyCode(Handle<Code> code); 231 static Handle<Code> CopyCode(Handle<Code> code);
232 232
233 static Handle<Code> CopyCode(Handle<Code> code, Vector<byte> reloc_info);
234
233 static Handle<Object> ToObject(Handle<Object> object); 235 static Handle<Object> ToObject(Handle<Object> object);
234 static Handle<Object> ToObject(Handle<Object> object, 236 static Handle<Object> ToObject(Handle<Object> object,
235 Handle<Context> global_context); 237 Handle<Context> global_context);
236 238
237 // Interface for creating error objects. 239 // Interface for creating error objects.
238 240
239 static Handle<Object> NewError(const char* maker, const char* type, 241 static Handle<Object> NewError(const char* maker, const char* type,
240 Handle<JSArray> args); 242 Handle<JSArray> args);
241 static Handle<Object> NewError(const char* maker, const char* type, 243 static Handle<Object> NewError(const char* maker, const char* type,
242 Vector< Handle<Object> > args); 244 Vector< Handle<Object> > args);
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 // Update the map cache in the global context with (keys, map) 388 // Update the map cache in the global context with (keys, map)
387 static Handle<MapCache> AddToMapCache(Handle<Context> context, 389 static Handle<MapCache> AddToMapCache(Handle<Context> context,
388 Handle<FixedArray> keys, 390 Handle<FixedArray> keys,
389 Handle<Map> map); 391 Handle<Map> map);
390 }; 392 };
391 393
392 394
393 } } // namespace v8::internal 395 } } // namespace v8::internal
394 396
395 #endif // V8_FACTORY_H_ 397 #endif // V8_FACTORY_H_
OLDNEW
« no previous file with comments | « no previous file | src/factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698