Changeset 159099 in webkit


Ignore:
Timestamp:
Nov 12, 2013 12:21:05 AM (10 years ago)
Author:
Csaba Osztrogonác
Message:

InvalidIndex shouldn't be private in GPRInfo and FPRInfo for sh4, mips and arm64 architectures.
https://bugs.webkit.org/show_bug.cgi?id=124156

Patch by Julien Brianceau <jbriance@cisco.com> on 2013-11-12
Reviewed by Michael Saboff.

  • jit/FPRInfo.h:

(JSC::FPRInfo::debugName):

  • jit/GPRInfo.h:

(JSC::GPRInfo::debugName):

Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r159097 r159099  
     12013-11-12  Julien Brianceau  <jbriance@cisco.com>
     2
     3        InvalidIndex shouldn't be private in GPRInfo and FPRInfo for sh4, mips and arm64 architectures.
     4        https://bugs.webkit.org/show_bug.cgi?id=124156
     5
     6        Reviewed by Michael Saboff.
     7
     8        * jit/FPRInfo.h:
     9        (JSC::FPRInfo::debugName):
     10        * jit/GPRInfo.h:
     11        (JSC::GPRInfo::debugName):
     12
    1132013-11-11  Andreas Kling  <akling@apple.com>
    214
  • trunk/Source/JavaScriptCore/jit/FPRInfo.h

    r159055 r159099  
    258258    }
    259259
    260 private:
    261260    static const unsigned InvalidIndex = 0xffffffff;
    262261};
     
    325324        return nameForRegister[reg];
    326325    }
    327 private:
    328326
    329327    static const unsigned InvalidIndex = 0xffffffff;
     
    389387    }
    390388
    391 private:
    392389    static const unsigned InvalidIndex = 0xffffffff;
    393390};
  • trunk/Source/JavaScriptCore/jit/GPRInfo.h

    r159039 r159099  
    682682        return nameForRegister[reg];
    683683    }
    684 private:
    685684
    686685    static const unsigned InvalidIndex = 0xffffffff;
     
    754753    }
    755754
    756 private:
    757755    static const unsigned InvalidIndex = 0xffffffff;
    758756};
Note: See TracChangeset for help on using the changeset viewer.