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

Side by Side Diff: src/arm/lithium-codegen-arm.h

Issue 12114054: Supporting AllocationSiteInfo for Nested arrays (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Some updates Created 7 years, 10 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 359
360 void EmitLoadFieldOrConstantFunction(Register result, 360 void EmitLoadFieldOrConstantFunction(Register result,
361 Register object, 361 Register object,
362 Handle<Map> type, 362 Handle<Map> type,
363 Handle<String> name, 363 Handle<String> name,
364 LEnvironment* env); 364 LEnvironment* env);
365 365
366 // Emits optimized code to deep-copy the contents of statically known 366 // Emits optimized code to deep-copy the contents of statically known
367 // object graphs (e.g. object literal boilerplate). 367 // object graphs (e.g. object literal boilerplate).
368 void EmitDeepCopy(Handle<JSObject> object, 368 void EmitDeepCopy(Handle<JSObject> object,
369 Handle<JSObject> original_object,
369 Register result, 370 Register result,
370 Register source, 371 Register source,
371 int* offset, 372 int* offset,
372 AllocationSiteMode mode); 373 AllocationSiteMode mode);
373 374
374 // Emit optimized code for integer division. 375 // Emit optimized code for integer division.
375 // Inputs are signed. 376 // Inputs are signed.
376 // All registers are clobbered. 377 // All registers are clobbered.
377 // If 'remainder' is no_reg, it is not computed. 378 // If 'remainder' is no_reg, it is not computed.
378 void EmitSignedIntegerDivisionByConstant(Register result, 379 void EmitSignedIntegerDivisionByConstant(Register result,
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 LCodeGen* codegen_; 507 LCodeGen* codegen_;
507 Label entry_; 508 Label entry_;
508 Label exit_; 509 Label exit_;
509 Label* external_exit_; 510 Label* external_exit_;
510 int instruction_index_; 511 int instruction_index_;
511 }; 512 };
512 513
513 } } // namespace v8::internal 514 } } // namespace v8::internal
514 515
515 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ 516 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698