Announcement

Collapse
No announcement yet.

SIMD JavaScript Support Added To Firefox, Under Review For Chrome

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #31
    Originally posted by Luke_Wolf View Post
    Alternatively as stated for a third time now: I could use LLVM to JIT compile C++
    So I can just take that and tun it on my phone, and my TV, and my PS4?
    I mean as you have said it so many times now it must be true sooner or later, right?

    Comment


    • #32
      Originally posted by Luke_Wolf View Post
      Actually most people do have Java installed either because something they pulled in needed it or if they're running linux most distros install it by default. The besides which is woo... big deal, it's not like this is an issue that has been there for forever and a day and has been solved plenty times over, if you're on windows you put a check in the installer and if it doesn't have it you download and install it for them. On linux you declare your dependency and let the distro packagers take care of everything for you, and maybe provide a generic rpm and deb, etc...

      In short you're making up problems that don't really exist.
      I don't have any numbers, but I think most people don't have Java installed.
      I don't think it is as easy as it sounds, you need to write much more code to handle that. And the code to handle that can't be in Java itself because you can't use Java to install the JVM, so you would need to build installers for each platform that you want to support.
      For web applications, users don't need to install anything, they just open a link and see your program. Remember that a lot of people don't even know how to install software on their machines.

      Originally posted by Luke_Wolf View Post
      Compiling for every platform is seriously not as big of a problem as you make it out to be. Python has a BSD-ish license and as a result you can bundle it in your installer if you really want to, and as stated above actually most users do have a JVM installed because of other programs requiring it, and if we're just concerned about most users (aka those running windows) I can just use .NET and winforms.
      You need to waste a lot of resources to compile your software for every platform. You need to test it on each platform, you need to either use cross-platform libraries or build different versions of your software. It's far more expensive.

      Originally posted by Luke_Wolf View Post
      Alternatively as stated for a third time now: I could use LLVM to JIT compile C++
      It is far more difficult compared to just write an application with JavaScript... And you still need to test everything on all the platforms. And, IIRC, LLVM doesn't work on some versions of Windows.

      Originally posted by Luke_Wolf View Post
      which is at best utterly absurd at worst a bad joke. So take it in that context.
      "Faster" is quite difficult
      But sometimes you can reach "as fast as", for example using asm.js.

      Originally posted by Luke_Wolf View Post
      actually I'm pretty sure he wanted a JVM in JS which is nuts.
      Well, I wouldn't be so surprised if it will happen in the near future.
      We already have Python, Lua and some others: http://repl.it/
      There's even a JVM implemented in JS, but I haven't tested it, I don't know how many features it implements: http://int3.github.io/doppio/

      Comment


      • #33
        Originally posted by abral View Post
        I don't have any numbers, but I think most people don't have Java installed.
        I don't think it is as easy as it sounds, you need to write much more code to handle that. And the code to handle that can't be in Java itself because you can't use Java to install the JVM, so you would need to build installers for each platform that you want to support.
        For web applications, users don't need to install anything, they just open a link and see your program. Remember that a lot of people don't even know how to install software on their machines.
        Stop guessing when you have no idea what you are talking about.
        Most people have Java installed.
        Depending on Java in Linux isn't hard.
        Depending on Java in Windows is a bit harder but not hard.

        Originally posted by abral View Post
        But sometimes you can reach "as fast as", for example using asm.js.
        Asm.JS is not Javascript, it's bytecode. Just Javascript compatible but that have
        nothing to do with Javascript when it's run as it's supposed to.

        Comment


        • #34
          Nay-saying for nay-saying's sake

          Originally posted by Luke_Wolf View Post
          Higher complexity games that need this kind of performance, emulators, and media processing should not be written in javascript. At most you can argue that the game scripts can be written in javascript but even then there's better options. It's the wrong tool for the job. Typescript and friends improve the situation but even then you're still in a horrible situation.

          Javascript is fine for simple games and things that aren't all that complex, animations, UI stuff, things like that. That said I really don't want to imagine the eye-burning horror that an emulator or encoder written in JS will look like in terms of the codebase.
          But why should it be that way and remain so? Because people like you think its unnecessary and that there are better tools today? Its not for you to decide what benefits others see in technologies you wouldn't choose for yourself.

          I mean, if that attitude were allowed to prevail we'd be writing games in assembler still. After all, early compilers for C and other contemporary languages didn't generate code that was as fast as even moderately skilled human programmers, and clearly games demand high performance and should therefore stick with an existing language that's a proven performance platform. Why bother even trying to make C faster, the obvious benefit of high-level programming is that code is more portable, not that it can be fast too. C and C++ certainly don't need SIMD intrinsics either, if you're willing to commit fully to your argument.

          We can't just say things don't work well enough now, and therefore we shouldn't make them better, and therefore they will never be work well enough. That's circular logic.

          Now, I'm fully aware of the history of Javascript being used at first for little hacks and mouse-overs, etc. So what? Name me a single mainstream programming language that predicted, rather than assumed, if and where it would be successful 20 years after its introduction? Today, following best practices, and avoiding certain parts of it--and I ask you: what language does not have its warts--you can write perfectly well-engineered code in JavaScript.

          I'm neither so naive to proclaim that Javascipt/HTML5 is a bastion of portability across browsers, especially in light of the more bleeding-edge features; nor am I silly enough to think this disproves those claims flatly -- you don't need the code to run the same on every browser to run on most platforms -- proclaim that Chrome (for example) is your client, concern yourself with support chrome to the fullest extent, and call it a day -- take tomorrow off, you've done good; 300 million people already have your client installed.

          Comment


          • #35
            Originally posted by Pajn View Post
            Stop guessing when you have no idea what you are talking about.
            Most people have Java installed.
            Depending on Java in Linux isn't hard.
            Depending on Java in Windows is a bit harder but not hard.
            I would like to know where you take the data to back your assumptions.
            Without any statistics, talking is useless.

            Originally posted by Pajn View Post
            Asm.JS is not Javascript, it's bytecode. Just Javascript compatible but that have
            nothing to do with Javascript when it's run as it's supposed to.
            asm.js is a subset of JavaScript. It is not bytecode.
            Anyway the point is that it's executable by a browser just like JavaScript, and with it you can reach performance similar to compiled programs.

            Comment


            • #36
              Originally posted by abral View Post
              I would like to know where you take the data to back your assumptions.
              Without any statistics, talking is useless.
              Then why do you talk as you obviously have no data to back your statements?
              I however, do.

              The numbers of computers that have Java installed is in fact higher since a lot of browsers
              now have started to block Java until accepted.

              Originally posted by abral View Post
              asm.js is a subset of JavaScript. It is not bytecode.
              Anyway the point is that it's executable by a browser just like JavaScript, and with it you can reach performance similar to compiled programs.
              Asm.JS is a subset of Javascript yes. A totally static subset that is compiled from a language
              like C, but needs to be compiled again to be run on a processor natively. a.k.a. bytecode.
              Your point is correct, however it still isn't Javascript. Just a Javascript compatible bytecode.

              Comment


              • #37
                Originally posted by Daktyl198 View Post
                I just want to hop in and say I kinda agree with Luke_Wolf on this argument.

                There are things JavaScript should be used for (interactive web pages, simple-and-stupid web games, etc) and things it really, really shouldn't be used for. Unfortunately, the die-hard JavaScript fans don't realize this, and think it can and should be use for _everything_. Hell, I saw a guy switch from cmake to node.js (writing the script himself), breaking all ARM compatibility along with introducing a ton of issues that weren't there previously. All because he "likes node.js" >_>
                There are many reasons to use dynamic languages. First, it can be tested even if it would not compile. TDD is the solution to problems, not limited static type checking. The green lights in test report are more useful than cryptic compiler errors or warning (why do they even need to show warnings). Dynamic typing is less verbose and less typing means less bugs in code. Some other good ideas http://boxbase.org/entries/2014/feb/...yping-is-good/

                Comment


                • #38
                  Originally posted by Pajn View Post
                  So I can just take that and tun it on my phone, and my TV, and my PS4?
                  I mean as you have said it so many times now it must be true sooner or later, right?
                  Well obviously you need the LLVM runtime in order to do the JITing, and assuming that you have installed LLVM on those devices and you bundled all of the libraries you required into it (and that the libraries support all of these platforms) then yes in theory it will. However last I checked Android doesn't have LLVM as part of it's image and the PS4 may or may not.

                  That all said trying to run the same unmodified program across all of those platforms plus a desktop is stupid. You are going to at a minimum want different binaries with completely different UIs using paradigms appropriate for the platform coded into them which JS is not going to help with.

                  Comment


                  • #39
                    Originally posted by Luke_Wolf View Post
                    Pure Dynamic Types are evil. Period. Why?
                    (if you don't see what's wrong with this picture... I don't want to maintain your codebase)
                    Javascript also comes with a fixed equality operator. Problem solved. Just like PHP has one.

                    Originally posted by Luke_Wolf View Post
                    Oh yes because web browsers aren't binaries, clearly... Obviously I don't need anything at all to run the javascript. Nope.
                    Fact: It's an interepreted language and as a result you need a binary, the interpreter, and JS needs it just as much as any other interpreted language so you get no points.
                    Fact is, JS is NOT interpreted anymore, it's a JIT compiled modern language. Another fact is, I can't just install Python or Java on my iPad, Android phone, Chrome OS, Enterprise Windows at school or work. Why? The reason is not technical, it's political. The whole Mozilla is now run by JS inventor. Of course we will shove JS down our throats no matter what you think. They have been actively enforcing JS for ages. You've seen PDF.js in Firefox? I'll tell you. It's purely crap. It's slow and buggy, but they're enforcing it. You can't choose.

                    Originally posted by Luke_Wolf View Post
                    Works out of the box.... no... you still need a web browser or something else to interpret the JS code for you, just like anything else. Furthermore on almost every linux system BASH works "out of the box", but does that mean that I should be writing everything in BASH? Hell no.
                    Some Linux systems have switched to dash so Bash is not a standard. I also don't know what shell my Android devices or iPad has. I doubt Bash. Anyways, think of the modern platforms: tablets, phones, smart TV, desktop, server, set top boxes, etc. They ALL are migrating towards a browser based interface. Browser is the de facto standard today. It's a terrible platform in many ways, but everybody seems to like it and that's where the money is.

                    Originally posted by Luke_Wolf View Post
                    No, no it really isn't. It's stupid-lazy friendly in that it's not particularly strict, it's loosely and dynamically typed, has significant amounts of brain damage (== vs ===) and in general it has the w3c's idiotic attitudes.
                    Yes, but the big players are backing it.

                    A user friendly language is toolable, a user friendly language tells you what you're doing wrong and what to change to fix things instead of trying to do weird shit behind your back, a user friendly language works with you to help you write better code. a user friendly language JS is not.

                    You know the .NET and JVM Managed Language guys claimed the same thing... guess what hasn't happened? Because here's the problem, as people find new and better ways to to make compilers optimize code the ideas get shared around and everyone implements them. Now the .NET and JVM guys could actually have an argument here because of a trick called Profile Guided Optimizations which they could continuously do, as long as the bytecode is cached.
                    JS now has SSE and AVX and GPU acceleration.

                    And here you lose the point, because it's got such great standards support that half the internet is broken when using webkit proper with Rekonq and other browsers, and even in mainstream browsers there is significant breakage across various webpages usually exclusively favouring either Chrome or Firefox, textnow as an example only works with firefox.
                    People are forced to use Firefox, Chrome, IE, Opera. All other browsers will be ridiculed and forgotten. Only hardcore nerds will use them and miss the old Web 1.0. Mainstream users want something that works.


                    Actually it's neither new or the cool kid on the block. It's such the cool kid on the block that most of the major browser developers are trying to replace it entirely or create a variant of it fixing design flaws inherent in Javascript (Typescript, Coffeescript, Dart, et al).
                    JS is the cool new intermediate language. It's probably worse than academic bytecode formats, but technical merits don't matter. JS will be replaced with something better in the future but now a great political force is pushing JS as intermediate format and there's nothing you can do about it.

                    Surely you must be joking. Flash maybe since they're closish in terms of language and mozilla has decided to start on one (although in all likelihood it'll only get as far as Gnash, which is to say not far enough), Java and Silverlight though... hell no... not happening and you're completely daft if you think anyone but the most insane person is going to spend that kind of effort on a project like that. And if that person does the rest of the programming world will be looking at them with a cocked eye going WTF?
                    Last time I checked, shumway was better than gnash. The developers and people who spread media hype also like the more liberal licenses and want to differentiate from toenail eating FSF guys.

                    Comment


                    • #40
                      Originally posted by Luke_Wolf View Post
                      Well obviously you need the LLVM runtime in order to do the JITing, and assuming that you have installed LLVM on those devices and you bundled all of the libraries you required into it (and that the libraries support all of these platforms) then yes in theory it will. However last I checked Android doesn't have LLVM as part of it's image and the PS4 may or may not.

                      That all said trying to run the same unmodified program across all of those platforms plus a desktop is stupid. You are going to at a minimum want different binaries with completely different UIs using paradigms appropriate for the platform coded into them which JS is not going to help with.
                      No Android doesn't have it, nor does iOS, Ubuntu Touch, jolla or anyone else.
                      However everyone got a browser.
                      No I don't want completely different UIs, I want one UI that scales to whatever screensize
                      it requires, that support both mouse, keyboard and touch. Doing that using modern
                      web technology isn't hard and doesn't require much time if done properly from start.

                      Comment

                      Working...
                      X