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

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

Issue 260003006: Added a Isolate* parameter to Serializer::enabled(). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased. Feedback. Created 6 years, 7 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/macro-assembler-arm.cc ('k') | src/arm64/assembler-arm64.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_ARM64_ASSEMBLER_ARM64_H_ 5 #ifndef V8_ARM64_ASSEMBLER_ARM64_H_
6 #define V8_ARM64_ASSEMBLER_ARM64_H_ 6 #define V8_ARM64_ASSEMBLER_ARM64_H_
7 7
8 #include <list> 8 #include <list>
9 #include <map> 9 #include <map>
10 10
(...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after
642 642
643 inline int64_t immediate() const; 643 inline int64_t immediate() const;
644 inline Register reg() const; 644 inline Register reg() const;
645 inline Shift shift() const; 645 inline Shift shift() const;
646 inline Extend extend() const; 646 inline Extend extend() const;
647 inline unsigned shift_amount() const; 647 inline unsigned shift_amount() const;
648 648
649 // Relocation information. 649 // Relocation information.
650 RelocInfo::Mode rmode() const { return rmode_; } 650 RelocInfo::Mode rmode() const { return rmode_; }
651 void set_rmode(RelocInfo::Mode rmode) { rmode_ = rmode; } 651 void set_rmode(RelocInfo::Mode rmode) { rmode_ = rmode; }
652 bool NeedsRelocation() const; 652 bool NeedsRelocation(Isolate* isolate) const;
653 653
654 // Helpers 654 // Helpers
655 inline static Operand UntagSmi(Register smi); 655 inline static Operand UntagSmi(Register smi);
656 inline static Operand UntagSmiAndScale(Register smi, int scale); 656 inline static Operand UntagSmiAndScale(Register smi, int scale);
657 657
658 private: 658 private:
659 void initialize_handle(Handle<Object> value); 659 void initialize_handle(Handle<Object> value);
660 int64_t immediate_; 660 int64_t immediate_;
661 Register reg_; 661 Register reg_;
662 Shift shift_; 662 Shift shift_;
(...skipping 1562 matching lines...) Expand 10 before | Expand all | Expand 10 after
2225 class EnsureSpace BASE_EMBEDDED { 2225 class EnsureSpace BASE_EMBEDDED {
2226 public: 2226 public:
2227 explicit EnsureSpace(Assembler* assembler) { 2227 explicit EnsureSpace(Assembler* assembler) {
2228 assembler->CheckBufferSpace(); 2228 assembler->CheckBufferSpace();
2229 } 2229 }
2230 }; 2230 };
2231 2231
2232 } } // namespace v8::internal 2232 } } // namespace v8::internal
2233 2233
2234 #endif // V8_ARM64_ASSEMBLER_ARM64_H_ 2234 #endif // V8_ARM64_ASSEMBLER_ARM64_H_
OLDNEW
« no previous file with comments | « src/arm/macro-assembler-arm.cc ('k') | src/arm64/assembler-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698