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

Side by Side Diff: src/ia32/code-stubs-ia32.h

Issue 7113012: Call a stub for the write barrier on ARM. This is a step (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: '' Created 9 years, 6 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/stub-cache-arm.cc ('k') | src/ia32/code-stubs-ia32.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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 class DictionaryBits: public BitField<int, 0, 3> {}; 518 class DictionaryBits: public BitField<int, 0, 3> {};
519 class ResultBits: public BitField<int, 3, 3> {}; 519 class ResultBits: public BitField<int, 3, 3> {};
520 class IndexBits: public BitField<int, 6, 3> {}; 520 class IndexBits: public BitField<int, 6, 3> {};
521 class LookupModeBits: public BitField<LookupMode, 9, 1> {}; 521 class LookupModeBits: public BitField<LookupMode, 9, 1> {};
522 522
523 Register dictionary_; 523 Register dictionary_;
524 Register result_; 524 Register result_;
525 Register index_; 525 Register index_;
526 LookupMode mode_; 526 LookupMode mode_;
527 }; 527 };
528
529
528 class RecordWriteStub: public CodeStub { 530 class RecordWriteStub: public CodeStub {
529 public: 531 public:
530 RecordWriteStub(Register object, 532 RecordWriteStub(Register object,
531 Register value, 533 Register value,
532 Register address, 534 Register address,
533 RememberedSetAction remembered_set_action, 535 RememberedSetAction remembered_set_action,
534 SaveFPRegsMode fp_mode) 536 SaveFPRegsMode fp_mode)
535 : object_(object), 537 : object_(object),
536 value_(value), 538 value_(value),
537 address_(address), 539 address_(address),
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
777 Register scratch1, 779 Register scratch1,
778 bool load_elements_from_receiver, 780 bool load_elements_from_receiver,
779 Label* key_not_smi, 781 Label* key_not_smi,
780 Label* value_not_smi, 782 Label* value_not_smi,
781 Label* not_pixel_array, 783 Label* not_pixel_array,
782 Label* out_of_range); 784 Label* out_of_range);
783 785
784 } } // namespace v8::internal 786 } } // namespace v8::internal
785 787
786 #endif // V8_IA32_CODE_STUBS_IA32_H_ 788 #endif // V8_IA32_CODE_STUBS_IA32_H_
OLDNEW
« no previous file with comments | « src/arm/stub-cache-arm.cc ('k') | src/ia32/code-stubs-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698