PPC: Unify "runtime-style" IC functions with Runtime intrinsics
authormbrandy <mbrandy@us.ibm.com>
Thu, 23 Jul 2015 16:22:59 +0000 (09:22 -0700)
committerCommit bot <commit-bot@chromium.org>
Thu, 23 Jul 2015 16:23:09 +0000 (16:23 +0000)
commit1a57cede121f8c09af02f3f3e4959746b179b90b
treef37bfc3a086948f51d32c50af953707e5edcde01
parentf80e6869063140f0684cea498b8687bd99332d61
PPC: Unify "runtime-style" IC functions with Runtime intrinsics

Port bc8041dc2b4c8431c5c2476496acd3b7b8b3f61e

Original commit message:
    Previous to this CL, ICs used a slightly different code idiom
    to get to C++ code from generated code than runtime intrinsics,
    using an IC_Utility class that in essence provided exactly
    the same functionality as Runtime::FunctionForId, but in its
    own quirky way.

    This CL unifies the two mechanisms, folding IC_Utility
    away by making all IC entry points in C++ code, e.g. IC
    miss handlers, full-fledged runtime intrinsics. This makes
    it possible to eliminate a bunch of ad-hoc declarations and
    adapters that the IC system had to needlessly re-invent.

    As a bonus and the original reason for this yak-shave:
    IC-related C++ runtime functions are now callable from
    TurboFan.

R=danno@chromium.org, dstence@us.ibm.com, michael_dawson@ca.ibm.com
BUG=

Review URL: https://codereview.chromium.org/1249433004

Cr-Commit-Position: refs/heads/master@{#29821}
src/ic/ppc/handler-compiler-ppc.cc
src/ic/ppc/ic-ppc.cc
src/ppc/code-stubs-ppc.cc
src/ppc/debug-ppc.cc