< prev index next >

src/hotspot/cpu/s390/stubGenerator_s390.cpp

Print this page
@@ -3281,10 +3281,14 @@
      __ z_br(Z_R14);
  
      return start;
    }
  
+   void generate_preuniverse_stubs() {
+     // preuniverse stubs are not needed for s390
+   }
+ 
    void generate_initial_stubs() {
      // Generates all stubs and initializes the entry points.
  
      // Entry points that exist in all platforms.
      // Note: This is code that could be shared among different

@@ -3416,10 +3420,13 @@
    }
  
   public:
    StubGenerator(CodeBuffer* code, StubGenBlobId blob_id) : StubCodeGenerator(code, blob_id) {
      switch(blob_id) {
+     case preuniverse_id:
+       generate_preuniverse_stubs();
+       break;
      case initial_id:
        generate_initial_stubs();
        break;
       case continuation_id:
        generate_continuation_stubs();
< prev index next >