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

Side by Side Diff: src/ia32/lithium-ia32.h

Issue 14850006: Use mutable heapnumbers to store doubles in fields. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: More tests Created 7 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
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 1471 matching lines...) Expand 10 before | Expand all | Expand 10 after
1482 ASSERT(has_constant_parameter_count()); 1482 ASSERT(has_constant_parameter_count());
1483 return LConstantOperand::cast(parameter_count()); 1483 return LConstantOperand::cast(parameter_count());
1484 } 1484 }
1485 LOperand* parameter_count() { return inputs_[2]; } 1485 LOperand* parameter_count() { return inputs_[2]; }
1486 1486
1487 DECLARE_CONCRETE_INSTRUCTION(Return, "return") 1487 DECLARE_CONCRETE_INSTRUCTION(Return, "return")
1488 DECLARE_HYDROGEN_ACCESSOR(Return) 1488 DECLARE_HYDROGEN_ACCESSOR(Return)
1489 }; 1489 };
1490 1490
1491 1491
1492 class LLoadNamedField: public LTemplateInstruction<1, 1, 1> { 1492 class LLoadNamedField: public LTemplateInstruction<1, 1, 0> {
1493 public: 1493 public:
1494 explicit LLoadNamedField(LOperand* object, LOperand* temp) { 1494 explicit LLoadNamedField(LOperand* object) {
1495 inputs_[0] = object; 1495 inputs_[0] = object;
1496 temps_[0] = temp;
1497 } 1496 }
1498 1497
1499 LOperand* object() { return inputs_[0]; } 1498 LOperand* object() { return inputs_[0]; }
1500 LOperand* temp() { return temps_[0]; }
1501 1499
1502 DECLARE_CONCRETE_INSTRUCTION(LoadNamedField, "load-named-field") 1500 DECLARE_CONCRETE_INSTRUCTION(LoadNamedField, "load-named-field")
1503 DECLARE_HYDROGEN_ACCESSOR(LoadNamedField) 1501 DECLARE_HYDROGEN_ACCESSOR(LoadNamedField)
1504 }; 1502 };
1505 1503
1506 1504
1507 class LLoadNamedFieldPolymorphic: public LTemplateInstruction<1, 2, 0> { 1505 class LLoadNamedFieldPolymorphic: public LTemplateInstruction<1, 2, 0> {
1508 public: 1506 public:
1509 LLoadNamedFieldPolymorphic(LOperand* context, LOperand* object) { 1507 LLoadNamedFieldPolymorphic(LOperand* context, LOperand* object) {
1510 inputs_[0] = context; 1508 inputs_[0] = context;
(...skipping 1468 matching lines...) Expand 10 before | Expand all | Expand 10 after
2979 2977
2980 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2978 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2981 }; 2979 };
2982 2980
2983 #undef DECLARE_HYDROGEN_ACCESSOR 2981 #undef DECLARE_HYDROGEN_ACCESSOR
2984 #undef DECLARE_CONCRETE_INSTRUCTION 2982 #undef DECLARE_CONCRETE_INSTRUCTION
2985 2983
2986 } } // namespace v8::internal 2984 } } // namespace v8::internal
2987 2985
2988 #endif // V8_IA32_LITHIUM_IA32_H_ 2986 #endif // V8_IA32_LITHIUM_IA32_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698