comparison src/share/vm/ci/ciReplay.cpp @ 7643:3ac7d10a6572

Merge with hsx25/hotspot.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 31 Jan 2013 15:42:25 +0100
parents 203f64878aab
children 8391fdd36e1f
comparison
equal deleted inserted replaced
7573:17b6a63fe7c2 7643:3ac7d10a6572
1 /* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. 1 /* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3 * 3 *
4 * This code is free software; you can redistribute it and/or modify it 4 * This code is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License version 2 only, as 5 * under the terms of the GNU General Public License version 2 only, as
6 * published by the Free Software Foundation. 6 * published by the Free Software Foundation.
643 } else if (strcmp(field_signature, "Z") == 0) { 643 } else if (strcmp(field_signature, "Z") == 0) {
644 int value = atol(string_value); 644 int value = atol(string_value);
645 java_mirror->bool_field_put(fd.offset(), value); 645 java_mirror->bool_field_put(fd.offset(), value);
646 } else if (strcmp(field_signature, "J") == 0) { 646 } else if (strcmp(field_signature, "J") == 0) {
647 jlong value; 647 jlong value;
648 if (sscanf(string_value, INT64_FORMAT, &value) != 1) { 648 if (sscanf(string_value, JLONG_FORMAT, &value) != 1) {
649 fprintf(stderr, "Error parsing long: %s\n", string_value); 649 fprintf(stderr, "Error parsing long: %s\n", string_value);
650 return; 650 return;
651 } 651 }
652 java_mirror->long_field_put(fd.offset(), value); 652 java_mirror->long_field_put(fd.offset(), value);
653 } else if (strcmp(field_signature, "F") == 0) { 653 } else if (strcmp(field_signature, "F") == 0) {