comparison src/share/vm/ci/ciField.hpp @ 6151:e778c29768e6

7152811: Issues in client compiler Reviewed-by: kvn, jrose
author never
date Wed, 04 Apr 2012 20:44:38 -0700
parents 7b5c767f229c
children 957c266d8bc5 edb5ab0f3fe5
comparison
equal deleted inserted replaced
6150:1e76463170b3 6151:e778c29768e6
1 /* 1 /*
2 * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1999, 2012, 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.
47 ciSymbol* _name; 47 ciSymbol* _name;
48 ciSymbol* _signature; 48 ciSymbol* _signature;
49 ciType* _type; 49 ciType* _type;
50 int _offset; 50 int _offset;
51 bool _is_constant; 51 bool _is_constant;
52 ciInstanceKlass* _known_to_link_with; 52 ciInstanceKlass* _known_to_link_with_put;
53 ciInstanceKlass* _known_to_link_with_get;
53 ciConstant _constant_value; 54 ciConstant _constant_value;
54 55
55 // Used for will_link 56 // Used for will_link
56 int _cp_index; 57 int _cp_index;
57 58