| Index: src/ia32/lithium-ia32.h
|
| diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h
|
| index cc3762d7ab42e0dbda448370ecd5b5da321c8f84..51809f597d1627ec5e0e54e74d467a2827534cba 100644
|
| --- a/src/ia32/lithium-ia32.h
|
| +++ b/src/ia32/lithium-ia32.h
|
| @@ -1,4 +1,4 @@
|
| -// Copyright 2011 the V8 project authors. All rights reserved.
|
| +// Copyright 2012 the V8 project authors. All rights reserved.
|
| // Redistribution and use in source and binary forms, with or without
|
| // modification, are permitted provided that the following conditions are
|
| // met:
|
| @@ -135,6 +135,7 @@ class LCodeGen;
|
| V(OuterContext) \
|
| V(Parameter) \
|
| V(Power) \
|
| + V(Random) \
|
| V(PushArgument) \
|
| V(RegExpLiteral) \
|
| V(Return) \
|
| @@ -1043,6 +1044,17 @@ class LPower: public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| +class LRandom: public LTemplateInstruction<1, 1, 0> {
|
| + public:
|
| + explicit LRandom(LOperand* global_object) {
|
| + inputs_[0] = global_object;
|
| + }
|
| +
|
| + DECLARE_CONCRETE_INSTRUCTION(Random, "random")
|
| + DECLARE_HYDROGEN_ACCESSOR(Random)
|
| +};
|
| +
|
| +
|
| class LArithmeticD: public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LArithmeticD(Token::Value op, LOperand* left, LOperand* right)
|
|
|