|
View:
New views
13 Messages
—
Rating Filter:
Alert me
|
|
|
[jira] Created: (RVM-522) Make the root map an objectMake the root map an object
--------------------------- Key: RVM-522 URL: http://jira.codehaus.org/browse/RVM-522 Project: RVM Issue Type: Wish Components: Infrastructure: Build, MMTk Reporter: Ian Rogers Fix For: 1000 Currently the root map is paged into memory and accessed using addresses [1]. There doesn't seem to be a good reason why the root map couldn't be represented using a byte array and held in the data image, which imo would be more in the spirit of a Java-in-Java VM. It would require allocating and creating the root map at the end of writing the boot image in memory and then having an extra copy of the root map into the boot image once it was computed. We already do a similar job for the boot record. It needs to be at the end of the image as we don't know its length. [1] http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm/rvmroot/trunk/MMTk/ext/vm/jikesrvm/org/jikesrvm/mm/mmtk/ScanBootImage.java?revision=14232&view=markup -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Jikesrvm-issues mailing list Jikesrvm-issues@... https://lists.sourceforge.net/lists/listinfo/jikesrvm-issues |
|
|
[jira] Commented: (RVM-522) Make the root map an object[ http://jira.codehaus.org/browse/RVM-522?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=136801#action_136801 ] David Grove commented on RVM-522: --------------------------------- My impression was that putting it in a separate space was intentionally, since it has different access characteristics than normal bootimage objecrs. > Make the root map an object > --------------------------- > > Key: RVM-522 > URL: http://jira.codehaus.org/browse/RVM-522 > Project: RVM > Issue Type: Wish > Components: Infrastructure: Build, MMTk > Reporter: Ian Rogers > Fix For: 1000 > > > Currently the root map is paged into memory and accessed using addresses [1]. There doesn't seem to be a good reason why the root map couldn't be represented using a byte array and held in the data image, which imo would be more in the spirit of a Java-in-Java VM. It would require allocating and creating the root map at the end of writing the boot image in memory and then having an extra copy of the root map into the boot image once it was computed. We already do a similar job for the boot record. It needs to be at the end of the image as we don't know its length. > [1] http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm/rvmroot/trunk/MMTk/ext/vm/jikesrvm/org/jikesrvm/mm/mmtk/ScanBootImage.java?revision=14232&view=markup -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Jikesrvm-issues mailing list Jikesrvm-issues@... https://lists.sourceforge.net/lists/listinfo/jikesrvm-issues |
|
|
[jira] Commented: (RVM-522) Make the root map an object[ http://jira.codehaus.org/browse/RVM-522?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=136811#action_136811 ] Ian Rogers commented on RVM-522: -------------------------------- Its a randomly accessed list of bytes.. the random access is needed so that chunks can be skipped in the event that it is executing in parallel. I can't see why this shouldn't be a byte array other than the TLC it'll require to get this to work with the boot image writer. > Make the root map an object > --------------------------- > > Key: RVM-522 > URL: http://jira.codehaus.org/browse/RVM-522 > Project: RVM > Issue Type: Wish > Components: Infrastructure: Build, MMTk > Reporter: Ian Rogers > Fix For: 1000 > > > Currently the root map is paged into memory and accessed using addresses [1]. There doesn't seem to be a good reason why the root map couldn't be represented using a byte array and held in the data image, which imo would be more in the spirit of a Java-in-Java VM. It would require allocating and creating the root map at the end of writing the boot image in memory and then having an extra copy of the root map into the boot image once it was computed. We already do a similar job for the boot record. It needs to be at the end of the image as we don't know its length. > [1] http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm/rvmroot/trunk/MMTk/ext/vm/jikesrvm/org/jikesrvm/mm/mmtk/ScanBootImage.java?revision=14232&view=markup -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Jikesrvm-issues mailing list Jikesrvm-issues@... https://lists.sourceforge.net/lists/listinfo/jikesrvm-issues |
|
|
[jira] Commented: (RVM-522) Make the root map an object[ http://jira.codehaus.org/browse/RVM-522?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=136858#action_136858 ] Steve Blackburn commented on RVM-522: ------------------------------------- It would be trivial to make it an array. It was separated as a conscious design decision. I'm not going to die in a ditch over this, but it seemed to me that it is a special case, just as the code arrays are. 1. The root map is metadata; it describes the boot image. 2. Nor do we ever access it as a Java object because we can't afford the array bounds check. 3. Finally it is very large, with its size proportional to the boot image. None of these things make it *difficult* to implement within the boot image, but they may explain why I wanted to keep it separate. If this is a high priority for someone and they wish to reimplemented within the boot image, and do so without incurring performance overheads (due to array bounds checks, for example), that's OK with me. It's not the top of my priority list though, and it it is certainly not the way it is through laziness or lack of TLC; it was done that way deliberately. > Make the root map an object > --------------------------- > > Key: RVM-522 > URL: http://jira.codehaus.org/browse/RVM-522 > Project: RVM > Issue Type: Wish > Components: Infrastructure: Build, MMTk > Reporter: Ian Rogers > Fix For: 1000 > > > Currently the root map is paged into memory and accessed using addresses [1]. There doesn't seem to be a good reason why the root map couldn't be represented using a byte array and held in the data image, which imo would be more in the spirit of a Java-in-Java VM. It would require allocating and creating the root map at the end of writing the boot image in memory and then having an extra copy of the root map into the boot image once it was computed. We already do a similar job for the boot record. It needs to be at the end of the image as we don't know its length. > [1] http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm/rvmroot/trunk/MMTk/ext/vm/jikesrvm/org/jikesrvm/mm/mmtk/ScanBootImage.java?revision=14232&view=markup -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Jikesrvm-issues mailing list Jikesrvm-issues@... https://lists.sourceforge.net/lists/listinfo/jikesrvm-issues |
|
|
[jira] Commented: (RVM-522) Make the root map an object[ http://jira.codehaus.org/browse/RVM-522?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=136859#action_136859 ] Ian Rogers commented on RVM-522: -------------------------------- I think it is a poor design decision. Everything in the code image is an object, they have headers, lengths, we can manipulate them and pass around their object references. The data image is similar except you need two sets of glasses to look at the JTOC. For native code we can inspect it using a library like bfd (this would be nice for more verbose native stack traces). The root map on the other hand is only intelligible to the scan boot image code. If we wanted to inquire about the root map over say a JDWP debug connection, this wouldn't be possible. Currently the root map is only accessible through raw address accesses to memory, the main other place we have to handle data like this is JNI, but that was out of our hands. > Make the root map an object > --------------------------- > > Key: RVM-522 > URL: http://jira.codehaus.org/browse/RVM-522 > Project: RVM > Issue Type: Wish > Components: Infrastructure: Build, MMTk > Reporter: Ian Rogers > Fix For: 1000 > > > Currently the root map is paged into memory and accessed using addresses [1]. There doesn't seem to be a good reason why the root map couldn't be represented using a byte array and held in the data image, which imo would be more in the spirit of a Java-in-Java VM. It would require allocating and creating the root map at the end of writing the boot image in memory and then having an extra copy of the root map into the boot image once it was computed. We already do a similar job for the boot record. It needs to be at the end of the image as we don't know its length. > [1] http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm/rvmroot/trunk/MMTk/ext/vm/jikesrvm/org/jikesrvm/mm/mmtk/ScanBootImage.java?revision=14232&view=markup -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Jikesrvm-issues mailing list Jikesrvm-issues@... https://lists.sourceforge.net/lists/listinfo/jikesrvm-issues |
|
|
[jira] Commented: (RVM-522) Make the root map an object[ http://jira.codehaus.org/browse/RVM-522?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=136861#action_136861 ] Steve Blackburn commented on RVM-522: ------------------------------------- As I said, feel free to change it if it is a high priority issue for you. > Make the root map an object > --------------------------- > > Key: RVM-522 > URL: http://jira.codehaus.org/browse/RVM-522 > Project: RVM > Issue Type: Wish > Components: Infrastructure: Build, MMTk > Reporter: Ian Rogers > Fix For: 1000 > > > Currently the root map is paged into memory and accessed using addresses [1]. There doesn't seem to be a good reason why the root map couldn't be represented using a byte array and held in the data image, which imo would be more in the spirit of a Java-in-Java VM. It would require allocating and creating the root map at the end of writing the boot image in memory and then having an extra copy of the root map into the boot image once it was computed. We already do a similar job for the boot record. It needs to be at the end of the image as we don't know its length. > [1] http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm/rvmroot/trunk/MMTk/ext/vm/jikesrvm/org/jikesrvm/mm/mmtk/ScanBootImage.java?revision=14232&view=markup -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Jikesrvm-issues mailing list Jikesrvm-issues@... https://lists.sourceforge.net/lists/listinfo/jikesrvm-issues |
|
|
[jira] Commented: (RVM-522) Make the root map an object[ http://jira.codehaus.org/browse/RVM-522?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=136867#action_136867 ] Steve Blackburn commented on RVM-522: ------------------------------------- If you do do this, and as I understand it, your biggest objection is to the fact that it is not an object, then I suggest you keep the root map as a separately mmapable file and throw a header on the front (whcih will be trivial). Then you'll need to just ensure that it is accessed without array bounds checks (or read barrier, if we were ever to implement byte array read barriers) > Make the root map an object > --------------------------- > > Key: RVM-522 > URL: http://jira.codehaus.org/browse/RVM-522 > Project: RVM > Issue Type: Wish > Components: Infrastructure: Build, MMTk > Reporter: Ian Rogers > Fix For: 1000 > > > Currently the root map is paged into memory and accessed using addresses [1]. There doesn't seem to be a good reason why the root map couldn't be represented using a byte array and held in the data image, which imo would be more in the spirit of a Java-in-Java VM. It would require allocating and creating the root map at the end of writing the boot image in memory and then having an extra copy of the root map into the boot image once it was computed. We already do a similar job for the boot record. It needs to be at the end of the image as we don't know its length. > [1] http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm/rvmroot/trunk/MMTk/ext/vm/jikesrvm/org/jikesrvm/mm/mmtk/ScanBootImage.java?revision=14232&view=markup -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Jikesrvm-issues mailing list Jikesrvm-issues@... https://lists.sourceforge.net/lists/listinfo/jikesrvm-issues |
|
|
[jira] Closed: (RVM-522) Make the root map an object[ http://jira.codehaus.org/browse/RVM-522?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] David Grove closed RVM-522. --------------------------- Resolution: Won't Fix Fix Version/s: (was: 1000) looks to me like this is a won't fix, but feel free to re-open. (doing jira housecleaning...) > Make the root map an object > --------------------------- > > Key: RVM-522 > URL: http://jira.codehaus.org/browse/RVM-522 > Project: RVM > Issue Type: Wish > Components: Infrastructure: Build, MMTk > Reporter: Ian Rogers > > Currently the root map is paged into memory and accessed using addresses [1]. There doesn't seem to be a good reason why the root map couldn't be represented using a byte array and held in the data image, which imo would be more in the spirit of a Java-in-Java VM. It would require allocating and creating the root map at the end of writing the boot image in memory and then having an extra copy of the root map into the boot image once it was computed. We already do a similar job for the boot record. It needs to be at the end of the image as we don't know its length. > [1] http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm/rvmroot/trunk/MMTk/ext/vm/jikesrvm/org/jikesrvm/mm/mmtk/ScanBootImage.java?revision=14232&view=markup -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Jikesrvm-issues mailing list Jikesrvm-issues@... https://lists.sourceforge.net/lists/listinfo/jikesrvm-issues |
|
|
[jira] Reopened: (RVM-522) Make the root map an object[ http://jira.codehaus.org/browse/RVM-522?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ian Rogers reopened RVM-522: ---------------------------- Assignee: Ian Rogers I feel the metacircularity of Jikes RVM is spoilt by the root map not being an object. We do have non-objects in the RVM, the results of mmap calls being the main example. I think long term we should aim to get the root map into the data image as I don't see it as distinct. The current approach is convenient. > Make the root map an object > --------------------------- > > Key: RVM-522 > URL: http://jira.codehaus.org/browse/RVM-522 > Project: RVM > Issue Type: Wish > Components: Infrastructure: Build, MMTk > Reporter: Ian Rogers > Assignee: Ian Rogers > > Currently the root map is paged into memory and accessed using addresses [1]. There doesn't seem to be a good reason why the root map couldn't be represented using a byte array and held in the data image, which imo would be more in the spirit of a Java-in-Java VM. It would require allocating and creating the root map at the end of writing the boot image in memory and then having an extra copy of the root map into the boot image once it was computed. We already do a similar job for the boot record. It needs to be at the end of the image as we don't know its length. > [1] http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm/rvmroot/trunk/MMTk/ext/vm/jikesrvm/org/jikesrvm/mm/mmtk/ScanBootImage.java?revision=14232&view=markup -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Jikesrvm-issues mailing list Jikesrvm-issues@... https://lists.sourceforge.net/lists/listinfo/jikesrvm-issues |
|
|
[jira] Updated: (RVM-522) Make the root map an object[ http://jira.codehaus.org/browse/RVM-522?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] David Grove updated RVM-522: ---------------------------- Fix Version/s: 1000 > Make the root map an object > --------------------------- > > Key: RVM-522 > URL: http://jira.codehaus.org/browse/RVM-522 > Project: RVM > Issue Type: Wish > Components: Infrastructure: Build, MMTk > Reporter: Ian Rogers > Assignee: Ian Rogers > Fix For: 1000 > > > Currently the root map is paged into memory and accessed using addresses [1]. There doesn't seem to be a good reason why the root map couldn't be represented using a byte array and held in the data image, which imo would be more in the spirit of a Java-in-Java VM. It would require allocating and creating the root map at the end of writing the boot image in memory and then having an extra copy of the root map into the boot image once it was computed. We already do a similar job for the boot record. It needs to be at the end of the image as we don't know its length. > [1] http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm/rvmroot/trunk/MMTk/ext/vm/jikesrvm/org/jikesrvm/mm/mmtk/ScanBootImage.java?revision=14232&view=markup -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Jikesrvm-issues mailing list Jikesrvm-issues@... https://lists.sourceforge.net/lists/listinfo/jikesrvm-issues |
|
|
[jira] Commented: (RVM-522) Make the root map an object[ http://jira.codehaus.org/browse/RVM-522?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=146069#action_146069 ] David Grove commented on RVM-522: --------------------------------- It has different locality properties than the objects in the data segment. Even if it becomes an object, we should keep it separate segment. > Make the root map an object > --------------------------- > > Key: RVM-522 > URL: http://jira.codehaus.org/browse/RVM-522 > Project: RVM > Issue Type: Wish > Components: Infrastructure: Build, MMTk > Reporter: Ian Rogers > Assignee: Ian Rogers > Fix For: 1000 > > > Currently the root map is paged into memory and accessed using addresses [1]. There doesn't seem to be a good reason why the root map couldn't be represented using a byte array and held in the data image, which imo would be more in the spirit of a Java-in-Java VM. It would require allocating and creating the root map at the end of writing the boot image in memory and then having an extra copy of the root map into the boot image once it was computed. We already do a similar job for the boot record. It needs to be at the end of the image as we don't know its length. > [1] http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm/rvmroot/trunk/MMTk/ext/vm/jikesrvm/org/jikesrvm/mm/mmtk/ScanBootImage.java?revision=14232&view=markup -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Jikesrvm-issues mailing list Jikesrvm-issues@... https://lists.sourceforge.net/lists/listinfo/jikesrvm-issues |
|
|
[jira] Assigned: (RVM-522) Make the root map an object[ http://jira.codehaus.org/browse/RVM-522?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ian Rogers reassigned RVM-522: ------------------------------ Assignee: (was: Ian Rogers) > Make the root map an object > --------------------------- > > Key: RVM-522 > URL: http://jira.codehaus.org/browse/RVM-522 > Project: RVM > Issue Type: Wish > Components: Infrastructure: Build, MMTk > Reporter: Ian Rogers > Fix For: 1000 > > > Currently the root map is paged into memory and accessed using addresses [1]. There doesn't seem to be a good reason why the root map couldn't be represented using a byte array and held in the data image, which imo would be more in the spirit of a Java-in-Java VM. It would require allocating and creating the root map at the end of writing the boot image in memory and then having an extra copy of the root map into the boot image once it was computed. We already do a similar job for the boot record. It needs to be at the end of the image as we don't know its length. > [1] http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm/rvmroot/trunk/MMTk/ext/vm/jikesrvm/org/jikesrvm/mm/mmtk/ScanBootImage.java?revision=14232&view=markup -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira ------------------------------------------------------------------------------ Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA -OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise -Strategies to boost innovation and cut costs with open source participation -Receive a $600 discount off the registration fee with the source code: SFAD http://p.sf.net/sfu/XcvMzF8H _______________________________________________ Jikesrvm-issues mailing list Jikesrvm-issues@... https://lists.sourceforge.net/lists/listinfo/jikesrvm-issues |
|
|
[jira] Closed: (RVM-522) Make the root map an object[ http://jira.codehaus.org/browse/RVM-522?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] David Grove closed RVM-522. --------------------------- Resolution: Won't Fix Fix Version/s: (was: 1000) > Make the root map an object > --------------------------- > > Key: RVM-522 > URL: http://jira.codehaus.org/browse/RVM-522 > Project: RVM > Issue Type: Wish > Components: Infrastructure: Build, MMTk > Reporter: Ian Rogers > > Currently the root map is paged into memory and accessed using addresses [1]. There doesn't seem to be a good reason why the root map couldn't be represented using a byte array and held in the data image, which imo would be more in the spirit of a Java-in-Java VM. It would require allocating and creating the root map at the end of writing the boot image in memory and then having an extra copy of the root map into the boot image once it was computed. We already do a similar job for the boot record. It needs to be at the end of the image as we don't know its length. > [1] http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm/rvmroot/trunk/MMTk/ext/vm/jikesrvm/org/jikesrvm/mm/mmtk/ScanBootImage.java?revision=14232&view=markup -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ Jikesrvm-issues mailing list Jikesrvm-issues@... https://lists.sourceforge.net/lists/listinfo/jikesrvm-issues |
| Free embeddable forum powered by Nabble | Forum Help |