comparison src/share/vm/code/icBuffer.hpp @ 7062:8c5333c80cfd

increased CompileThreshold to increase reliability of profiling information increased InitialCodeCacheSize to fit the bootstrapping added flag -XX:GraalClassPath to allow providing a .jar or .zip file that contains all Graal classes added support for the flag -XX:TraceCompilationPolicy to the Graal-specific compilation policy
author Christian Haeubl <haeubl@ssw.jku.at>
date Thu, 15 Nov 2012 11:40:50 +0100
parents f95d63e2154a
children 7d815d842ee0
comparison
equal deleted inserted replaced
6717:5bbe9618118e 7062:8c5333c80cfd
71 // stub info 71 // stub info
72 address destination() const; // destination of jump instruction 72 address destination() const; // destination of jump instruction
73 oop cached_oop() const; // cached_oop for stub 73 oop cached_oop() const; // cached_oop for stub
74 74
75 // Debugging 75 // Debugging
76 void verify() PRODUCT_RETURN; 76 void verify() PRODUCT_RETURN;
77 void print() PRODUCT_RETURN; 77 void print_on(outputStream* st) PRODUCT_RETURN;
78 78
79 // Creation 79 // Creation
80 friend ICStub* ICStub_from_destination_address(address destination_address); 80 friend ICStub* ICStub_from_destination_address(address destination_address);
81 }; 81 };
82 82