You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
-
3Money. The money that used to be poured into C++ and Fortran now is poured into the HotSpot, CLR, Mono, V8, Nitro, SpiderMonkey, etc.Jörg W Mittag– Jörg W Mittag2013-09-30 23:54:11 +00:00Commented Sep 30, 2013 at 23:54
-
I can only guess, but I think it is just improvement over time, like described here joelonsoftware.com/articles/fog0000000017.htmlDoc Brown– Doc Brown2013-10-01 06:01:10 +00:00Commented Oct 1, 2013 at 6:01
-
1RE how PyPy can be faster than CPython: It isn't written in Python, it's written in a quite different language that can be AOT-optimized effectively.user7043– user70432013-10-01 10:08:04 +00:00Commented Oct 1, 2013 at 10:08
-
1@Gomi It's not about how similar the implementation language is to the implemented language. There are JavaScript, Lisp, Prolog, SmallTalk and Ruby interpreters written in RPython and they get exactly the same goodies PyPy offers. The only reason RPython is based on Python is that it was created by a bunch of Python enthusiasts. The features of RPython that make PyPy fast have nothing to do with Python: Automatic JIT compiler generation, the garbage collectors, etc. - and yes, most of that could in principle be done using other languages. You'd have to create a whole new compiler though.user7043– user70432013-10-01 15:29:45 +00:00Commented Oct 1, 2013 at 15:29
-
4-1 because you seem to have at least 3 different questions here: (a) Why are meta-circular implementations so good? (b) Are VMs efficient because of type information, and is introspection beneficial for performance? (c) How come VM popularity surged in the late 2000s, and how come they all of a sudden have good performance? I think it's better to ask those questions separately.Oak– Oak2013-10-02 06:39:13 +00:00Commented Oct 2, 2013 at 6:39
|
Show 7 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
-
create code fences with backticks ` or tildes ~
```
like so
``` -
add language identifier to highlight code
```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible)
<https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. design-patterns), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you