Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 3 of 3

Thread: VM Instruction Pipelining

  1. #1
    Member
    Join Date
    Feb 2013
    Posts
    78
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default VM Instruction Pipelining

    I apologize if this is not a great place to post this.

    So, I am doing a bit of learning about Virtual Machines. I am wondering about Instruction Pipelining in the context of a Virtual Machine.

    Instruction pipeline - Wikipedia, the free encyclopedia

    My questions:
    1. how does this apply to an interpreted VM?
    2. examples of the above? (short, pseudo code)
    3. how does this apply in the context of a JIT?


  2. #2
    Member jdv's Avatar
    Join Date
    Jul 2014
    Location
    This Land
    Posts
    73
    Thanks
    0
    Thanked 5 Times in 5 Posts

    Default Re: VM Instruction Pipelining

    Some /loose/ comparisons between hardware pipelining and VM performance tweaking can be made.

    AFAIK, basic pipelining (i.e., having a series of executing, decoded, and fetched instructions, possibly driven off heuristics) is not in any shipping "regular" JVM. But there are articles describing such work.

    I think Springer has some published articles regarding pipelining experiments.

  3. #3
    Junior Member
    Join Date
    Oct 2014
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: VM Instruction Pipelining

    o, I am doing a bit of learning about Virtual Machines. I am wondering about Instruction Pipelining in the context of
    aliraza8

Similar Threads

  1. Replies: 2
    Last Post: September 30th, 2014, 03:09 PM
  2. Need a "cls/clear" instruction
    By CatBrownie in forum What's Wrong With My Code?
    Replies: 2
    Last Post: June 20th, 2013, 09:37 PM