About: Jupiter JVM

An Entity of Type: software, from Named Graph: http://dbpedia.org, within Data Space: dbpedia.org

Jupiter JVM is an open-source Java virtual machine, which has been developed as a master thesis with modularity and extensibility in mind. It uses Boehm garbage collector and GNU Classpath. The Jupiter Virtual Machine main aspects of its design can be simplified as:

Property Value
dbo:abstract
  • Jupiter JVM is an open-source Java virtual machine, which has been developed as a master thesis with modularity and extensibility in mind. It uses Boehm garbage collector and GNU Classpath. The Jupiter Virtual Machine main aspects of its design can be simplified as: * Memory locality - Objects are allocated on the heap with little or no consideration for locality. While this approach may be appropriate for uniprocessors or small-scale SMPs, it is unlikely to work well on a cluster of workstations where remote memory access is one or two orders of magnitude slower than local memory access. * - Garbage collection can consume a considerable amount of application time. Typically, JVMs employ "stop-the-world" garbage collectors, where program threads are halted during garbage collection. This approach will not work for large numbers of processors, for two reasons. First, the cost of "stopping the world" is considerably higher when the number of processors is large. Second, using a single thread to collect garbage results in an unacceptably large sequential fraction for any application. * Memory consistency model - To achieve scaling performance on many processors, it is important to exploit the "relaxed" Java Memory Model. Presently no JVM implements the JMM faithfully, and indeed many implement it incorrectly, leading to lack of coherence and loss of optimization opportunities. The specification of the JMM was also revised in 2007. * Efficient threads and synchronization - With many processors, it is critical to provide efficient threading support and synchronization mechanisms that scale well. (en)
dbo:genre
dbo:latestReleaseDate
  • 2002-07-15 (xsd:date)
dbo:latestReleaseVersion
  • 1.0.0 beta
dbo:license
dbo:wikiPageExternalLink
dbo:wikiPageID
  • 2078458 (xsd:integer)
dbo:wikiPageLength
  • 2613 (xsd:nonNegativeInteger)
dbo:wikiPageRevisionID
  • 979540336 (xsd:integer)
dbo:wikiPageWikiLink
dbp:discontinued
  • yes (en)
dbp:genre
dbp:latestReleaseDate
  • 2002-07-15 (xsd:date)
dbp:latestReleaseVersion
  • 1 (xsd:integer)
dbp:license
dbp:name
  • Jupiter JVM (en)
dbp:website
dbp:wikiPageUsesTemplate
dcterms:subject
gold:hypernym
rdf:type
rdfs:comment
  • Jupiter JVM is an open-source Java virtual machine, which has been developed as a master thesis with modularity and extensibility in mind. It uses Boehm garbage collector and GNU Classpath. The Jupiter Virtual Machine main aspects of its design can be simplified as: (en)
rdfs:label
  • Jupiter JVM (en)
owl:sameAs
prov:wasDerivedFrom
foaf:homepage
foaf:isPrimaryTopicOf
foaf:name
  • Jupiter JVM (en)
is dbo:wikiPageDisambiguates of
is dbo:wikiPageWikiLink of
is foaf:primaryTopic of
Powered by OpenLink Virtuoso    This material is Open Knowledge     W3C Semantic Web Technology     This material is Open Knowledge    Valid XHTML + RDFa
This content was extracted from Wikipedia and is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License