| Index: src/arm64/lithium-arm64.h
|
| diff --git a/src/arm64/lithium-arm64.h b/src/arm64/lithium-arm64.h
|
| index 4e6f26ccbbcd43bbd22f0d09ce9e4220f6b10966..8e7ef65b5e45bfa1e58b86586aff12eb02473d6c 100644
|
| --- a/src/arm64/lithium-arm64.h
|
| +++ b/src/arm64/lithium-arm64.h
|
| @@ -178,11 +178,11 @@ class LCodeGen;
|
|
|
|
|
| #define DECLARE_CONCRETE_INSTRUCTION(type, mnemonic) \
|
| - virtual Opcode opcode() const V8_FINAL V8_OVERRIDE { \
|
| + virtual Opcode opcode() const FINAL OVERRIDE { \
|
| return LInstruction::k##type; \
|
| } \
|
| - virtual void CompileToNative(LCodeGen* generator) V8_FINAL V8_OVERRIDE; \
|
| - virtual const char* Mnemonic() const V8_FINAL V8_OVERRIDE { \
|
| + virtual void CompileToNative(LCodeGen* generator) FINAL OVERRIDE; \
|
| + virtual const char* Mnemonic() const FINAL OVERRIDE { \
|
| return mnemonic; \
|
| } \
|
| static L##type* cast(LInstruction* instr) { \
|
| @@ -294,7 +294,7 @@ class LTemplateResultInstruction : public LInstruction {
|
| public:
|
| // Allow 0 or 1 output operands.
|
| STATIC_ASSERT(R == 0 || R == 1);
|
| - virtual bool HasResult() const V8_FINAL V8_OVERRIDE {
|
| + virtual bool HasResult() const FINAL OVERRIDE {
|
| return (R != 0) && (result() != NULL);
|
| }
|
| void set_result(LOperand* operand) { results_[0] = operand; }
|
| @@ -316,17 +316,17 @@ class LTemplateInstruction : public LTemplateResultInstruction<R> {
|
|
|
| private:
|
| // Iterator support.
|
| - virtual int InputCount() V8_FINAL V8_OVERRIDE { return I; }
|
| - virtual LOperand* InputAt(int i) V8_FINAL V8_OVERRIDE { return inputs_[i]; }
|
| + virtual int InputCount() FINAL OVERRIDE { return I; }
|
| + virtual LOperand* InputAt(int i) FINAL OVERRIDE { return inputs_[i]; }
|
|
|
| - virtual int TempCount() V8_FINAL V8_OVERRIDE { return T; }
|
| - virtual LOperand* TempAt(int i) V8_FINAL V8_OVERRIDE { return temps_[i]; }
|
| + virtual int TempCount() FINAL OVERRIDE { return T; }
|
| + virtual LOperand* TempAt(int i) FINAL OVERRIDE { return temps_[i]; }
|
| };
|
|
|
|
|
| -class LUnknownOSRValue V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| +class LUnknownOSRValue FINAL : public LTemplateInstruction<1, 0, 0> {
|
| public:
|
| - virtual bool HasInterestingComment(LCodeGen* gen) const V8_OVERRIDE {
|
| + virtual bool HasInterestingComment(LCodeGen* gen) const OVERRIDE {
|
| return false;
|
| }
|
| DECLARE_CONCRETE_INSTRUCTION(UnknownOSRValue, "unknown-osr-value")
|
| @@ -338,7 +338,7 @@ class LControlInstruction : public LTemplateInstruction<0, I, T> {
|
| public:
|
| LControlInstruction() : false_label_(NULL), true_label_(NULL) { }
|
|
|
| - virtual bool IsControl() const V8_FINAL V8_OVERRIDE { return true; }
|
| + virtual bool IsControl() const FINAL OVERRIDE { return true; }
|
|
|
| int SuccessorCount() { return hydrogen()->SuccessorCount(); }
|
| HBasicBlock* SuccessorAt(int i) { return hydrogen()->SuccessorAt(i); }
|
| @@ -388,8 +388,8 @@ class LGap : public LTemplateInstruction<0, 0, 0> {
|
| }
|
|
|
| // Can't use the DECLARE-macro here because of sub-classes.
|
| - virtual bool IsGap() const V8_OVERRIDE { return true; }
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual bool IsGap() const OVERRIDE { return true; }
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
| static LGap* cast(LInstruction* instr) {
|
| DCHECK(instr->IsGap());
|
| return reinterpret_cast<LGap*>(instr);
|
| @@ -425,11 +425,11 @@ class LGap : public LTemplateInstruction<0, 0, 0> {
|
| };
|
|
|
|
|
| -class LInstructionGap V8_FINAL : public LGap {
|
| +class LInstructionGap FINAL : public LGap {
|
| public:
|
| explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
|
|
|
| - virtual bool HasInterestingComment(LCodeGen* gen) const V8_OVERRIDE {
|
| + virtual bool HasInterestingComment(LCodeGen* gen) const OVERRIDE {
|
| return !IsRedundant();
|
| }
|
|
|
| @@ -437,7 +437,7 @@ class LInstructionGap V8_FINAL : public LGap {
|
| };
|
|
|
|
|
| -class LDrop V8_FINAL : public LTemplateInstruction<0, 0, 0> {
|
| +class LDrop FINAL : public LTemplateInstruction<0, 0, 0> {
|
| public:
|
| explicit LDrop(int count) : count_(count) { }
|
|
|
| @@ -450,14 +450,14 @@ class LDrop V8_FINAL : public LTemplateInstruction<0, 0, 0> {
|
| };
|
|
|
|
|
| -class LDummy V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| +class LDummy FINAL : public LTemplateInstruction<1, 0, 0> {
|
| public:
|
| LDummy() {}
|
| DECLARE_CONCRETE_INSTRUCTION(Dummy, "dummy")
|
| };
|
|
|
|
|
| -class LDummyUse V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LDummyUse FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LDummyUse(LOperand* value) {
|
| inputs_[0] = value;
|
| @@ -466,14 +466,14 @@ class LDummyUse V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LGoto V8_FINAL : public LTemplateInstruction<0, 0, 0> {
|
| +class LGoto FINAL : public LTemplateInstruction<0, 0, 0> {
|
| public:
|
| explicit LGoto(HBasicBlock* block) : block_(block) { }
|
|
|
| - virtual bool HasInterestingComment(LCodeGen* gen) const V8_OVERRIDE;
|
| + virtual bool HasInterestingComment(LCodeGen* gen) const OVERRIDE;
|
| DECLARE_CONCRETE_INSTRUCTION(Goto, "goto")
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| - virtual bool IsControl() const V8_OVERRIDE { return true; }
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
| + virtual bool IsControl() const OVERRIDE { return true; }
|
|
|
| int block_id() const { return block_->block_id(); }
|
|
|
| @@ -482,7 +482,7 @@ class LGoto V8_FINAL : public LTemplateInstruction<0, 0, 0> {
|
| };
|
|
|
|
|
| -class LLazyBailout V8_FINAL : public LTemplateInstruction<0, 0, 0> {
|
| +class LLazyBailout FINAL : public LTemplateInstruction<0, 0, 0> {
|
| public:
|
| LLazyBailout() : gap_instructions_size_(0) { }
|
|
|
| @@ -498,17 +498,17 @@ class LLazyBailout V8_FINAL : public LTemplateInstruction<0, 0, 0> {
|
| };
|
|
|
|
|
| -class LLabel V8_FINAL : public LGap {
|
| +class LLabel FINAL : public LGap {
|
| public:
|
| explicit LLabel(HBasicBlock* block)
|
| : LGap(block), replacement_(NULL) { }
|
|
|
| - virtual bool HasInterestingComment(LCodeGen* gen) const V8_OVERRIDE {
|
| + virtual bool HasInterestingComment(LCodeGen* gen) const OVERRIDE {
|
| return false;
|
| }
|
| DECLARE_CONCRETE_INSTRUCTION(Label, "label")
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
|
|
| int block_id() const { return block()->block_id(); }
|
| bool is_loop_header() const { return block()->IsLoopHeader(); }
|
| @@ -524,18 +524,18 @@ class LLabel V8_FINAL : public LGap {
|
| };
|
|
|
|
|
| -class LOsrEntry V8_FINAL : public LTemplateInstruction<0, 0, 0> {
|
| +class LOsrEntry FINAL : public LTemplateInstruction<0, 0, 0> {
|
| public:
|
| LOsrEntry() {}
|
|
|
| - virtual bool HasInterestingComment(LCodeGen* gen) const V8_OVERRIDE {
|
| + virtual bool HasInterestingComment(LCodeGen* gen) const OVERRIDE {
|
| return false;
|
| }
|
| DECLARE_CONCRETE_INSTRUCTION(OsrEntry, "osr-entry")
|
| };
|
|
|
|
|
| -class LAccessArgumentsAt V8_FINAL : public LTemplateInstruction<1, 3, 0> {
|
| +class LAccessArgumentsAt FINAL : public LTemplateInstruction<1, 3, 0> {
|
| public:
|
| LAccessArgumentsAt(LOperand* arguments,
|
| LOperand* length,
|
| @@ -551,11 +551,11 @@ class LAccessArgumentsAt V8_FINAL : public LTemplateInstruction<1, 3, 0> {
|
| LOperand* length() { return inputs_[1]; }
|
| LOperand* index() { return inputs_[2]; }
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
| };
|
|
|
|
|
| -class LAddE V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LAddE FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LAddE(LOperand* left, LOperand* right) {
|
| inputs_[0] = left;
|
| @@ -570,7 +570,7 @@ class LAddE V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LAddI V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LAddI FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LAddI(LOperand* left, LOperand* right)
|
| : shift_(NO_SHIFT), shift_amount_(0) {
|
| @@ -599,7 +599,7 @@ class LAddI V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LAddS V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LAddS FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LAddS(LOperand* left, LOperand* right) {
|
| inputs_[0] = left;
|
| @@ -614,7 +614,7 @@ class LAddS V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LAllocate V8_FINAL : public LTemplateInstruction<1, 2, 3> {
|
| +class LAllocate FINAL : public LTemplateInstruction<1, 2, 3> {
|
| public:
|
| LAllocate(LOperand* context,
|
| LOperand* size,
|
| @@ -639,7 +639,7 @@ class LAllocate V8_FINAL : public LTemplateInstruction<1, 2, 3> {
|
| };
|
|
|
|
|
| -class LApplyArguments V8_FINAL : public LTemplateInstruction<1, 4, 0> {
|
| +class LApplyArguments FINAL : public LTemplateInstruction<1, 4, 0> {
|
| public:
|
| LApplyArguments(LOperand* function,
|
| LOperand* receiver,
|
| @@ -660,7 +660,7 @@ class LApplyArguments V8_FINAL : public LTemplateInstruction<1, 4, 0> {
|
| };
|
|
|
|
|
| -class LArgumentsElements V8_FINAL : public LTemplateInstruction<1, 0, 1> {
|
| +class LArgumentsElements FINAL : public LTemplateInstruction<1, 0, 1> {
|
| public:
|
| explicit LArgumentsElements(LOperand* temp) {
|
| temps_[0] = temp;
|
| @@ -673,7 +673,7 @@ class LArgumentsElements V8_FINAL : public LTemplateInstruction<1, 0, 1> {
|
| };
|
|
|
|
|
| -class LArgumentsLength V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LArgumentsLength FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LArgumentsLength(LOperand* elements) {
|
| inputs_[0] = elements;
|
| @@ -685,7 +685,7 @@ class LArgumentsLength V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LArithmeticD V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LArithmeticD FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LArithmeticD(Token::Value op,
|
| LOperand* left,
|
| @@ -699,18 +699,18 @@ class LArithmeticD V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| LOperand* left() { return inputs_[0]; }
|
| LOperand* right() { return inputs_[1]; }
|
|
|
| - virtual Opcode opcode() const V8_OVERRIDE {
|
| + virtual Opcode opcode() const OVERRIDE {
|
| return LInstruction::kArithmeticD;
|
| }
|
| - virtual void CompileToNative(LCodeGen* generator) V8_OVERRIDE;
|
| - virtual const char* Mnemonic() const V8_OVERRIDE;
|
| + virtual void CompileToNative(LCodeGen* generator) OVERRIDE;
|
| + virtual const char* Mnemonic() const OVERRIDE;
|
|
|
| private:
|
| Token::Value op_;
|
| };
|
|
|
|
|
| -class LArithmeticT V8_FINAL : public LTemplateInstruction<1, 3, 0> {
|
| +class LArithmeticT FINAL : public LTemplateInstruction<1, 3, 0> {
|
| public:
|
| LArithmeticT(Token::Value op,
|
| LOperand* context,
|
| @@ -727,18 +727,18 @@ class LArithmeticT V8_FINAL : public LTemplateInstruction<1, 3, 0> {
|
| LOperand* right() { return inputs_[2]; }
|
| Token::Value op() const { return op_; }
|
|
|
| - virtual Opcode opcode() const V8_OVERRIDE {
|
| + virtual Opcode opcode() const OVERRIDE {
|
| return LInstruction::kArithmeticT;
|
| }
|
| - virtual void CompileToNative(LCodeGen* generator) V8_OVERRIDE;
|
| - virtual const char* Mnemonic() const V8_OVERRIDE;
|
| + virtual void CompileToNative(LCodeGen* generator) OVERRIDE;
|
| + virtual const char* Mnemonic() const OVERRIDE;
|
|
|
| private:
|
| Token::Value op_;
|
| };
|
|
|
|
|
| -class LBoundsCheck V8_FINAL : public LTemplateInstruction<0, 2, 0> {
|
| +class LBoundsCheck FINAL : public LTemplateInstruction<0, 2, 0> {
|
| public:
|
| explicit LBoundsCheck(LOperand* index, LOperand* length) {
|
| inputs_[0] = index;
|
| @@ -753,7 +753,7 @@ class LBoundsCheck V8_FINAL : public LTemplateInstruction<0, 2, 0> {
|
| };
|
|
|
|
|
| -class LBitI V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LBitI FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LBitI(LOperand* left, LOperand* right)
|
| : shift_(NO_SHIFT), shift_amount_(0) {
|
| @@ -784,7 +784,7 @@ class LBitI V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LBitS V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LBitS FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LBitS(LOperand* left, LOperand* right) {
|
| inputs_[0] = left;
|
| @@ -801,7 +801,7 @@ class LBitS V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LBranch V8_FINAL : public LControlInstruction<1, 2> {
|
| +class LBranch FINAL : public LControlInstruction<1, 2> {
|
| public:
|
| explicit LBranch(LOperand* value, LOperand *temp1, LOperand *temp2) {
|
| inputs_[0] = value;
|
| @@ -816,11 +816,11 @@ class LBranch V8_FINAL : public LControlInstruction<1, 2> {
|
| DECLARE_CONCRETE_INSTRUCTION(Branch, "branch")
|
| DECLARE_HYDROGEN_ACCESSOR(Branch)
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
| };
|
|
|
|
|
| -class LCallJSFunction V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LCallJSFunction FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LCallJSFunction(LOperand* function) {
|
| inputs_[0] = function;
|
| @@ -831,13 +831,13 @@ class LCallJSFunction V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| DECLARE_CONCRETE_INSTRUCTION(CallJSFunction, "call-js-function")
|
| DECLARE_HYDROGEN_ACCESSOR(CallJSFunction)
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
|
|
| int arity() const { return hydrogen()->argument_count() - 1; }
|
| };
|
|
|
|
|
| -class LCallFunction V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LCallFunction FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LCallFunction(LOperand* context, LOperand* function) {
|
| inputs_[0] = context;
|
| @@ -854,7 +854,7 @@ class LCallFunction V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LCallNew V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LCallNew FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LCallNew(LOperand* context, LOperand* constructor) {
|
| inputs_[0] = context;
|
| @@ -867,13 +867,13 @@ class LCallNew V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| DECLARE_CONCRETE_INSTRUCTION(CallNew, "call-new")
|
| DECLARE_HYDROGEN_ACCESSOR(CallNew)
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
|
|
| int arity() const { return hydrogen()->argument_count() - 1; }
|
| };
|
|
|
|
|
| -class LCallNewArray V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LCallNewArray FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LCallNewArray(LOperand* context, LOperand* constructor) {
|
| inputs_[0] = context;
|
| @@ -886,13 +886,13 @@ class LCallNewArray V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| DECLARE_CONCRETE_INSTRUCTION(CallNewArray, "call-new-array")
|
| DECLARE_HYDROGEN_ACCESSOR(CallNewArray)
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
|
|
| int arity() const { return hydrogen()->argument_count() - 1; }
|
| };
|
|
|
|
|
| -class LCallRuntime V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LCallRuntime FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LCallRuntime(LOperand* context) {
|
| inputs_[0] = context;
|
| @@ -903,7 +903,7 @@ class LCallRuntime V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| DECLARE_CONCRETE_INSTRUCTION(CallRuntime, "call-runtime")
|
| DECLARE_HYDROGEN_ACCESSOR(CallRuntime)
|
|
|
| - virtual bool ClobbersDoubleRegisters(Isolate* isolate) const V8_OVERRIDE {
|
| + virtual bool ClobbersDoubleRegisters(Isolate* isolate) const OVERRIDE {
|
| return save_doubles() == kDontSaveFPRegs;
|
| }
|
|
|
| @@ -913,7 +913,7 @@ class LCallRuntime V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LCallStub V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LCallStub FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LCallStub(LOperand* context) {
|
| inputs_[0] = context;
|
| @@ -926,7 +926,7 @@ class LCallStub V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LCheckInstanceType V8_FINAL : public LTemplateInstruction<0, 1, 1> {
|
| +class LCheckInstanceType FINAL : public LTemplateInstruction<0, 1, 1> {
|
| public:
|
| explicit LCheckInstanceType(LOperand* value, LOperand* temp) {
|
| inputs_[0] = value;
|
| @@ -941,7 +941,7 @@ class LCheckInstanceType V8_FINAL : public LTemplateInstruction<0, 1, 1> {
|
| };
|
|
|
|
|
| -class LCheckMaps V8_FINAL : public LTemplateInstruction<0, 1, 1> {
|
| +class LCheckMaps FINAL : public LTemplateInstruction<0, 1, 1> {
|
| public:
|
| explicit LCheckMaps(LOperand* value = NULL, LOperand* temp = NULL) {
|
| inputs_[0] = value;
|
| @@ -956,7 +956,7 @@ class LCheckMaps V8_FINAL : public LTemplateInstruction<0, 1, 1> {
|
| };
|
|
|
|
|
| -class LCheckNonSmi V8_FINAL : public LTemplateInstruction<0, 1, 0> {
|
| +class LCheckNonSmi FINAL : public LTemplateInstruction<0, 1, 0> {
|
| public:
|
| explicit LCheckNonSmi(LOperand* value) {
|
| inputs_[0] = value;
|
| @@ -969,7 +969,7 @@ class LCheckNonSmi V8_FINAL : public LTemplateInstruction<0, 1, 0> {
|
| };
|
|
|
|
|
| -class LCheckSmi V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LCheckSmi FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LCheckSmi(LOperand* value) {
|
| inputs_[0] = value;
|
| @@ -981,7 +981,7 @@ class LCheckSmi V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LCheckValue V8_FINAL : public LTemplateInstruction<0, 1, 0> {
|
| +class LCheckValue FINAL : public LTemplateInstruction<0, 1, 0> {
|
| public:
|
| explicit LCheckValue(LOperand* value) {
|
| inputs_[0] = value;
|
| @@ -994,7 +994,7 @@ class LCheckValue V8_FINAL : public LTemplateInstruction<0, 1, 0> {
|
| };
|
|
|
|
|
| -class LClampDToUint8 V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LClampDToUint8 FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LClampDToUint8(LOperand* unclamped) {
|
| inputs_[0] = unclamped;
|
| @@ -1006,7 +1006,7 @@ class LClampDToUint8 V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LClampIToUint8 V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LClampIToUint8 FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LClampIToUint8(LOperand* unclamped) {
|
| inputs_[0] = unclamped;
|
| @@ -1018,7 +1018,7 @@ class LClampIToUint8 V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LClampTToUint8 V8_FINAL : public LTemplateInstruction<1, 1, 2> {
|
| +class LClampTToUint8 FINAL : public LTemplateInstruction<1, 1, 2> {
|
| public:
|
| LClampTToUint8(LOperand* unclamped, LOperand* temp1, LOperand* temp2) {
|
| inputs_[0] = unclamped;
|
| @@ -1034,7 +1034,7 @@ class LClampTToUint8 V8_FINAL : public LTemplateInstruction<1, 1, 2> {
|
| };
|
|
|
|
|
| -class LDoubleBits V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LDoubleBits FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LDoubleBits(LOperand* value) {
|
| inputs_[0] = value;
|
| @@ -1047,7 +1047,7 @@ class LDoubleBits V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LConstructDouble V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LConstructDouble FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LConstructDouble(LOperand* hi, LOperand* lo) {
|
| inputs_[0] = hi;
|
| @@ -1061,7 +1061,7 @@ class LConstructDouble V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LClassOfTestAndBranch V8_FINAL : public LControlInstruction<1, 2> {
|
| +class LClassOfTestAndBranch FINAL : public LControlInstruction<1, 2> {
|
| public:
|
| LClassOfTestAndBranch(LOperand* value, LOperand* temp1, LOperand* temp2) {
|
| inputs_[0] = value;
|
| @@ -1077,11 +1077,11 @@ class LClassOfTestAndBranch V8_FINAL : public LControlInstruction<1, 2> {
|
| "class-of-test-and-branch")
|
| DECLARE_HYDROGEN_ACCESSOR(ClassOfTestAndBranch)
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
| };
|
|
|
|
|
| -class LCmpHoleAndBranchD V8_FINAL : public LControlInstruction<1, 1> {
|
| +class LCmpHoleAndBranchD FINAL : public LControlInstruction<1, 1> {
|
| public:
|
| explicit LCmpHoleAndBranchD(LOperand* object, LOperand* temp) {
|
| inputs_[0] = object;
|
| @@ -1096,7 +1096,7 @@ class LCmpHoleAndBranchD V8_FINAL : public LControlInstruction<1, 1> {
|
| };
|
|
|
|
|
| -class LCmpHoleAndBranchT V8_FINAL : public LControlInstruction<1, 0> {
|
| +class LCmpHoleAndBranchT FINAL : public LControlInstruction<1, 0> {
|
| public:
|
| explicit LCmpHoleAndBranchT(LOperand* object) {
|
| inputs_[0] = object;
|
| @@ -1109,7 +1109,7 @@ class LCmpHoleAndBranchT V8_FINAL : public LControlInstruction<1, 0> {
|
| };
|
|
|
|
|
| -class LCmpMapAndBranch V8_FINAL : public LControlInstruction<1, 1> {
|
| +class LCmpMapAndBranch FINAL : public LControlInstruction<1, 1> {
|
| public:
|
| LCmpMapAndBranch(LOperand* value, LOperand* temp) {
|
| inputs_[0] = value;
|
| @@ -1126,7 +1126,7 @@ class LCmpMapAndBranch V8_FINAL : public LControlInstruction<1, 1> {
|
| };
|
|
|
|
|
| -class LCmpObjectEqAndBranch V8_FINAL : public LControlInstruction<2, 0> {
|
| +class LCmpObjectEqAndBranch FINAL : public LControlInstruction<2, 0> {
|
| public:
|
| LCmpObjectEqAndBranch(LOperand* left, LOperand* right) {
|
| inputs_[0] = left;
|
| @@ -1141,7 +1141,7 @@ class LCmpObjectEqAndBranch V8_FINAL : public LControlInstruction<2, 0> {
|
| };
|
|
|
|
|
| -class LCmpT V8_FINAL : public LTemplateInstruction<1, 3, 0> {
|
| +class LCmpT FINAL : public LTemplateInstruction<1, 3, 0> {
|
| public:
|
| LCmpT(LOperand* context, LOperand* left, LOperand* right) {
|
| inputs_[0] = context;
|
| @@ -1160,7 +1160,7 @@ class LCmpT V8_FINAL : public LTemplateInstruction<1, 3, 0> {
|
| };
|
|
|
|
|
| -class LCompareMinusZeroAndBranch V8_FINAL : public LControlInstruction<1, 1> {
|
| +class LCompareMinusZeroAndBranch FINAL : public LControlInstruction<1, 1> {
|
| public:
|
| LCompareMinusZeroAndBranch(LOperand* value, LOperand* temp) {
|
| inputs_[0] = value;
|
| @@ -1176,7 +1176,7 @@ class LCompareMinusZeroAndBranch V8_FINAL : public LControlInstruction<1, 1> {
|
| };
|
|
|
|
|
| -class LCompareNumericAndBranch V8_FINAL : public LControlInstruction<2, 0> {
|
| +class LCompareNumericAndBranch FINAL : public LControlInstruction<2, 0> {
|
| public:
|
| LCompareNumericAndBranch(LOperand* left, LOperand* right) {
|
| inputs_[0] = left;
|
| @@ -1195,11 +1195,11 @@ class LCompareNumericAndBranch V8_FINAL : public LControlInstruction<2, 0> {
|
| return hydrogen()->representation().IsDouble();
|
| }
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
| };
|
|
|
|
|
| -class LConstantD V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| +class LConstantD FINAL : public LTemplateInstruction<1, 0, 0> {
|
| public:
|
| DECLARE_CONCRETE_INSTRUCTION(ConstantD, "constant-d")
|
| DECLARE_HYDROGEN_ACCESSOR(Constant)
|
| @@ -1208,7 +1208,7 @@ class LConstantD V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| };
|
|
|
|
|
| -class LConstantE V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| +class LConstantE FINAL : public LTemplateInstruction<1, 0, 0> {
|
| public:
|
| DECLARE_CONCRETE_INSTRUCTION(ConstantE, "constant-e")
|
| DECLARE_HYDROGEN_ACCESSOR(Constant)
|
| @@ -1219,7 +1219,7 @@ class LConstantE V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| };
|
|
|
|
|
| -class LConstantI V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| +class LConstantI FINAL : public LTemplateInstruction<1, 0, 0> {
|
| public:
|
| DECLARE_CONCRETE_INSTRUCTION(ConstantI, "constant-i")
|
| DECLARE_HYDROGEN_ACCESSOR(Constant)
|
| @@ -1228,7 +1228,7 @@ class LConstantI V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| };
|
|
|
|
|
| -class LConstantS V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| +class LConstantS FINAL : public LTemplateInstruction<1, 0, 0> {
|
| public:
|
| DECLARE_CONCRETE_INSTRUCTION(ConstantS, "constant-s")
|
| DECLARE_HYDROGEN_ACCESSOR(Constant)
|
| @@ -1237,7 +1237,7 @@ class LConstantS V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| };
|
|
|
|
|
| -class LConstantT V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| +class LConstantT FINAL : public LTemplateInstruction<1, 0, 0> {
|
| public:
|
| DECLARE_CONCRETE_INSTRUCTION(ConstantT, "constant-t")
|
| DECLARE_HYDROGEN_ACCESSOR(Constant)
|
| @@ -1248,14 +1248,14 @@ class LConstantT V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| };
|
|
|
|
|
| -class LContext V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| +class LContext FINAL : public LTemplateInstruction<1, 0, 0> {
|
| public:
|
| DECLARE_CONCRETE_INSTRUCTION(Context, "context")
|
| DECLARE_HYDROGEN_ACCESSOR(Context)
|
| };
|
|
|
|
|
| -class LDateField V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LDateField FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| LDateField(LOperand* date, Smi* index) : index_(index) {
|
| inputs_[0] = date;
|
| @@ -1272,13 +1272,13 @@ class LDateField V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LDebugBreak V8_FINAL : public LTemplateInstruction<0, 0, 0> {
|
| +class LDebugBreak FINAL : public LTemplateInstruction<0, 0, 0> {
|
| public:
|
| DECLARE_CONCRETE_INSTRUCTION(DebugBreak, "break")
|
| };
|
|
|
|
|
| -class LDeclareGlobals V8_FINAL : public LTemplateInstruction<0, 1, 0> {
|
| +class LDeclareGlobals FINAL : public LTemplateInstruction<0, 1, 0> {
|
| public:
|
| explicit LDeclareGlobals(LOperand* context) {
|
| inputs_[0] = context;
|
| @@ -1291,15 +1291,15 @@ class LDeclareGlobals V8_FINAL : public LTemplateInstruction<0, 1, 0> {
|
| };
|
|
|
|
|
| -class LDeoptimize V8_FINAL : public LTemplateInstruction<0, 0, 0> {
|
| +class LDeoptimize FINAL : public LTemplateInstruction<0, 0, 0> {
|
| public:
|
| - virtual bool IsControl() const V8_OVERRIDE { return true; }
|
| + virtual bool IsControl() const OVERRIDE { return true; }
|
| DECLARE_CONCRETE_INSTRUCTION(Deoptimize, "deoptimize")
|
| DECLARE_HYDROGEN_ACCESSOR(Deoptimize)
|
| };
|
|
|
|
|
| -class LDivByPowerOf2I V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LDivByPowerOf2I FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| LDivByPowerOf2I(LOperand* dividend, int32_t divisor) {
|
| inputs_[0] = dividend;
|
| @@ -1317,7 +1317,7 @@ class LDivByPowerOf2I V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LDivByConstI V8_FINAL : public LTemplateInstruction<1, 1, 1> {
|
| +class LDivByConstI FINAL : public LTemplateInstruction<1, 1, 1> {
|
| public:
|
| LDivByConstI(LOperand* dividend, int32_t divisor, LOperand* temp) {
|
| inputs_[0] = dividend;
|
| @@ -1337,7 +1337,7 @@ class LDivByConstI V8_FINAL : public LTemplateInstruction<1, 1, 1> {
|
| };
|
|
|
|
|
| -class LDivI V8_FINAL : public LTemplateInstruction<1, 2, 1> {
|
| +class LDivI FINAL : public LTemplateInstruction<1, 2, 1> {
|
| public:
|
| LDivI(LOperand* dividend, LOperand* divisor, LOperand* temp) {
|
| inputs_[0] = dividend;
|
| @@ -1354,7 +1354,7 @@ class LDivI V8_FINAL : public LTemplateInstruction<1, 2, 1> {
|
| };
|
|
|
|
|
| -class LDoubleToIntOrSmi V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LDoubleToIntOrSmi FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LDoubleToIntOrSmi(LOperand* value) {
|
| inputs_[0] = value;
|
| @@ -1369,7 +1369,7 @@ class LDoubleToIntOrSmi V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LForInCacheArray V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LForInCacheArray FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LForInCacheArray(LOperand* map) {
|
| inputs_[0] = map;
|
| @@ -1385,7 +1385,7 @@ class LForInCacheArray V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LForInPrepareMap V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LForInPrepareMap FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LForInPrepareMap(LOperand* context, LOperand* object) {
|
| inputs_[0] = context;
|
| @@ -1399,7 +1399,7 @@ class LForInPrepareMap V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LGetCachedArrayIndex V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LGetCachedArrayIndex FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LGetCachedArrayIndex(LOperand* value) {
|
| inputs_[0] = value;
|
| @@ -1412,7 +1412,7 @@ class LGetCachedArrayIndex V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LHasCachedArrayIndexAndBranch V8_FINAL
|
| +class LHasCachedArrayIndexAndBranch FINAL
|
| : public LControlInstruction<1, 1> {
|
| public:
|
| LHasCachedArrayIndexAndBranch(LOperand* value, LOperand* temp) {
|
| @@ -1427,11 +1427,11 @@ class LHasCachedArrayIndexAndBranch V8_FINAL
|
| "has-cached-array-index-and-branch")
|
| DECLARE_HYDROGEN_ACCESSOR(HasCachedArrayIndexAndBranch)
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
| };
|
|
|
|
|
| -class LHasInstanceTypeAndBranch V8_FINAL : public LControlInstruction<1, 1> {
|
| +class LHasInstanceTypeAndBranch FINAL : public LControlInstruction<1, 1> {
|
| public:
|
| LHasInstanceTypeAndBranch(LOperand* value, LOperand* temp) {
|
| inputs_[0] = value;
|
| @@ -1445,11 +1445,11 @@ class LHasInstanceTypeAndBranch V8_FINAL : public LControlInstruction<1, 1> {
|
| "has-instance-type-and-branch")
|
| DECLARE_HYDROGEN_ACCESSOR(HasInstanceTypeAndBranch)
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
| };
|
|
|
|
|
| -class LInnerAllocatedObject V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LInnerAllocatedObject FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LInnerAllocatedObject(LOperand* base_object, LOperand* offset) {
|
| inputs_[0] = base_object;
|
| @@ -1459,13 +1459,13 @@ class LInnerAllocatedObject V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| LOperand* base_object() const { return inputs_[0]; }
|
| LOperand* offset() const { return inputs_[1]; }
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
|
|
| DECLARE_CONCRETE_INSTRUCTION(InnerAllocatedObject, "inner-allocated-object")
|
| };
|
|
|
|
|
| -class LInstanceOf V8_FINAL : public LTemplateInstruction<1, 3, 0> {
|
| +class LInstanceOf FINAL : public LTemplateInstruction<1, 3, 0> {
|
| public:
|
| LInstanceOf(LOperand* context, LOperand* left, LOperand* right) {
|
| inputs_[0] = context;
|
| @@ -1481,7 +1481,7 @@ class LInstanceOf V8_FINAL : public LTemplateInstruction<1, 3, 0> {
|
| };
|
|
|
|
|
| -class LInstanceOfKnownGlobal V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LInstanceOfKnownGlobal FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LInstanceOfKnownGlobal(LOperand* context, LOperand* value) {
|
| inputs_[0] = context;
|
| @@ -1500,7 +1500,7 @@ class LInstanceOfKnownGlobal V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| return lazy_deopt_env_;
|
| }
|
| virtual void SetDeferredLazyDeoptimizationEnvironment(
|
| - LEnvironment* env) V8_OVERRIDE {
|
| + LEnvironment* env) OVERRIDE {
|
| lazy_deopt_env_ = env;
|
| }
|
|
|
| @@ -1509,7 +1509,7 @@ class LInstanceOfKnownGlobal V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LInteger32ToDouble V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LInteger32ToDouble FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LInteger32ToDouble(LOperand* value) {
|
| inputs_[0] = value;
|
| @@ -1521,7 +1521,7 @@ class LInteger32ToDouble V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LCallWithDescriptor V8_FINAL : public LTemplateResultInstruction<1> {
|
| +class LCallWithDescriptor FINAL : public LTemplateResultInstruction<1> {
|
| public:
|
| LCallWithDescriptor(const CallInterfaceDescriptor* descriptor,
|
| const ZoneList<LOperand*>& operands, Zone* zone)
|
| @@ -1539,7 +1539,7 @@ class LCallWithDescriptor V8_FINAL : public LTemplateResultInstruction<1> {
|
| DECLARE_CONCRETE_INSTRUCTION(CallWithDescriptor, "call-with-descriptor")
|
| DECLARE_HYDROGEN_ACCESSOR(CallWithDescriptor)
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
|
|
| int arity() const { return hydrogen()->argument_count() - 1; }
|
|
|
| @@ -1547,15 +1547,15 @@ class LCallWithDescriptor V8_FINAL : public LTemplateResultInstruction<1> {
|
| ZoneList<LOperand*> inputs_;
|
|
|
| // Iterator support.
|
| - virtual int InputCount() V8_FINAL V8_OVERRIDE { return inputs_.length(); }
|
| - virtual LOperand* InputAt(int i) V8_FINAL V8_OVERRIDE { return inputs_[i]; }
|
| + virtual int InputCount() FINAL OVERRIDE { return inputs_.length(); }
|
| + virtual LOperand* InputAt(int i) FINAL OVERRIDE { return inputs_[i]; }
|
|
|
| - virtual int TempCount() V8_FINAL V8_OVERRIDE { return 0; }
|
| - virtual LOperand* TempAt(int i) V8_FINAL V8_OVERRIDE { return NULL; }
|
| + virtual int TempCount() FINAL OVERRIDE { return 0; }
|
| + virtual LOperand* TempAt(int i) FINAL OVERRIDE { return NULL; }
|
| };
|
|
|
|
|
| -class LInvokeFunction V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LInvokeFunction FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LInvokeFunction(LOperand* context, LOperand* function) {
|
| inputs_[0] = context;
|
| @@ -1568,13 +1568,13 @@ class LInvokeFunction V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| DECLARE_CONCRETE_INSTRUCTION(InvokeFunction, "invoke-function")
|
| DECLARE_HYDROGEN_ACCESSOR(InvokeFunction)
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
|
|
| int arity() const { return hydrogen()->argument_count() - 1; }
|
| };
|
|
|
|
|
| -class LIsConstructCallAndBranch V8_FINAL : public LControlInstruction<0, 2> {
|
| +class LIsConstructCallAndBranch FINAL : public LControlInstruction<0, 2> {
|
| public:
|
| LIsConstructCallAndBranch(LOperand* temp1, LOperand* temp2) {
|
| temps_[0] = temp1;
|
| @@ -1589,7 +1589,7 @@ class LIsConstructCallAndBranch V8_FINAL : public LControlInstruction<0, 2> {
|
| };
|
|
|
|
|
| -class LIsObjectAndBranch V8_FINAL : public LControlInstruction<1, 2> {
|
| +class LIsObjectAndBranch FINAL : public LControlInstruction<1, 2> {
|
| public:
|
| LIsObjectAndBranch(LOperand* value, LOperand* temp1, LOperand* temp2) {
|
| inputs_[0] = value;
|
| @@ -1604,11 +1604,11 @@ class LIsObjectAndBranch V8_FINAL : public LControlInstruction<1, 2> {
|
| DECLARE_CONCRETE_INSTRUCTION(IsObjectAndBranch, "is-object-and-branch")
|
| DECLARE_HYDROGEN_ACCESSOR(IsObjectAndBranch)
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
| };
|
|
|
|
|
| -class LIsStringAndBranch V8_FINAL : public LControlInstruction<1, 1> {
|
| +class LIsStringAndBranch FINAL : public LControlInstruction<1, 1> {
|
| public:
|
| LIsStringAndBranch(LOperand* value, LOperand* temp) {
|
| inputs_[0] = value;
|
| @@ -1621,11 +1621,11 @@ class LIsStringAndBranch V8_FINAL : public LControlInstruction<1, 1> {
|
| DECLARE_CONCRETE_INSTRUCTION(IsStringAndBranch, "is-string-and-branch")
|
| DECLARE_HYDROGEN_ACCESSOR(IsStringAndBranch)
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
| };
|
|
|
|
|
| -class LIsSmiAndBranch V8_FINAL : public LControlInstruction<1, 0> {
|
| +class LIsSmiAndBranch FINAL : public LControlInstruction<1, 0> {
|
| public:
|
| explicit LIsSmiAndBranch(LOperand* value) {
|
| inputs_[0] = value;
|
| @@ -1636,11 +1636,11 @@ class LIsSmiAndBranch V8_FINAL : public LControlInstruction<1, 0> {
|
| DECLARE_CONCRETE_INSTRUCTION(IsSmiAndBranch, "is-smi-and-branch")
|
| DECLARE_HYDROGEN_ACCESSOR(IsSmiAndBranch)
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
| };
|
|
|
|
|
| -class LIsUndetectableAndBranch V8_FINAL : public LControlInstruction<1, 1> {
|
| +class LIsUndetectableAndBranch FINAL : public LControlInstruction<1, 1> {
|
| public:
|
| explicit LIsUndetectableAndBranch(LOperand* value, LOperand* temp) {
|
| inputs_[0] = value;
|
| @@ -1654,11 +1654,11 @@ class LIsUndetectableAndBranch V8_FINAL : public LControlInstruction<1, 1> {
|
| "is-undetectable-and-branch")
|
| DECLARE_HYDROGEN_ACCESSOR(IsUndetectableAndBranch)
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
| };
|
|
|
|
|
| -class LLoadContextSlot V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LLoadContextSlot FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LLoadContextSlot(LOperand* context) {
|
| inputs_[0] = context;
|
| @@ -1671,11 +1671,11 @@ class LLoadContextSlot V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
|
|
| int slot_index() const { return hydrogen()->slot_index(); }
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
| };
|
|
|
|
|
| -class LLoadNamedField V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LLoadNamedField FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LLoadNamedField(LOperand* object) {
|
| inputs_[0] = object;
|
| @@ -1688,7 +1688,7 @@ class LLoadNamedField V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LFunctionLiteral V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LFunctionLiteral FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LFunctionLiteral(LOperand* context) {
|
| inputs_[0] = context;
|
| @@ -1701,7 +1701,7 @@ class LFunctionLiteral V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LLoadFunctionPrototype V8_FINAL : public LTemplateInstruction<1, 1, 1> {
|
| +class LLoadFunctionPrototype FINAL : public LTemplateInstruction<1, 1, 1> {
|
| public:
|
| LLoadFunctionPrototype(LOperand* function, LOperand* temp) {
|
| inputs_[0] = function;
|
| @@ -1716,14 +1716,14 @@ class LLoadFunctionPrototype V8_FINAL : public LTemplateInstruction<1, 1, 1> {
|
| };
|
|
|
|
|
| -class LLoadGlobalCell V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| +class LLoadGlobalCell FINAL : public LTemplateInstruction<1, 0, 0> {
|
| public:
|
| DECLARE_CONCRETE_INSTRUCTION(LoadGlobalCell, "load-global-cell")
|
| DECLARE_HYDROGEN_ACCESSOR(LoadGlobalCell)
|
| };
|
|
|
|
|
| -class LLoadGlobalGeneric V8_FINAL : public LTemplateInstruction<1, 2, 1> {
|
| +class LLoadGlobalGeneric FINAL : public LTemplateInstruction<1, 2, 1> {
|
| public:
|
| LLoadGlobalGeneric(LOperand* context, LOperand* global_object,
|
| LOperand* vector) {
|
| @@ -1769,7 +1769,7 @@ class LLoadKeyed : public LTemplateInstruction<1, 2, T> {
|
| uint32_t base_offset() const {
|
| return this->hydrogen()->base_offset();
|
| }
|
| - void PrintDataTo(StringStream* stream) V8_OVERRIDE {
|
| + void PrintDataTo(StringStream* stream) OVERRIDE {
|
| this->elements()->PrintTo(stream);
|
| stream->Add("[");
|
| this->key()->PrintTo(stream);
|
| @@ -1823,7 +1823,7 @@ class LLoadKeyedFixedDouble: public LLoadKeyed<1> {
|
| };
|
|
|
|
|
| -class LLoadKeyedGeneric V8_FINAL : public LTemplateInstruction<1, 3, 1> {
|
| +class LLoadKeyedGeneric FINAL : public LTemplateInstruction<1, 3, 1> {
|
| public:
|
| LLoadKeyedGeneric(LOperand* context, LOperand* object, LOperand* key,
|
| LOperand* vector) {
|
| @@ -1843,7 +1843,7 @@ class LLoadKeyedGeneric V8_FINAL : public LTemplateInstruction<1, 3, 1> {
|
| };
|
|
|
|
|
| -class LLoadNamedGeneric V8_FINAL : public LTemplateInstruction<1, 2, 1> {
|
| +class LLoadNamedGeneric FINAL : public LTemplateInstruction<1, 2, 1> {
|
| public:
|
| LLoadNamedGeneric(LOperand* context, LOperand* object, LOperand* vector) {
|
| inputs_[0] = context;
|
| @@ -1862,7 +1862,7 @@ class LLoadNamedGeneric V8_FINAL : public LTemplateInstruction<1, 2, 1> {
|
| };
|
|
|
|
|
| -class LLoadRoot V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| +class LLoadRoot FINAL : public LTemplateInstruction<1, 0, 0> {
|
| public:
|
| DECLARE_CONCRETE_INSTRUCTION(LoadRoot, "load-root")
|
| DECLARE_HYDROGEN_ACCESSOR(LoadRoot)
|
| @@ -1871,7 +1871,7 @@ class LLoadRoot V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| };
|
|
|
|
|
| -class LMapEnumLength V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LMapEnumLength FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LMapEnumLength(LOperand* value) {
|
| inputs_[0] = value;
|
| @@ -1893,13 +1893,13 @@ class LUnaryMathOperation : public LTemplateInstruction<1, 1, T> {
|
| LOperand* value() { return this->inputs_[0]; }
|
| BuiltinFunctionId op() const { return this->hydrogen()->op(); }
|
|
|
| - void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + void PrintDataTo(StringStream* stream) OVERRIDE;
|
|
|
| DECLARE_HYDROGEN_ACCESSOR(UnaryMathOperation)
|
| };
|
|
|
|
|
| -class LMathAbs V8_FINAL : public LUnaryMathOperation<0> {
|
| +class LMathAbs FINAL : public LUnaryMathOperation<0> {
|
| public:
|
| explicit LMathAbs(LOperand* value) : LUnaryMathOperation<0>(value) {}
|
|
|
| @@ -1929,7 +1929,7 @@ class LMathAbsTagged: public LTemplateInstruction<1, 2, 3> {
|
| };
|
|
|
|
|
| -class LMathExp V8_FINAL : public LUnaryMathOperation<4> {
|
| +class LMathExp FINAL : public LUnaryMathOperation<4> {
|
| public:
|
| LMathExp(LOperand* value,
|
| LOperand* double_temp1,
|
| @@ -1954,7 +1954,7 @@ class LMathExp V8_FINAL : public LUnaryMathOperation<4> {
|
|
|
|
|
| // Math.floor with a double result.
|
| -class LMathFloorD V8_FINAL : public LUnaryMathOperation<0> {
|
| +class LMathFloorD FINAL : public LUnaryMathOperation<0> {
|
| public:
|
| explicit LMathFloorD(LOperand* value) : LUnaryMathOperation<0>(value) { }
|
| DECLARE_CONCRETE_INSTRUCTION(MathFloorD, "math-floor-d")
|
| @@ -1962,14 +1962,14 @@ class LMathFloorD V8_FINAL : public LUnaryMathOperation<0> {
|
|
|
|
|
| // Math.floor with an integer result.
|
| -class LMathFloorI V8_FINAL : public LUnaryMathOperation<0> {
|
| +class LMathFloorI FINAL : public LUnaryMathOperation<0> {
|
| public:
|
| explicit LMathFloorI(LOperand* value) : LUnaryMathOperation<0>(value) { }
|
| DECLARE_CONCRETE_INSTRUCTION(MathFloorI, "math-floor-i")
|
| };
|
|
|
|
|
| -class LFlooringDivByPowerOf2I V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LFlooringDivByPowerOf2I FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| LFlooringDivByPowerOf2I(LOperand* dividend, int32_t divisor) {
|
| inputs_[0] = dividend;
|
| @@ -1988,7 +1988,7 @@ class LFlooringDivByPowerOf2I V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LFlooringDivByConstI V8_FINAL : public LTemplateInstruction<1, 1, 2> {
|
| +class LFlooringDivByConstI FINAL : public LTemplateInstruction<1, 1, 2> {
|
| public:
|
| LFlooringDivByConstI(LOperand* dividend, int32_t divisor, LOperand* temp) {
|
| inputs_[0] = dividend;
|
| @@ -2008,7 +2008,7 @@ class LFlooringDivByConstI V8_FINAL : public LTemplateInstruction<1, 1, 2> {
|
| };
|
|
|
|
|
| -class LFlooringDivI V8_FINAL : public LTemplateInstruction<1, 2, 1> {
|
| +class LFlooringDivI FINAL : public LTemplateInstruction<1, 2, 1> {
|
| public:
|
| LFlooringDivI(LOperand* dividend, LOperand* divisor, LOperand* temp) {
|
| inputs_[0] = dividend;
|
| @@ -2025,21 +2025,21 @@ class LFlooringDivI V8_FINAL : public LTemplateInstruction<1, 2, 1> {
|
| };
|
|
|
|
|
| -class LMathLog V8_FINAL : public LUnaryMathOperation<0> {
|
| +class LMathLog FINAL : public LUnaryMathOperation<0> {
|
| public:
|
| explicit LMathLog(LOperand* value) : LUnaryMathOperation<0>(value) { }
|
| DECLARE_CONCRETE_INSTRUCTION(MathLog, "math-log")
|
| };
|
|
|
|
|
| -class LMathClz32 V8_FINAL : public LUnaryMathOperation<0> {
|
| +class LMathClz32 FINAL : public LUnaryMathOperation<0> {
|
| public:
|
| explicit LMathClz32(LOperand* value) : LUnaryMathOperation<0>(value) { }
|
| DECLARE_CONCRETE_INSTRUCTION(MathClz32, "math-clz32")
|
| };
|
|
|
|
|
| -class LMathMinMax V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LMathMinMax FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LMathMinMax(LOperand* left, LOperand* right) {
|
| inputs_[0] = left;
|
| @@ -2054,7 +2054,7 @@ class LMathMinMax V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LMathPowHalf V8_FINAL : public LUnaryMathOperation<0> {
|
| +class LMathPowHalf FINAL : public LUnaryMathOperation<0> {
|
| public:
|
| explicit LMathPowHalf(LOperand* value) : LUnaryMathOperation<0>(value) { }
|
| DECLARE_CONCRETE_INSTRUCTION(MathPowHalf, "math-pow-half")
|
| @@ -2062,7 +2062,7 @@ class LMathPowHalf V8_FINAL : public LUnaryMathOperation<0> {
|
|
|
|
|
| // Math.round with an integer result.
|
| -class LMathRoundD V8_FINAL : public LUnaryMathOperation<0> {
|
| +class LMathRoundD FINAL : public LUnaryMathOperation<0> {
|
| public:
|
| explicit LMathRoundD(LOperand* value)
|
| : LUnaryMathOperation<0>(value) {
|
| @@ -2073,7 +2073,7 @@ class LMathRoundD V8_FINAL : public LUnaryMathOperation<0> {
|
|
|
|
|
| // Math.round with an integer result.
|
| -class LMathRoundI V8_FINAL : public LUnaryMathOperation<1> {
|
| +class LMathRoundI FINAL : public LUnaryMathOperation<1> {
|
| public:
|
| LMathRoundI(LOperand* value, LOperand* temp1)
|
| : LUnaryMathOperation<1>(value) {
|
| @@ -2086,7 +2086,7 @@ class LMathRoundI V8_FINAL : public LUnaryMathOperation<1> {
|
| };
|
|
|
|
|
| -class LMathFround V8_FINAL : public LUnaryMathOperation<0> {
|
| +class LMathFround FINAL : public LUnaryMathOperation<0> {
|
| public:
|
| explicit LMathFround(LOperand* value) : LUnaryMathOperation<0>(value) {}
|
|
|
| @@ -2094,14 +2094,14 @@ class LMathFround V8_FINAL : public LUnaryMathOperation<0> {
|
| };
|
|
|
|
|
| -class LMathSqrt V8_FINAL : public LUnaryMathOperation<0> {
|
| +class LMathSqrt FINAL : public LUnaryMathOperation<0> {
|
| public:
|
| explicit LMathSqrt(LOperand* value) : LUnaryMathOperation<0>(value) { }
|
| DECLARE_CONCRETE_INSTRUCTION(MathSqrt, "math-sqrt")
|
| };
|
|
|
|
|
| -class LModByPowerOf2I V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LModByPowerOf2I FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| LModByPowerOf2I(LOperand* dividend, int32_t divisor) {
|
| inputs_[0] = dividend;
|
| @@ -2119,7 +2119,7 @@ class LModByPowerOf2I V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LModByConstI V8_FINAL : public LTemplateInstruction<1, 1, 1> {
|
| +class LModByConstI FINAL : public LTemplateInstruction<1, 1, 1> {
|
| public:
|
| LModByConstI(LOperand* dividend, int32_t divisor, LOperand* temp) {
|
| inputs_[0] = dividend;
|
| @@ -2139,7 +2139,7 @@ class LModByConstI V8_FINAL : public LTemplateInstruction<1, 1, 1> {
|
| };
|
|
|
|
|
| -class LModI V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LModI FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LModI(LOperand* left, LOperand* right) {
|
| inputs_[0] = left;
|
| @@ -2154,7 +2154,7 @@ class LModI V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LMulConstIS V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LMulConstIS FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LMulConstIS(LOperand* left, LConstantOperand* right) {
|
| inputs_[0] = left;
|
| @@ -2169,7 +2169,7 @@ class LMulConstIS V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LMulI V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LMulI FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LMulI(LOperand* left, LOperand* right) {
|
| inputs_[0] = left;
|
| @@ -2184,7 +2184,7 @@ class LMulI V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LMulS V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LMulS FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LMulS(LOperand* left, LOperand* right) {
|
| inputs_[0] = left;
|
| @@ -2199,7 +2199,7 @@ class LMulS V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LNumberTagD V8_FINAL : public LTemplateInstruction<1, 1, 2> {
|
| +class LNumberTagD FINAL : public LTemplateInstruction<1, 1, 2> {
|
| public:
|
| LNumberTagD(LOperand* value, LOperand* temp1, LOperand* temp2) {
|
| inputs_[0] = value;
|
| @@ -2216,7 +2216,7 @@ class LNumberTagD V8_FINAL : public LTemplateInstruction<1, 1, 2> {
|
| };
|
|
|
|
|
| -class LNumberTagU V8_FINAL : public LTemplateInstruction<1, 1, 2> {
|
| +class LNumberTagU FINAL : public LTemplateInstruction<1, 1, 2> {
|
| public:
|
| explicit LNumberTagU(LOperand* value,
|
| LOperand* temp1,
|
| @@ -2234,7 +2234,7 @@ class LNumberTagU V8_FINAL : public LTemplateInstruction<1, 1, 2> {
|
| };
|
|
|
|
|
| -class LNumberUntagD V8_FINAL : public LTemplateInstruction<1, 1, 1> {
|
| +class LNumberUntagD FINAL : public LTemplateInstruction<1, 1, 1> {
|
| public:
|
| LNumberUntagD(LOperand* value, LOperand* temp) {
|
| inputs_[0] = value;
|
| @@ -2250,14 +2250,14 @@ class LNumberUntagD V8_FINAL : public LTemplateInstruction<1, 1, 1> {
|
| };
|
|
|
|
|
| -class LParameter V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| +class LParameter FINAL : public LTemplateInstruction<1, 0, 0> {
|
| public:
|
| virtual bool HasInterestingComment(LCodeGen* gen) const { return false; }
|
| DECLARE_CONCRETE_INSTRUCTION(Parameter, "parameter")
|
| };
|
|
|
|
|
| -class LPower V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LPower FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LPower(LOperand* left, LOperand* right) {
|
| inputs_[0] = left;
|
| @@ -2272,7 +2272,7 @@ class LPower V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LPreparePushArguments V8_FINAL : public LTemplateInstruction<0, 0, 0> {
|
| +class LPreparePushArguments FINAL : public LTemplateInstruction<0, 0, 0> {
|
| public:
|
| explicit LPreparePushArguments(int argc) : argc_(argc) {}
|
|
|
| @@ -2285,7 +2285,7 @@ class LPreparePushArguments V8_FINAL : public LTemplateInstruction<0, 0, 0> {
|
| };
|
|
|
|
|
| -class LPushArguments V8_FINAL : public LTemplateResultInstruction<0> {
|
| +class LPushArguments FINAL : public LTemplateResultInstruction<0> {
|
| public:
|
| explicit LPushArguments(Zone* zone,
|
| int capacity = kRecommendedMaxPushedArgs)
|
| @@ -2311,15 +2311,15 @@ class LPushArguments V8_FINAL : public LTemplateResultInstruction<0> {
|
|
|
| private:
|
| // Iterator support.
|
| - virtual int InputCount() V8_FINAL V8_OVERRIDE { return inputs_.length(); }
|
| - virtual LOperand* InputAt(int i) V8_FINAL V8_OVERRIDE { return inputs_[i]; }
|
| + virtual int InputCount() FINAL OVERRIDE { return inputs_.length(); }
|
| + virtual LOperand* InputAt(int i) FINAL OVERRIDE { return inputs_[i]; }
|
|
|
| - virtual int TempCount() V8_FINAL V8_OVERRIDE { return 0; }
|
| - virtual LOperand* TempAt(int i) V8_FINAL V8_OVERRIDE { return NULL; }
|
| + virtual int TempCount() FINAL OVERRIDE { return 0; }
|
| + virtual LOperand* TempAt(int i) FINAL OVERRIDE { return NULL; }
|
| };
|
|
|
|
|
| -class LRegExpLiteral V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LRegExpLiteral FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LRegExpLiteral(LOperand* context) {
|
| inputs_[0] = context;
|
| @@ -2332,7 +2332,7 @@ class LRegExpLiteral V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LReturn V8_FINAL : public LTemplateInstruction<0, 3, 0> {
|
| +class LReturn FINAL : public LTemplateInstruction<0, 3, 0> {
|
| public:
|
| LReturn(LOperand* value, LOperand* context, LOperand* parameter_count) {
|
| inputs_[0] = value;
|
| @@ -2355,7 +2355,7 @@ class LReturn V8_FINAL : public LTemplateInstruction<0, 3, 0> {
|
| };
|
|
|
|
|
| -class LSeqStringGetChar V8_FINAL : public LTemplateInstruction<1, 2, 1> {
|
| +class LSeqStringGetChar FINAL : public LTemplateInstruction<1, 2, 1> {
|
| public:
|
| LSeqStringGetChar(LOperand* string,
|
| LOperand* index,
|
| @@ -2374,7 +2374,7 @@ class LSeqStringGetChar V8_FINAL : public LTemplateInstruction<1, 2, 1> {
|
| };
|
|
|
|
|
| -class LSeqStringSetChar V8_FINAL : public LTemplateInstruction<1, 4, 1> {
|
| +class LSeqStringSetChar FINAL : public LTemplateInstruction<1, 4, 1> {
|
| public:
|
| LSeqStringSetChar(LOperand* context,
|
| LOperand* string,
|
| @@ -2399,7 +2399,7 @@ class LSeqStringSetChar V8_FINAL : public LTemplateInstruction<1, 4, 1> {
|
| };
|
|
|
|
|
| -class LSmiTag V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LSmiTag FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LSmiTag(LOperand* value) {
|
| inputs_[0] = value;
|
| @@ -2412,7 +2412,7 @@ class LSmiTag V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LSmiUntag V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LSmiUntag FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| LSmiUntag(LOperand* value, bool needs_check)
|
| : needs_check_(needs_check) {
|
| @@ -2429,7 +2429,7 @@ class LSmiUntag V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LStackCheck V8_FINAL : public LTemplateInstruction<0, 1, 0> {
|
| +class LStackCheck FINAL : public LTemplateInstruction<0, 1, 0> {
|
| public:
|
| explicit LStackCheck(LOperand* context) {
|
| inputs_[0] = context;
|
| @@ -2479,7 +2479,7 @@ class LStoreKeyed : public LTemplateInstruction<0, 3, T> {
|
| }
|
| uint32_t base_offset() const { return this->hydrogen()->base_offset(); }
|
|
|
| - void PrintDataTo(StringStream* stream) V8_OVERRIDE {
|
| + void PrintDataTo(StringStream* stream) OVERRIDE {
|
| this->elements()->PrintTo(stream);
|
| stream->Add("[");
|
| this->key()->PrintTo(stream);
|
| @@ -2502,7 +2502,7 @@ class LStoreKeyed : public LTemplateInstruction<0, 3, T> {
|
| };
|
|
|
|
|
| -class LStoreKeyedExternal V8_FINAL : public LStoreKeyed<1> {
|
| +class LStoreKeyedExternal FINAL : public LStoreKeyed<1> {
|
| public:
|
| LStoreKeyedExternal(LOperand* elements, LOperand* key, LOperand* value,
|
| LOperand* temp) :
|
| @@ -2516,7 +2516,7 @@ class LStoreKeyedExternal V8_FINAL : public LStoreKeyed<1> {
|
| };
|
|
|
|
|
| -class LStoreKeyedFixed V8_FINAL : public LStoreKeyed<1> {
|
| +class LStoreKeyedFixed FINAL : public LStoreKeyed<1> {
|
| public:
|
| LStoreKeyedFixed(LOperand* elements, LOperand* key, LOperand* value,
|
| LOperand* temp) :
|
| @@ -2530,7 +2530,7 @@ class LStoreKeyedFixed V8_FINAL : public LStoreKeyed<1> {
|
| };
|
|
|
|
|
| -class LStoreKeyedFixedDouble V8_FINAL : public LStoreKeyed<1> {
|
| +class LStoreKeyedFixedDouble FINAL : public LStoreKeyed<1> {
|
| public:
|
| LStoreKeyedFixedDouble(LOperand* elements, LOperand* key, LOperand* value,
|
| LOperand* temp) :
|
| @@ -2545,7 +2545,7 @@ class LStoreKeyedFixedDouble V8_FINAL : public LStoreKeyed<1> {
|
| };
|
|
|
|
|
| -class LStoreKeyedGeneric V8_FINAL : public LTemplateInstruction<0, 4, 0> {
|
| +class LStoreKeyedGeneric FINAL : public LTemplateInstruction<0, 4, 0> {
|
| public:
|
| LStoreKeyedGeneric(LOperand* context,
|
| LOperand* obj,
|
| @@ -2565,13 +2565,13 @@ class LStoreKeyedGeneric V8_FINAL : public LTemplateInstruction<0, 4, 0> {
|
| DECLARE_CONCRETE_INSTRUCTION(StoreKeyedGeneric, "store-keyed-generic")
|
| DECLARE_HYDROGEN_ACCESSOR(StoreKeyedGeneric)
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
|
|
| StrictMode strict_mode() { return hydrogen()->strict_mode(); }
|
| };
|
|
|
|
|
| -class LStoreNamedField V8_FINAL : public LTemplateInstruction<0, 2, 2> {
|
| +class LStoreNamedField FINAL : public LTemplateInstruction<0, 2, 2> {
|
| public:
|
| LStoreNamedField(LOperand* object, LOperand* value,
|
| LOperand* temp0, LOperand* temp1) {
|
| @@ -2589,7 +2589,7 @@ class LStoreNamedField V8_FINAL : public LTemplateInstruction<0, 2, 2> {
|
| DECLARE_CONCRETE_INSTRUCTION(StoreNamedField, "store-named-field")
|
| DECLARE_HYDROGEN_ACCESSOR(StoreNamedField)
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
|
|
| Representation representation() const {
|
| return hydrogen()->field_representation();
|
| @@ -2597,7 +2597,7 @@ class LStoreNamedField V8_FINAL : public LTemplateInstruction<0, 2, 2> {
|
| };
|
|
|
|
|
| -class LStoreNamedGeneric V8_FINAL: public LTemplateInstruction<0, 3, 0> {
|
| +class LStoreNamedGeneric FINAL: public LTemplateInstruction<0, 3, 0> {
|
| public:
|
| LStoreNamedGeneric(LOperand* context, LOperand* object, LOperand* value) {
|
| inputs_[0] = context;
|
| @@ -2612,14 +2612,14 @@ class LStoreNamedGeneric V8_FINAL: public LTemplateInstruction<0, 3, 0> {
|
| DECLARE_CONCRETE_INSTRUCTION(StoreNamedGeneric, "store-named-generic")
|
| DECLARE_HYDROGEN_ACCESSOR(StoreNamedGeneric)
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
|
|
| Handle<Object> name() const { return hydrogen()->name(); }
|
| StrictMode strict_mode() { return hydrogen()->strict_mode(); }
|
| };
|
|
|
|
|
| -class LStringAdd V8_FINAL : public LTemplateInstruction<1, 3, 0> {
|
| +class LStringAdd FINAL : public LTemplateInstruction<1, 3, 0> {
|
| public:
|
| LStringAdd(LOperand* context, LOperand* left, LOperand* right) {
|
| inputs_[0] = context;
|
| @@ -2637,7 +2637,7 @@ class LStringAdd V8_FINAL : public LTemplateInstruction<1, 3, 0> {
|
|
|
|
|
|
|
| -class LStringCharCodeAt V8_FINAL : public LTemplateInstruction<1, 3, 0> {
|
| +class LStringCharCodeAt FINAL : public LTemplateInstruction<1, 3, 0> {
|
| public:
|
| LStringCharCodeAt(LOperand* context, LOperand* string, LOperand* index) {
|
| inputs_[0] = context;
|
| @@ -2654,7 +2654,7 @@ class LStringCharCodeAt V8_FINAL : public LTemplateInstruction<1, 3, 0> {
|
| };
|
|
|
|
|
| -class LStringCharFromCode V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LStringCharFromCode FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LStringCharFromCode(LOperand* context, LOperand* char_code) {
|
| inputs_[0] = context;
|
| @@ -2669,7 +2669,7 @@ class LStringCharFromCode V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LStringCompareAndBranch V8_FINAL : public LControlInstruction<3, 0> {
|
| +class LStringCompareAndBranch FINAL : public LControlInstruction<3, 0> {
|
| public:
|
| LStringCompareAndBranch(LOperand* context, LOperand* left, LOperand* right) {
|
| inputs_[0] = context;
|
| @@ -2687,12 +2687,12 @@ class LStringCompareAndBranch V8_FINAL : public LControlInstruction<3, 0> {
|
|
|
| Token::Value op() const { return hydrogen()->token(); }
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
| };
|
|
|
|
|
| // Truncating conversion from a tagged value to an int32.
|
| -class LTaggedToI V8_FINAL : public LTemplateInstruction<1, 1, 2> {
|
| +class LTaggedToI FINAL : public LTemplateInstruction<1, 1, 2> {
|
| public:
|
| explicit LTaggedToI(LOperand* value, LOperand* temp1, LOperand* temp2) {
|
| inputs_[0] = value;
|
| @@ -2711,7 +2711,7 @@ class LTaggedToI V8_FINAL : public LTemplateInstruction<1, 1, 2> {
|
| };
|
|
|
|
|
| -class LShiftI V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LShiftI FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LShiftI(Token::Value op, LOperand* left, LOperand* right, bool can_deopt)
|
| : op_(op), can_deopt_(can_deopt) {
|
| @@ -2732,7 +2732,7 @@ class LShiftI V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LShiftS V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LShiftS FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LShiftS(Token::Value op, LOperand* left, LOperand* right, bool can_deopt)
|
| : op_(op), can_deopt_(can_deopt) {
|
| @@ -2753,7 +2753,7 @@ class LShiftS V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LStoreCodeEntry V8_FINAL: public LTemplateInstruction<0, 2, 1> {
|
| +class LStoreCodeEntry FINAL: public LTemplateInstruction<0, 2, 1> {
|
| public:
|
| LStoreCodeEntry(LOperand* function, LOperand* code_object,
|
| LOperand* temp) {
|
| @@ -2766,14 +2766,14 @@ class LStoreCodeEntry V8_FINAL: public LTemplateInstruction<0, 2, 1> {
|
| LOperand* code_object() { return inputs_[1]; }
|
| LOperand* temp() { return temps_[0]; }
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
|
|
| DECLARE_CONCRETE_INSTRUCTION(StoreCodeEntry, "store-code-entry")
|
| DECLARE_HYDROGEN_ACCESSOR(StoreCodeEntry)
|
| };
|
|
|
|
|
| -class LStoreContextSlot V8_FINAL : public LTemplateInstruction<0, 2, 1> {
|
| +class LStoreContextSlot FINAL : public LTemplateInstruction<0, 2, 1> {
|
| public:
|
| LStoreContextSlot(LOperand* context, LOperand* value, LOperand* temp) {
|
| inputs_[0] = context;
|
| @@ -2790,11 +2790,11 @@ class LStoreContextSlot V8_FINAL : public LTemplateInstruction<0, 2, 1> {
|
|
|
| int slot_index() { return hydrogen()->slot_index(); }
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
| };
|
|
|
|
|
| -class LStoreGlobalCell V8_FINAL : public LTemplateInstruction<0, 1, 2> {
|
| +class LStoreGlobalCell FINAL : public LTemplateInstruction<0, 1, 2> {
|
| public:
|
| LStoreGlobalCell(LOperand* value, LOperand* temp1, LOperand* temp2) {
|
| inputs_[0] = value;
|
| @@ -2811,7 +2811,7 @@ class LStoreGlobalCell V8_FINAL : public LTemplateInstruction<0, 1, 2> {
|
| };
|
|
|
|
|
| -class LSubI V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LSubI FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LSubI(LOperand* left, LOperand* right)
|
| : shift_(NO_SHIFT), shift_amount_(0) {
|
| @@ -2855,14 +2855,14 @@ class LSubS: public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LThisFunction V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| +class LThisFunction FINAL : public LTemplateInstruction<1, 0, 0> {
|
| public:
|
| DECLARE_CONCRETE_INSTRUCTION(ThisFunction, "this-function")
|
| DECLARE_HYDROGEN_ACCESSOR(ThisFunction)
|
| };
|
|
|
|
|
| -class LToFastProperties V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LToFastProperties FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LToFastProperties(LOperand* value) {
|
| inputs_[0] = value;
|
| @@ -2875,7 +2875,7 @@ class LToFastProperties V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LTransitionElementsKind V8_FINAL : public LTemplateInstruction<0, 2, 2> {
|
| +class LTransitionElementsKind FINAL : public LTemplateInstruction<0, 2, 2> {
|
| public:
|
| LTransitionElementsKind(LOperand* object,
|
| LOperand* context,
|
| @@ -2896,7 +2896,7 @@ class LTransitionElementsKind V8_FINAL : public LTemplateInstruction<0, 2, 2> {
|
| "transition-elements-kind")
|
| DECLARE_HYDROGEN_ACCESSOR(TransitionElementsKind)
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
|
|
| Handle<Map> original_map() { return hydrogen()->original_map().handle(); }
|
| Handle<Map> transitioned_map() {
|
| @@ -2907,7 +2907,7 @@ class LTransitionElementsKind V8_FINAL : public LTemplateInstruction<0, 2, 2> {
|
| };
|
|
|
|
|
| -class LTrapAllocationMemento V8_FINAL : public LTemplateInstruction<0, 1, 2> {
|
| +class LTrapAllocationMemento FINAL : public LTemplateInstruction<0, 1, 2> {
|
| public:
|
| LTrapAllocationMemento(LOperand* object, LOperand* temp1, LOperand* temp2) {
|
| inputs_[0] = object;
|
| @@ -2923,7 +2923,7 @@ class LTrapAllocationMemento V8_FINAL : public LTemplateInstruction<0, 1, 2> {
|
| };
|
|
|
|
|
| -class LTruncateDoubleToIntOrSmi V8_FINAL
|
| +class LTruncateDoubleToIntOrSmi FINAL
|
| : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LTruncateDoubleToIntOrSmi(LOperand* value) {
|
| @@ -2940,7 +2940,7 @@ class LTruncateDoubleToIntOrSmi V8_FINAL
|
| };
|
|
|
|
|
| -class LTypeof V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LTypeof FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LTypeof(LOperand* context, LOperand* value) {
|
| inputs_[0] = context;
|
| @@ -2954,7 +2954,7 @@ class LTypeof V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LTypeofIsAndBranch V8_FINAL : public LControlInstruction<1, 2> {
|
| +class LTypeofIsAndBranch FINAL : public LControlInstruction<1, 2> {
|
| public:
|
| LTypeofIsAndBranch(LOperand* value, LOperand* temp1, LOperand* temp2) {
|
| inputs_[0] = value;
|
| @@ -2971,11 +2971,11 @@ class LTypeofIsAndBranch V8_FINAL : public LControlInstruction<1, 2> {
|
|
|
| Handle<String> type_literal() const { return hydrogen()->type_literal(); }
|
|
|
| - virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| + virtual void PrintDataTo(StringStream* stream) OVERRIDE;
|
| };
|
|
|
|
|
| -class LUint32ToDouble V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| +class LUint32ToDouble FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LUint32ToDouble(LOperand* value) {
|
| inputs_[0] = value;
|
| @@ -2987,7 +2987,7 @@ class LUint32ToDouble V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LCheckMapValue V8_FINAL : public LTemplateInstruction<0, 2, 1> {
|
| +class LCheckMapValue FINAL : public LTemplateInstruction<0, 2, 1> {
|
| public:
|
| LCheckMapValue(LOperand* value, LOperand* map, LOperand* temp) {
|
| inputs_[0] = value;
|
| @@ -3003,7 +3003,7 @@ class LCheckMapValue V8_FINAL : public LTemplateInstruction<0, 2, 1> {
|
| };
|
|
|
|
|
| -class LLoadFieldByIndex V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LLoadFieldByIndex FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LLoadFieldByIndex(LOperand* object, LOperand* index) {
|
| inputs_[0] = object;
|
| @@ -3046,7 +3046,7 @@ class LAllocateBlockContext: public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LWrapReceiver V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LWrapReceiver FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LWrapReceiver(LOperand* receiver, LOperand* function) {
|
| inputs_[0] = receiver;
|
| @@ -3062,7 +3062,7 @@ class LWrapReceiver V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
|
|
|
|
| class LChunkBuilder;
|
| -class LPlatformChunk V8_FINAL : public LChunk {
|
| +class LPlatformChunk FINAL : public LChunk {
|
| public:
|
| LPlatformChunk(CompilationInfo* info, HGraph* graph)
|
| : LChunk(info, graph) { }
|
| @@ -3072,7 +3072,7 @@ class LPlatformChunk V8_FINAL : public LChunk {
|
| };
|
|
|
|
|
| -class LChunkBuilder V8_FINAL : public LChunkBuilderBase {
|
| +class LChunkBuilder FINAL : public LChunkBuilderBase {
|
| public:
|
| LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator)
|
| : LChunkBuilderBase(graph->zone()),
|
|
|