| Index: src/arm/lithium-arm.h
|
| diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h
|
| index 76867c8a3fad5796f7a6ee11914b80bdcc63e7d8..c719036dec812205f17d5b2fe07c15405c97a658 100644
|
| --- a/src/arm/lithium-arm.h
|
| +++ b/src/arm/lithium-arm.h
|
| @@ -44,6 +44,7 @@ class LCodeGen;
|
| V(AccessArgumentsAt) \
|
| V(AddI) \
|
| V(Allocate) \
|
| + V(AndBranch) \
|
| V(ApplyArguments) \
|
| V(ArgumentsElements) \
|
| V(ArgumentsLength) \
|
| @@ -1292,6 +1293,23 @@ class LBranch V8_FINAL : public LControlInstruction<1, 0> {
|
| };
|
|
|
|
|
| +class LAndBranch V8_FINAL : public LControlInstruction<1, 0> {
|
| + public:
|
| + LAndBranch(LOperand* value, Token::Value op) : op_(op) {
|
| + inputs_[0] = value;
|
| + }
|
| +
|
| + LOperand* value() { return inputs_[0]; }
|
| + Token::Value op() { return op_; }
|
| +
|
| + DECLARE_CONCRETE_INSTRUCTION(AndBranch, "and-branch")
|
| + DECLARE_HYDROGEN_ACCESSOR(AndBranch)
|
| +
|
| + private:
|
| + Token::Value op_;
|
| +};
|
| +
|
| +
|
| class LCmpMapAndBranch V8_FINAL : public LControlInstruction<1, 1> {
|
| public:
|
| LCmpMapAndBranch(LOperand* value, LOperand* temp) {
|
|
|