[Webkit-unassigned] [Bug 34953] Implement DEFINE_STUB_FUNCTION for WinCE

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Apr 1 04:56:01 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=34953


Zoltan Herczeg <zherczeg at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |zherczeg at webkit.org




--- Comment #13 from Zoltan Herczeg <zherczeg at webkit.org>  2010-04-01 04:56:00 PST ---
Seeing the growth of these compiler specific generated assembly files, might be
a good idea to move all of them to a seperated file, from which a (python?)
script would generate a target specific assembly file. Basically we need the
compiler type, begin / end assembly sequence for the compiler, and the stub
specific code:

Might be something:

# comments (only at line start)
# indentation is not expected but suggested
# hopefully @ is not used by those assemblers
#     (gnu-as use them on some platforms)
#     if so it can be replaced to something else

@compiler: RVCT

   @begin:
      assembly code

   @body:
      assembly code for each stub function #op# replaced to something

   @end:
      assembly code

@compiler: MSVC

...

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list