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

Side by Side Diff: runtime/vm/constants_arm64.h

Issue 616873003: Use UnboxedInt32 and UnboxedUint32 representation for LoadIndexedInstr (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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 (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_CONSTANTS_ARM64_H_ 5 #ifndef VM_CONSTANTS_ARM64_H_
6 #define VM_CONSTANTS_ARM64_H_ 6 #define VM_CONSTANTS_ARM64_H_
7 7
8 #include "platform/assert.h" 8 #include "platform/assert.h"
9 9
10 namespace dart { 10 namespace dart {
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 }; 555 };
556 556
557 // C3.6.30 557 // C3.6.30
558 enum FPIntCvtOp { 558 enum FPIntCvtOp {
559 FPIntCvtMask = 0x5f20fc00, 559 FPIntCvtMask = 0x5f20fc00,
560 FPIntCvtFixed = FPFixed | B21, 560 FPIntCvtFixed = FPFixed | B21,
561 FMOVRD = FPIntCvtFixed | B31 | B22 | B18 | B17, 561 FMOVRD = FPIntCvtFixed | B31 | B22 | B18 | B17,
562 FMOVDR = FPIntCvtFixed | B31 | B22 | B18 | B17 | B16, 562 FMOVDR = FPIntCvtFixed | B31 | B22 | B18 | B17 | B16,
563 FCVTZDS = FPIntCvtFixed | B31 | B22 | B20 | B19, 563 FCVTZDS = FPIntCvtFixed | B31 | B22 | B20 | B19,
564 SCVTFD = FPIntCvtFixed | B31 | B22 | B17, 564 SCVTFD = FPIntCvtFixed | B31 | B22 | B17,
565 SCVTFD32 = FPIntCvtFixed | B22 | B17,
565 }; 566 };
566 567
567 568
568 #define APPLY_OP_LIST(_V) \ 569 #define APPLY_OP_LIST(_V) \
569 _V(DPImmediate) \ 570 _V(DPImmediate) \
570 _V(CompareBranch) \ 571 _V(CompareBranch) \
571 _V(LoadStore) \ 572 _V(LoadStore) \
572 _V(DPRegister) \ 573 _V(DPRegister) \
573 _V(DPSimd1) \ 574 _V(DPSimd1) \
574 _V(DPSimd2) \ 575 _V(DPSimd2) \
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
1017 static Instr* At(uword pc) { return reinterpret_cast<Instr*>(pc); } 1018 static Instr* At(uword pc) { return reinterpret_cast<Instr*>(pc); }
1018 1019
1019 private: 1020 private:
1020 DISALLOW_ALLOCATION(); 1021 DISALLOW_ALLOCATION();
1021 DISALLOW_IMPLICIT_CONSTRUCTORS(Instr); 1022 DISALLOW_IMPLICIT_CONSTRUCTORS(Instr);
1022 }; 1023 };
1023 1024
1024 } // namespace dart 1025 } // namespace dart
1025 1026
1026 #endif // VM_CONSTANTS_ARM64_H_ 1027 #endif // VM_CONSTANTS_ARM64_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698