src/cpu/x86/vm/cppInterpreter_x86.cpp

changeset 2552
638119ce7cfd
parent 2314
f95d63e2154a
child 2781
e1162778c1c8
     1.1 --- a/src/cpu/x86/vm/cppInterpreter_x86.cpp	Mon Jan 31 17:48:21 2011 -0800
     1.2 +++ b/src/cpu/x86/vm/cppInterpreter_x86.cpp	Tue Feb 01 03:38:44 2011 -0800
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -1899,8 +1899,6 @@
    1.11    Label do_double;
    1.12    Label done_conv;
    1.13  
    1.14 -  address compiled_entry = __ pc();
    1.15 -
    1.16    // The FPU stack is clean if UseSSE >= 2 but must be cleaned in other cases
    1.17    if (UseSSE < 2) {
    1.18      __ lea(state, Address(rbp,  -(int)sizeof(BytecodeInterpreter)));
    1.19 @@ -1934,15 +1932,7 @@
    1.20      __ jmp(done_conv);
    1.21    }
    1.22  
    1.23 -#if 0
    1.24 -  // emit a sentinel we can test for when converting an interpreter
    1.25 -  // entry point to a compiled entry point.
    1.26 -  __ a_long(Interpreter::return_sentinel);
    1.27 -  __ a_long((int)compiled_entry);
    1.28 -#endif
    1.29 -
    1.30    // Return point to interpreter from compiled/native method
    1.31 -
    1.32    InternalAddress return_from_native_method(__ pc());
    1.33  
    1.34    __ bind(done_conv);

mercurial