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

Side by Side Diff: src/hydrogen.h

Issue 11293061: Emit VMLA for multiply-add on ARM (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Use VMLA instead, pass all tests(*) Created 8 years, 1 month 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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 1210 matching lines...) Expand 10 before | Expand all | Expand 10 after
1221 HValue* receiver, 1221 HValue* receiver,
1222 Handle<Map> receiver_map); 1222 Handle<Map> receiver_map);
1223 1223
1224 bool MatchRotateRight(HValue* left, 1224 bool MatchRotateRight(HValue* left,
1225 HValue* right, 1225 HValue* right,
1226 HValue** operand, 1226 HValue** operand,
1227 HValue** shift_amount); 1227 HValue** shift_amount);
1228 1228
1229 Zone* zone() const { return zone_; } 1229 Zone* zone() const { return zone_; }
1230 1230
1231 bool MatchMultiplyAdd(HValue* left, HValue* right, HValue** a, HValue** b, HVa lue** c);
1232
1231 // The translation state of the currently-being-translated function. 1233 // The translation state of the currently-being-translated function.
1232 FunctionState* function_state_; 1234 FunctionState* function_state_;
1233 1235
1234 // The base of the function state stack. 1236 // The base of the function state stack.
1235 FunctionState initial_function_state_; 1237 FunctionState initial_function_state_;
1236 1238
1237 // Expression context of the currently visited subexpression. NULL when 1239 // Expression context of the currently visited subexpression. NULL when
1238 // visiting statements. 1240 // visiting statements.
1239 AstContext* ast_context_; 1241 AstContext* ast_context_;
1240 1242
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
1496 const char* filename_; 1498 const char* filename_;
1497 HeapStringAllocator string_allocator_; 1499 HeapStringAllocator string_allocator_;
1498 StringStream trace_; 1500 StringStream trace_;
1499 int indent_; 1501 int indent_;
1500 }; 1502 };
1501 1503
1502 1504
1503 } } // namespace v8::internal 1505 } } // namespace v8::internal
1504 1506
1505 #endif // V8_HYDROGEN_H_ 1507 #endif // V8_HYDROGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698