comparison src/share/vm/runtime/sharedRuntime.cpp @ 4807:15d394228cfa

7111138: delete the obsolete flag -XX:+UseRicochetFrames Reviewed-by: dholmes, bdelsart, kvn, twisti
author jrose
date Thu, 19 Jan 2012 13:00:11 -0800
parents 2ec638646e86
children aa3d708d67c4
comparison
equal deleted inserted replaced
4806:eaa9557116a2 4807:15d394228cfa
119 119
120 //----------------------------generate_ricochet_blob--------------------------- 120 //----------------------------generate_ricochet_blob---------------------------
121 void SharedRuntime::generate_ricochet_blob() { 121 void SharedRuntime::generate_ricochet_blob() {
122 if (!EnableInvokeDynamic) return; // leave it as a null 122 if (!EnableInvokeDynamic) return; // leave it as a null
123 123
124 #ifndef TARGET_ARCH_NYI_6939861
125 // allocate space for the code 124 // allocate space for the code
126 ResourceMark rm; 125 ResourceMark rm;
127 // setup code generation tools 126 // setup code generation tools
128 CodeBuffer buffer("ricochet_blob", 256 LP64_ONLY(+ 256), 256); // XXX x86 LP64L: 512, 512 127 CodeBuffer buffer("ricochet_blob", 256 LP64_ONLY(+ 256), 256); // XXX x86 LP64L: 512, 512
129 MacroAssembler* masm = new MacroAssembler(&buffer); 128 MacroAssembler* masm = new MacroAssembler(&buffer);
140 assert(false, "bad ricochet blob"); 139 assert(false, "bad ricochet blob");
141 return; 140 return;
142 } 141 }
143 142
144 _ricochet_blob = RicochetBlob::create(&buffer, bounce_offset, exception_offset, frame_size_in_words); 143 _ricochet_blob = RicochetBlob::create(&buffer, bounce_offset, exception_offset, frame_size_in_words);
145 #endif
146 } 144 }
147 145
148 146
149 #include <math.h> 147 #include <math.h>
150 148