- Loading...
Excerpt |
---|
How will my new code best fit in with the Hotspot code base? Here are some guidelines. |
...
ResourceMark
for an example.+Verbose
is used to provide additional output for another flag, but does not enable output by itself.&&
, ||
, if
, while
. Instead, compare explicitly != 0
or != NULL
, etc. (See #8 above.)globalDefinitions.hpp
when performing bitwise operations on integers. Do not code directly as C operators, unless they are extremely simple. (Examples: round_to
, is_power_of_2
, exact_log2
.)Anchor | ||||
---|---|---|---|---|
|
...