comparison src/share/vm/ci/ciField.hpp @ 12264:b2e698d2276c

8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation Summary: Enhance method resolution and resulting data structures, plus some refactoring. Reviewed-by: twisti, acorn, jrose
author drchase
date Fri, 13 Sep 2013 22:38:02 -0400
parents edb5ab0f3fe5
children cefad50507d8 63a4eb8bcd23
comparison
equal deleted inserted replaced
12261:2c98370f2611 12264:b2e698d2276c
1 /* 1 /*
2 * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1999, 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.
50 int _offset; 50 int _offset;
51 bool _is_constant; 51 bool _is_constant;
52 ciInstanceKlass* _known_to_link_with_put; 52 ciInstanceKlass* _known_to_link_with_put;
53 ciInstanceKlass* _known_to_link_with_get; 53 ciInstanceKlass* _known_to_link_with_get;
54 ciConstant _constant_value; 54 ciConstant _constant_value;
55
56 // Used for will_link
57 int _cp_index;
58 55
59 ciType* compute_type(); 56 ciType* compute_type();
60 ciType* compute_type_impl(); 57 ciType* compute_type_impl();
61 58
62 ciField(ciInstanceKlass* klass, int index); 59 ciField(ciInstanceKlass* klass, int index);