< prev index next >

src/hotspot/cpu/ppc/stubGenerator_ppc.cpp

Print this page
@@ -4938,10 +4938,14 @@
  
      return start;
    }
  
    // Initialization
+   void generate_preuniverse_stubs() {
+     // preuniverse stubs are not needed for ppc
+   }
+ 
    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 platforms - however the

@@ -5067,10 +5071,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 >