Searched defs:wide_format (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecodes.cpp163 void Bytecodes::def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap) { argument
164 def(code, name, format, wide_format, result_type, depth, can_trap, code);
168 void Bytecodes::def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap, Code java_code) { argument
169 assert(wide_format == NULL || format != NULL, "short form must exist if there's a wide form");
171 int wlen = (wide_format != NULL ? (int) strlen(wide_format) : 0);
181 _flags[(u1)code+1*(1<<BitsPerByte)] = compute_flags(wide_format, bc_flags);
183 assert(wide_is_defined(code) == (wide_format != NULL), "");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java821 private static void def(int code, String name, String format, String wide_format, int result_type, int depth, boolean can_trap) { argument
822 def(code, name, format, wide_format, result_type, depth, can_trap, code);
825 private static void def(int code, String name, String format, String wide_format, int result_type, int depth, boolean can_trap, int java_code) { argument
827 Assert.that(wide_format == null || format != null, "short form must exist if there's a wide form");
830 int wlen = (wide_format != null ? wide_format.length() : 0);
837 _wide_format [code] = wide_format;
842 _flags[code+1*256] = compute_flags(wide_format, bc_flags);

Completed in 37 milliseconds