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

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

Issue 68723002: Implement Math.random() purely in JavaScript. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Comments only Created 7 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
« no previous file with comments | « src/x64/lithium-codegen-x64.cc ('k') | src/x64/lithium-x64.cc » ('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 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 V(MulI) \ 146 V(MulI) \
147 V(NumberTagD) \ 147 V(NumberTagD) \
148 V(NumberTagI) \ 148 V(NumberTagI) \
149 V(NumberTagU) \ 149 V(NumberTagU) \
150 V(NumberUntagD) \ 150 V(NumberUntagD) \
151 V(OsrEntry) \ 151 V(OsrEntry) \
152 V(OuterContext) \ 152 V(OuterContext) \
153 V(Parameter) \ 153 V(Parameter) \
154 V(Power) \ 154 V(Power) \
155 V(PushArgument) \ 155 V(PushArgument) \
156 V(Random) \
157 V(RegExpLiteral) \ 156 V(RegExpLiteral) \
158 V(Return) \ 157 V(Return) \
159 V(SeqStringGetChar) \ 158 V(SeqStringGetChar) \
160 V(SeqStringSetChar) \ 159 V(SeqStringSetChar) \
161 V(ShiftI) \ 160 V(ShiftI) \
162 V(SmiTag) \ 161 V(SmiTag) \
163 V(SmiUntag) \ 162 V(SmiUntag) \
164 V(StackCheck) \ 163 V(StackCheck) \
165 V(StoreCodeEntry) \ 164 V(StoreCodeEntry) \
166 V(StoreContextSlot) \ 165 V(StoreContextSlot) \
(...skipping 1248 matching lines...) Expand 10 before | Expand all | Expand 10 after
1415 } 1414 }
1416 1415
1417 LOperand* left() { return inputs_[0]; } 1416 LOperand* left() { return inputs_[0]; }
1418 LOperand* right() { return inputs_[1]; } 1417 LOperand* right() { return inputs_[1]; }
1419 1418
1420 DECLARE_CONCRETE_INSTRUCTION(Power, "power") 1419 DECLARE_CONCRETE_INSTRUCTION(Power, "power")
1421 DECLARE_HYDROGEN_ACCESSOR(Power) 1420 DECLARE_HYDROGEN_ACCESSOR(Power)
1422 }; 1421 };
1423 1422
1424 1423
1425 class LRandom V8_FINAL : public LTemplateInstruction<1, 1, 3> {
1426 public:
1427 LRandom(LOperand* global_object,
1428 LOperand* scratch,
1429 LOperand* scratch2,
1430 LOperand* scratch3) {
1431 inputs_[0] = global_object;
1432 temps_[0] = scratch;
1433 temps_[1] = scratch2;
1434 temps_[2] = scratch3;
1435 }
1436
1437 LOperand* global_object() { return inputs_[0]; }
1438 LOperand* scratch() const { return temps_[0]; }
1439 LOperand* scratch2() const { return temps_[1]; }
1440 LOperand* scratch3() const { return temps_[2]; }
1441
1442 DECLARE_CONCRETE_INSTRUCTION(Random, "random")
1443 DECLARE_HYDROGEN_ACCESSOR(Random)
1444 };
1445
1446
1447 class LArithmeticD V8_FINAL : public LTemplateInstruction<1, 2, 0> { 1424 class LArithmeticD V8_FINAL : public LTemplateInstruction<1, 2, 0> {
1448 public: 1425 public:
1449 LArithmeticD(Token::Value op, LOperand* left, LOperand* right) 1426 LArithmeticD(Token::Value op, LOperand* left, LOperand* right)
1450 : op_(op) { 1427 : op_(op) {
1451 inputs_[0] = left; 1428 inputs_[0] = left;
1452 inputs_[1] = right; 1429 inputs_[1] = right;
1453 } 1430 }
1454 1431
1455 Token::Value op() const { return op_; } 1432 Token::Value op() const { return op_; }
1456 LOperand* left() { return inputs_[0]; } 1433 LOperand* left() { return inputs_[0]; }
(...skipping 1407 matching lines...) Expand 10 before | Expand all | Expand 10 after
2864 2841
2865 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2842 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2866 }; 2843 };
2867 2844
2868 #undef DECLARE_HYDROGEN_ACCESSOR 2845 #undef DECLARE_HYDROGEN_ACCESSOR
2869 #undef DECLARE_CONCRETE_INSTRUCTION 2846 #undef DECLARE_CONCRETE_INSTRUCTION
2870 2847
2871 } } // namespace v8::int 2848 } } // namespace v8::int
2872 2849
2873 #endif // V8_X64_LITHIUM_X64_H_ 2850 #endif // V8_X64_LITHIUM_X64_H_
OLDNEW
« no previous file with comments | « src/x64/lithium-codegen-x64.cc ('k') | src/x64/lithium-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698