| Index: src/ppc/lithium-codegen-ppc.cc
|
| diff --git a/src/ppc/lithium-codegen-ppc.cc b/src/ppc/lithium-codegen-ppc.cc
|
| index 9e1bfe3d61ec6a06d59774fd988af37ef24d2d95..7b6052c3e624ef89eb678241ef74dbffcfadf5dc 100644
|
| --- a/src/ppc/lithium-codegen-ppc.cc
|
| +++ b/src/ppc/lithium-codegen-ppc.cc
|
| @@ -24,9 +24,9 @@ class SafepointGenerator FINAL : public CallWrapper {
|
| : codegen_(codegen), pointers_(pointers), deopt_mode_(mode) {}
|
| virtual ~SafepointGenerator() {}
|
|
|
| - virtual void BeforeCall(int call_size) const OVERRIDE {}
|
| + void BeforeCall(int call_size) const OVERRIDE {}
|
|
|
| - virtual void AfterCall() const OVERRIDE {
|
| + void AfterCall() const OVERRIDE {
|
| codegen_->RecordSafepoint(pointers_, deopt_mode_);
|
| }
|
|
|
| @@ -2833,10 +2833,10 @@ void LCodeGen::DoInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr) {
|
| DeferredInstanceOfKnownGlobal(LCodeGen* codegen,
|
| LInstanceOfKnownGlobal* instr)
|
| : LDeferredCode(codegen), instr_(instr) {}
|
| - virtual void Generate() OVERRIDE {
|
| + void Generate() OVERRIDE {
|
| codegen()->DoDeferredInstanceOfKnownGlobal(instr_, &map_check_);
|
| }
|
| - virtual LInstruction* instr() OVERRIDE { return instr_; }
|
| + LInstruction* instr() OVERRIDE { return instr_; }
|
| Label* map_check() { return &map_check_; }
|
|
|
| private:
|
| @@ -3904,10 +3904,10 @@ void LCodeGen::DoMathAbs(LMathAbs* instr) {
|
| public:
|
| DeferredMathAbsTaggedHeapNumber(LCodeGen* codegen, LMathAbs* instr)
|
| : LDeferredCode(codegen), instr_(instr) {}
|
| - virtual void Generate() OVERRIDE {
|
| + void Generate() OVERRIDE {
|
| codegen()->DoDeferredMathAbsTaggedHeapNumber(instr_);
|
| }
|
| - virtual LInstruction* instr() OVERRIDE { return instr_; }
|
| + LInstruction* instr() OVERRIDE { return instr_; }
|
|
|
| private:
|
| LMathAbs* instr_;
|
| @@ -4745,10 +4745,8 @@ void LCodeGen::DoStringCharCodeAt(LStringCharCodeAt* instr) {
|
| public:
|
| DeferredStringCharCodeAt(LCodeGen* codegen, LStringCharCodeAt* instr)
|
| : LDeferredCode(codegen), instr_(instr) {}
|
| - virtual void Generate() OVERRIDE {
|
| - codegen()->DoDeferredStringCharCodeAt(instr_);
|
| - }
|
| - virtual LInstruction* instr() OVERRIDE { return instr_; }
|
| + void Generate() OVERRIDE { codegen()->DoDeferredStringCharCodeAt(instr_); }
|
| + LInstruction* instr() OVERRIDE { return instr_; }
|
|
|
| private:
|
| LStringCharCodeAt* instr_;
|
| @@ -4800,10 +4798,10 @@ void LCodeGen::DoStringCharFromCode(LStringCharFromCode* instr) {
|
| public:
|
| DeferredStringCharFromCode(LCodeGen* codegen, LStringCharFromCode* instr)
|
| : LDeferredCode(codegen), instr_(instr) {}
|
| - virtual void Generate() OVERRIDE {
|
| + void Generate() OVERRIDE {
|
| codegen()->DoDeferredStringCharFromCode(instr_);
|
| }
|
| - virtual LInstruction* instr() OVERRIDE { return instr_; }
|
| + LInstruction* instr() OVERRIDE { return instr_; }
|
|
|
| private:
|
| LStringCharFromCode* instr_;
|
| @@ -4874,11 +4872,11 @@ void LCodeGen::DoNumberTagI(LNumberTagI* instr) {
|
| public:
|
| DeferredNumberTagI(LCodeGen* codegen, LNumberTagI* instr)
|
| : LDeferredCode(codegen), instr_(instr) {}
|
| - virtual void Generate() OVERRIDE {
|
| + void Generate() OVERRIDE {
|
| codegen()->DoDeferredNumberTagIU(instr_, instr_->value(), instr_->temp1(),
|
| instr_->temp2(), SIGNED_INT32);
|
| }
|
| - virtual LInstruction* instr() OVERRIDE { return instr_; }
|
| + LInstruction* instr() OVERRIDE { return instr_; }
|
|
|
| private:
|
| LNumberTagI* instr_;
|
| @@ -4903,11 +4901,11 @@ void LCodeGen::DoNumberTagU(LNumberTagU* instr) {
|
| public:
|
| DeferredNumberTagU(LCodeGen* codegen, LNumberTagU* instr)
|
| : LDeferredCode(codegen), instr_(instr) {}
|
| - virtual void Generate() OVERRIDE {
|
| + void Generate() OVERRIDE {
|
| codegen()->DoDeferredNumberTagIU(instr_, instr_->value(), instr_->temp1(),
|
| instr_->temp2(), UNSIGNED_INT32);
|
| }
|
| - virtual LInstruction* instr() OVERRIDE { return instr_; }
|
| + LInstruction* instr() OVERRIDE { return instr_; }
|
|
|
| private:
|
| LNumberTagU* instr_;
|
| @@ -4989,10 +4987,8 @@ void LCodeGen::DoNumberTagD(LNumberTagD* instr) {
|
| public:
|
| DeferredNumberTagD(LCodeGen* codegen, LNumberTagD* instr)
|
| : LDeferredCode(codegen), instr_(instr) {}
|
| - virtual void Generate() OVERRIDE {
|
| - codegen()->DoDeferredNumberTagD(instr_);
|
| - }
|
| - virtual LInstruction* instr() OVERRIDE { return instr_; }
|
| + void Generate() OVERRIDE { codegen()->DoDeferredNumberTagD(instr_); }
|
| + LInstruction* instr() OVERRIDE { return instr_; }
|
|
|
| private:
|
| LNumberTagD* instr_;
|
| @@ -5219,8 +5215,8 @@ void LCodeGen::DoTaggedToI(LTaggedToI* instr) {
|
| public:
|
| DeferredTaggedToI(LCodeGen* codegen, LTaggedToI* instr)
|
| : LDeferredCode(codegen), instr_(instr) {}
|
| - virtual void Generate() OVERRIDE { codegen()->DoDeferredTaggedToI(instr_); }
|
| - virtual LInstruction* instr() OVERRIDE { return instr_; }
|
| + void Generate() OVERRIDE { codegen()->DoDeferredTaggedToI(instr_); }
|
| + LInstruction* instr() OVERRIDE { return instr_; }
|
|
|
| private:
|
| LTaggedToI* instr_;
|
| @@ -5428,11 +5424,11 @@ void LCodeGen::DoCheckMaps(LCheckMaps* instr) {
|
| : LDeferredCode(codegen), instr_(instr), object_(object) {
|
| SetExit(check_maps());
|
| }
|
| - virtual void Generate() OVERRIDE {
|
| + void Generate() OVERRIDE {
|
| codegen()->DoDeferredInstanceMigration(instr_, object_);
|
| }
|
| Label* check_maps() { return &check_maps_; }
|
| - virtual LInstruction* instr() OVERRIDE { return instr_; }
|
| + LInstruction* instr() OVERRIDE { return instr_; }
|
|
|
| private:
|
| LCheckMaps* instr_;
|
| @@ -5561,8 +5557,8 @@ void LCodeGen::DoAllocate(LAllocate* instr) {
|
| public:
|
| DeferredAllocate(LCodeGen* codegen, LAllocate* instr)
|
| : LDeferredCode(codegen), instr_(instr) {}
|
| - virtual void Generate() OVERRIDE { codegen()->DoDeferredAllocate(instr_); }
|
| - virtual LInstruction* instr() OVERRIDE { return instr_; }
|
| + void Generate() OVERRIDE { codegen()->DoDeferredAllocate(instr_); }
|
| + LInstruction* instr() OVERRIDE { return instr_; }
|
|
|
| private:
|
| LAllocate* instr_;
|
| @@ -5927,10 +5923,8 @@ void LCodeGen::DoStackCheck(LStackCheck* instr) {
|
| public:
|
| DeferredStackCheck(LCodeGen* codegen, LStackCheck* instr)
|
| : LDeferredCode(codegen), instr_(instr) {}
|
| - virtual void Generate() OVERRIDE {
|
| - codegen()->DoDeferredStackCheck(instr_);
|
| - }
|
| - virtual LInstruction* instr() OVERRIDE { return instr_; }
|
| + void Generate() OVERRIDE { codegen()->DoDeferredStackCheck(instr_); }
|
| + LInstruction* instr() OVERRIDE { return instr_; }
|
|
|
| private:
|
| LStackCheck* instr_;
|
| @@ -6074,10 +6068,10 @@ void LCodeGen::DoLoadFieldByIndex(LLoadFieldByIndex* instr) {
|
| result_(result),
|
| object_(object),
|
| index_(index) {}
|
| - virtual void Generate() OVERRIDE {
|
| + void Generate() OVERRIDE {
|
| codegen()->DoDeferredLoadMutableDouble(instr_, result_, object_, index_);
|
| }
|
| - virtual LInstruction* instr() OVERRIDE { return instr_; }
|
| + LInstruction* instr() OVERRIDE { return instr_; }
|
|
|
| private:
|
| LLoadFieldByIndex* instr_;
|
|
|