hotspot/src/share/vm/opto/callGenerator.cpp
changeset 25930 eae8b7490d2c
parent 25494 c18718ecf276
child 26945 981df0f8be4e
equal deleted inserted replaced
25929:4fd732076fe1 25930:eae8b7490d2c
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
   355     map->init_req(i1, call->in(i1));
   355     map->init_req(i1, call->in(i1));
   356   }
   356   }
   357 
   357 
   358   // Make sure the state is a MergeMem for parsing.
   358   // Make sure the state is a MergeMem for parsing.
   359   if (!map->in(TypeFunc::Memory)->is_MergeMem()) {
   359   if (!map->in(TypeFunc::Memory)->is_MergeMem()) {
   360     Node* mem = MergeMemNode::make(C, map->in(TypeFunc::Memory));
   360     Node* mem = MergeMemNode::make(map->in(TypeFunc::Memory));
   361     C->initial_gvn()->set_type_bottom(mem);
   361     C->initial_gvn()->set_type_bottom(mem);
   362     map->set_req(TypeFunc::Memory, mem);
   362     map->set_req(TypeFunc::Memory, mem);
   363   }
   363   }
   364 
   364 
   365   uint nargs = method()->arg_size();
   365   uint nargs = method()->arg_size();