src/share/vm/runtime/javaCalls.cpp

changeset 5784
190899198332
parent 4299
f34d701e952e
child 6876
710a3c8b516e
child 7089
6e0cb14ce59b
equal deleted inserted replaced
5783:c1fbf21c7397 5784:190899198332
1 /* 1 /*
2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2013, 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.
428 intptr_t* JavaCallArguments::parameters() { 428 intptr_t* JavaCallArguments::parameters() {
429 // First convert all handles to oops 429 // First convert all handles to oops
430 for(int i = 0; i < _size; i++) { 430 for(int i = 0; i < _size; i++) {
431 if (_is_oop[i]) { 431 if (_is_oop[i]) {
432 // Handle conversion 432 // Handle conversion
433 _value[i] = (intptr_t)Handle::raw_resolve((oop *)_value[i]); 433 _value[i] = cast_from_oop<intptr_t>(Handle::raw_resolve((oop *)_value[i]));
434 } 434 }
435 } 435 }
436 // Return argument vector 436 // Return argument vector
437 return _value; 437 return _value;
438 } 438 }

mercurial