comparison src/share/vm/ci/ciField.hpp @ 14314:2c95095271e9

Merge
author ehelin
date Thu, 30 Jan 2014 14:01:45 +0100
parents 63a4eb8bcd23
children d8041d695d19
comparison
equal deleted inserted replaced
14302:1fb56cbac3a1 14314:2c95095271e9
128 // 128 //
129 // Clarification: A field is considered constant if: 129 // Clarification: A field is considered constant if:
130 // 1. The field is both static and final 130 // 1. The field is both static and final
131 // 2. The canonical holder of the field has undergone 131 // 2. The canonical holder of the field has undergone
132 // static initialization. 132 // static initialization.
133 // 3. If the field is an object or array, then the oop 133 // 3. The field is not one of the special static/final
134 // in question is allocated in perm space.
135 // 4. The field is not one of the special static/final
136 // non-constant fields. These are java.lang.System.in 134 // non-constant fields. These are java.lang.System.in
137 // and java.lang.System.out. Abomination. 135 // and java.lang.System.out. Abomination.
138 // 136 //
139 // A field is also considered constant if it is marked @Stable 137 // A field is also considered constant if it is marked @Stable
140 // and is non-null (or non-zero, if a primitive). 138 // and is non-null (or non-zero, if a primitive).