Searched defs:number_of_codes (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeHistogram.hpp59 NOT_PRODUCT(static int _counters[Bytecodes::number_of_codes];) // a counter for each bytecode
81 number_of_codes = 1 << log2_number_of_codes, // must be no less than Bytecodes::number_of_codes enumerator in enum:BytecodePairHistogram::Constants
82 number_of_pairs = number_of_codes * number_of_codes
H A Dbytecodes.hpp308 number_of_codes enumerator in enum:Bytecodes::Code
342 static const char* _name [number_of_codes];
343 static BasicType _result_type [number_of_codes];
344 static s_char _depth [number_of_codes];
345 static u_char _lengths [number_of_codes];
346 static Code _java_code [number_of_codes];
393 static bool is_defined (int code) { return 0 <= code && code < number_of_codes && flags(code, false) != 0; }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java277 public static final int number_of_codes = 233; field in class:Bytecodes
368 public static boolean isDefined (int code) { return 0 <= code && code < number_of_codes && flags(code, false) != 0; }
385 public static boolean isFastCode (int code) { return number_of_java_codes <= code && code < number_of_codes; }
495 _name = new String [number_of_codes];
496 _format = new String [number_of_codes];
497 _wide_format = new String [number_of_codes];
498 _result_type = new int [number_of_codes]; // See BasicType.java
499 _depth = new byte [number_of_codes];
500 _lengths = new byte [number_of_codes];
501 _java_code = new int [number_of_codes];
[all...]

Completed in 40 milliseconds