comparison src/share/vm/opto/stringopts.cpp @ 1748:3e8fbc61cee8

6978355: renaming for 6961697 Summary: This is the renaming part of 6961697 to keep the actual changes small for review. Reviewed-by: kvn, never
author twisti
date Wed, 25 Aug 2010 05:27:54 -0700
parents c18cbe5936b8
children c40600e85311
comparison
equal deleted inserted replaced
1747:53dbe853fb3a 1748:3e8fbc61cee8
155 void convert_uncommon_traps(GraphKit& kit, const JVMState* jvms) { 155 void convert_uncommon_traps(GraphKit& kit, const JVMState* jvms) {
156 for (uint u = 0; u < _uncommon_traps.size(); u++) { 156 for (uint u = 0; u < _uncommon_traps.size(); u++) {
157 Node* uct = _uncommon_traps.at(u); 157 Node* uct = _uncommon_traps.at(u);
158 158
159 // Build a new call using the jvms state of the allocate 159 // Build a new call using the jvms state of the allocate
160 address call_addr = SharedRuntime::uncommon_trap_blob()->instructions_begin(); 160 address call_addr = SharedRuntime::uncommon_trap_blob()->entry_point();
161 const TypeFunc* call_type = OptoRuntime::uncommon_trap_Type(); 161 const TypeFunc* call_type = OptoRuntime::uncommon_trap_Type();
162 int size = call_type->domain()->cnt(); 162 int size = call_type->domain()->cnt();
163 const TypePtr* no_memory_effects = NULL; 163 const TypePtr* no_memory_effects = NULL;
164 Compile* C = _stringopts->C; 164 Compile* C = _stringopts->C;
165 CallStaticJavaNode* call = new (C, size) CallStaticJavaNode(call_type, call_addr, "uncommon_trap", 165 CallStaticJavaNode* call = new (C, size) CallStaticJavaNode(call_type, call_addr, "uncommon_trap",