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

Unified Diff: runtime/vm/locations.h

Issue 13471013: Flow graph SIMD changes (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
« runtime/vm/flow_graph_compiler.cc ('K') | « runtime/vm/flow_graph_compiler_x64.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/locations.h
diff --git a/runtime/vm/locations.h b/runtime/vm/locations.h
index f76ea9d458559a7a908872ca9aa0b8a7990ef7c6..031a290f0b7fca1e6eaf717ae867d192fbf7a834 100644
--- a/runtime/vm/locations.h
+++ b/runtime/vm/locations.h
@@ -271,8 +271,8 @@ class Location : public ValueObject {
return kind() == kDoubleStackSlot;
}
- static Location Float32x4StackSlot(intptr_t stack_index, Representation rep) {
- uword payload = make_stack_index_payload(stack_index, rep);
+ static Location Float32x4StackSlot(intptr_t stack_index) {
+ uword payload = make_stack_index_payload(stack_index, kUnboxedFloat32x4);
Location loc(kFloat32x4StackSlot, payload);
// Ensure that sign is preserved.
ASSERT(loc.stack_index() == stack_index);
@@ -283,8 +283,8 @@ class Location : public ValueObject {
return kind() == kFloat32x4StackSlot;
}
- static Location Uint32x4StackSlot(intptr_t stack_index, Representation rep) {
- uword payload = make_stack_index_payload(stack_index, rep);
+ static Location Uint32x4StackSlot(intptr_t stack_index) {
+ uword payload = make_stack_index_payload(stack_index, kUnboxedUint32x4);
Location loc(kUint32x4StackSlot, payload);
// Ensure that sign is preserved.
ASSERT(loc.stack_index() == stack_index);
« runtime/vm/flow_graph_compiler.cc ('K') | « runtime/vm/flow_graph_compiler_x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698