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

Side by Side Diff: src/arm/assembler-arm.h

Issue 484643002: Version 3.28.71.3 (merged r23081) (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.28
Patch Set: Created 6 years, 4 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/api.cc ('k') | src/arm/lithium-arm.h » ('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 (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions 5 // modification, are permitted provided that the following conditions
6 // are met: 6 // are met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after
642 NeonListType type() const { return type_; } 642 NeonListType type() const { return type_; }
643 private: 643 private:
644 DoubleRegister base_; 644 DoubleRegister base_;
645 NeonListType type_; 645 NeonListType type_;
646 }; 646 };
647 647
648 648
649 // Class used to build a constant pool. 649 // Class used to build a constant pool.
650 class ConstantPoolBuilder BASE_EMBEDDED { 650 class ConstantPoolBuilder BASE_EMBEDDED {
651 public: 651 public:
652 explicit ConstantPoolBuilder(); 652 ConstantPoolBuilder();
653 ConstantPoolArray::LayoutSection AddEntry(Assembler* assm, 653 ConstantPoolArray::LayoutSection AddEntry(Assembler* assm,
654 const RelocInfo& rinfo); 654 const RelocInfo& rinfo);
655 void Relocate(int pc_delta); 655 void Relocate(int pc_delta);
656 bool IsEmpty(); 656 bool IsEmpty();
657 Handle<ConstantPoolArray> New(Isolate* isolate); 657 Handle<ConstantPoolArray> New(Isolate* isolate);
658 void Populate(Assembler* assm, ConstantPoolArray* constant_pool); 658 void Populate(Assembler* assm, ConstantPoolArray* constant_pool);
659 659
660 inline ConstantPoolArray::LayoutSection current_section() const { 660 inline ConstantPoolArray::LayoutSection current_section() const {
661 return current_section_; 661 return current_section_;
662 } 662 }
(...skipping 995 matching lines...) Expand 10 before | Expand all | Expand 10 after
1658 public: 1658 public:
1659 explicit EnsureSpace(Assembler* assembler) { 1659 explicit EnsureSpace(Assembler* assembler) {
1660 assembler->CheckBuffer(); 1660 assembler->CheckBuffer();
1661 } 1661 }
1662 }; 1662 };
1663 1663
1664 1664
1665 } } // namespace v8::internal 1665 } } // namespace v8::internal
1666 1666
1667 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1667 #endif // V8_ARM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « src/api.cc ('k') | src/arm/lithium-arm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698