comparison src/share/vm/ci/ciField.hpp @ 14309:63a4eb8bcd23

8025856: Fix typos in the GC code Summary: Fix about 440 typos in comments in the VM code Reviewed-by: mgerdin, tschatzl, coleenp, kmo, jcoomes
author jwilhelm
date Thu, 23 Jan 2014 14:47:23 +0100
parents b2e698d2276c
children d8041d695d19
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
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).