< prev index next >

src/hotspot/os_cpu/bsd_zero/os_bsd_zero.cpp

Print this page
rev 56464 : 8231707: Improve Mutex inlining
Contributed-by: robbin.ehn@oracle.com, claes.redestad@oracle.com


  31 // no precompiled headers
  32 #include "jvm.h"
  33 #include "assembler_zero.inline.hpp"
  34 #include "classfile/classLoader.hpp"
  35 #include "classfile/systemDictionary.hpp"
  36 #include "classfile/vmSymbols.hpp"
  37 #include "code/icBuffer.hpp"
  38 #include "code/vtableStubs.hpp"
  39 #include "interpreter/interpreter.hpp"
  40 #include "memory/allocation.inline.hpp"
  41 #include "nativeInst_zero.hpp"
  42 #include "os_share_bsd.hpp"
  43 #include "prims/jniFastGetField.hpp"
  44 #include "prims/jvm_misc.hpp"
  45 #include "runtime/arguments.hpp"
  46 #include "runtime/extendedPC.hpp"
  47 #include "runtime/frame.inline.hpp"
  48 #include "runtime/interfaceSupport.inline.hpp"
  49 #include "runtime/java.hpp"
  50 #include "runtime/javaCalls.hpp"
  51 #include "runtime/mutexLocker.hpp"
  52 #include "runtime/osThread.hpp"
  53 #include "runtime/sharedRuntime.hpp"
  54 #include "runtime/stubRoutines.hpp"
  55 #include "runtime/thread.inline.hpp"
  56 #include "runtime/timer.hpp"
  57 #include "utilities/events.hpp"
  58 #include "utilities/vmError.hpp"
  59 
  60 // See stubGenerator_zero.cpp
  61 #include <setjmp.h>
  62 extern sigjmp_buf* get_jmp_buf_for_continuation();
  63 
  64 address os::current_stack_pointer() {
  65   address dummy = (address) &dummy;
  66   return dummy;
  67 }
  68 
  69 frame os::get_sender_for_C_frame(frame* fr) {
  70   ShouldNotCallThis();
  71   return frame();
  72 }
  73 
  74 frame os::current_frame() {
  75   // The only thing that calls this is the stack printing code in
  76   // VMError::report:
  77   //   - Step 110 (printing stack bounds) uses the sp in the frame




  31 // no precompiled headers
  32 #include "jvm.h"
  33 #include "assembler_zero.inline.hpp"
  34 #include "classfile/classLoader.hpp"
  35 #include "classfile/systemDictionary.hpp"
  36 #include "classfile/vmSymbols.hpp"
  37 #include "code/icBuffer.hpp"
  38 #include "code/vtableStubs.hpp"
  39 #include "interpreter/interpreter.hpp"
  40 #include "memory/allocation.inline.hpp"
  41 #include "nativeInst_zero.hpp"
  42 #include "os_share_bsd.hpp"
  43 #include "prims/jniFastGetField.hpp"
  44 #include "prims/jvm_misc.hpp"
  45 #include "runtime/arguments.hpp"
  46 #include "runtime/extendedPC.hpp"
  47 #include "runtime/frame.inline.hpp"
  48 #include "runtime/interfaceSupport.inline.hpp"
  49 #include "runtime/java.hpp"
  50 #include "runtime/javaCalls.hpp"
  51 #include "runtime/mutexLocker.inline.hpp"
  52 #include "runtime/osThread.hpp"
  53 #include "runtime/sharedRuntime.hpp"
  54 #include "runtime/stubRoutines.hpp"
  55 #include "runtime/thread.inline.hpp"
  56 #include "runtime/timer.hpp"
  57 #include "utilities/events.inline.hpp"
  58 #include "utilities/vmError.hpp"
  59 
  60 // See stubGenerator_zero.cpp
  61 #include <setjmp.h>
  62 extern sigjmp_buf* get_jmp_buf_for_continuation();
  63 
  64 address os::current_stack_pointer() {
  65   address dummy = (address) &dummy;
  66   return dummy;
  67 }
  68 
  69 frame os::get_sender_for_C_frame(frame* fr) {
  70   ShouldNotCallThis();
  71   return frame();
  72 }
  73 
  74 frame os::current_frame() {
  75   // The only thing that calls this is the stack printing code in
  76   // VMError::report:
  77   //   - Step 110 (printing stack bounds) uses the sp in the frame


< prev index next >