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

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

Issue 345563007: Add Uint32 representation (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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 | « runtime/vm/intermediate_language_x64.cc ('k') | tests/language/vm/uint32_add_test.dart » ('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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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_LOCATIONS_H_ 5 #ifndef VM_LOCATIONS_H_
6 #define VM_LOCATIONS_H_ 6 #define VM_LOCATIONS_H_
7 7
8 #include "vm/allocation.h" 8 #include "vm/allocation.h"
9 #include "vm/assembler.h" 9 #include "vm/assembler.h"
10 #include "vm/bitfield.h" 10 #include "vm/bitfield.h"
11 11
12 namespace dart { 12 namespace dart {
13 13
14 class BufferFormatter; 14 class BufferFormatter;
15 class Value; 15 class Value;
16 class PairLocation; 16 class PairLocation;
17 17
18 18
19 enum Representation { 19 enum Representation {
20 kNoRepresentation, 20 kNoRepresentation,
21 kTagged, 21 kTagged,
22 kUntagged, 22 kUntagged,
23 kUnboxedDouble, 23 kUnboxedDouble,
24 kUnboxedUint32,
24 kUnboxedMint, 25 kUnboxedMint,
25 kUnboxedFloat32x4, 26 kUnboxedFloat32x4,
26 kUnboxedInt32x4, 27 kUnboxedInt32x4,
27 kUnboxedFloat64x2, 28 kUnboxedFloat64x2,
28 kPairOfTagged, 29 kPairOfTagged,
29 kPairOfUnboxedDouble, 30 kPairOfUnboxedDouble,
30 kNumRepresentations 31 kNumRepresentations
31 }; 32 };
32 33
33 34
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 BitmapBuilder* stack_bitmap_; 636 BitmapBuilder* stack_bitmap_;
636 637
637 const ContainsCall contains_call_; 638 const ContainsCall contains_call_;
638 RegisterSet live_registers_; 639 RegisterSet live_registers_;
639 }; 640 };
640 641
641 642
642 } // namespace dart 643 } // namespace dart
643 644
644 #endif // VM_LOCATIONS_H_ 645 #endif // VM_LOCATIONS_H_
OLDNEW
« no previous file with comments | « runtime/vm/intermediate_language_x64.cc ('k') | tests/language/vm/uint32_add_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698