Searched refs:code (Results 176 - 200 of 715) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/interpreter/
H A Dinterpreter.cpp5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
102 tty->print_cr("code size = %6dK bytes", (int)_code->used_space()/1024);
124 AbstractInterpreter::code()->code_start(),
125 AbstractInterpreter::code()->code_end()
131 AbstractInterpreter::code()->code_start(),
132 AbstractInterpreter::code()->code_end());
243 assert(m->size_of_parameters() == 1, "fast code for accessors assumes parameter size = 1");
263 Bytecodes::Code code local
319 Bytecodes::Code code = Bytecodes::java_code_at(method, bcp); local
389 Bytecodes::Code code = Bytecodes::java_code_at(method, bcp); local
400 bytecode_should_reexecute(Bytecodes::Code code) argument
[all...]
H A DbytecodeTracer.cpp5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
88 // Note 1: This code will not work as expected with true MT/MP.
100 Bytecodes::Code code; local
103 code = Bytecodes::code_at(method(), bcp+1);
105 code = Bytecodes::code_at(method(), bcp);
107 _code = code;
112 BytecodeCounter::counter_value(), bci, tos, tos2, Bytecodes::name(code));
115 BytecodeCounter::counter_value(), bci, Bytecodes::name(code));
130 Bytecodes::Code code = Bytecodes::code_at(method(), bcp); local
222 Bytecodes::Code code = raw_code(); local
376 Bytecodes::Code code = Bytecodes::java_code(raw_code()); local
[all...]
H A Dbytecodes.cpp5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
69 bool Bytecodes::check_must_rewrite(Bytecodes::Code code) { argument
70 assert(can_rewrite(code), "post-check only");
73 switch (code) {
76 // the _aload_0 code might delay its rewrite until
102 int Bytecodes::special_length_at(Bytecodes::Code code, address bcp, address end) { argument
103 switch (code) {
106 return -1; // don't read past end of code buffe
153 Code code = code_or_bp_at(bcp); local
163 def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap) argument
168 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
553 Code code = cast(i); local
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfo.hpp5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
28 #include "code/compressedStream.hpp"
29 #include "code/location.hpp"
30 #include "code/nmethod.hpp"
31 #include "code/oopRecorder.hpp"
252 const nmethod* code() const { return _code; } function in class:DebugInfoReadStream
255 DebugInfoReadStream(const nmethod* code, int offset, GrowableArray<ScopeValue*>* obj_pool = NULL) : argument
256 CompressedReadStream(code
[all...]
/openjdk7/jdk/src/share/classes/java/awt/datatransfer/
H A DMimeType.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
54 * uninitialized, immutable <code>MimeType</code> object.
60 * Builds a <code>MimeType</code> from a <code>String</code>
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRAssembler.hpp5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
77 // code emission patterns and accessors
144 // code patterns
182 void shift_op(LIR_Code code, LIR_Opr left, LIR_Opr count, LIR_Opr dest, LIR_Opr tmp);
183 void shift_op(LIR_Code code, LIR_Opr left, jint count, LIR_Opr dest);
207 void arith_op(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr dest, CodeEmitInfo* info, bool pop_fpu_stack);
208 void arithmetic_idiv(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr temp, LIR_Opr result, CodeEmitInfo* info);
209 void intrinsic_op(LIR_Code code, LIR_Op
[all...]
H A Dc1_Compilation.cpp5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
34 #include "code/debugInfoRec.hpp"
178 // compute block ordering for code generation
194 if (PrintCFG || PrintCFG2) { tty->print_cr("CFG before code generation"); _hir->code()->print(true); }
195 if (PrintIR || PrintIR2 ) { tty->print_cr("IR before code generation"); _hir->code()->print(false, true); }
227 print_LIR(hir()->code());
272 setup_code_buffer(CodeBuffer* code, int call_stub_estimate) argument
[all...]
H A Dc1_GraphBuilder.hpp5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
41 // inlined methods. Currently in order to generate good code in the
92 // In order to generate profitable code for inlining, we currently
98 // code to be removed and thereby simplify the inliner.
202 Bytecodes::Code code() const { return stream()->cur_bc(); } function in class:VALUE_OBJ_CLASS_SPEC
232 void stack_op(Bytecodes::Code code);
233 void arithmetic_op(ValueType* type, Bytecodes::Code code, ValueStack* state_before = NULL);
235 void shift_op(ValueType* type, Bytecodes::Code code);
394 can_trap(ciMethod* method, Bytecodes::Code code) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DXSLTC.java690 Integer code = (Integer)_attributes.get(name.toString());
691 if (code == null) {
692 code = new Integer(_nextGType++);
693 _attributes.put(name.toString(), code);
704 return code.intValue();
713 Integer code = (Integer)_elements.get(name.toString());
714 if (code == null) {
715 _elements.put(name.toString(), code = new Integer(_nextGType++));
721 return code.intValue();
731 Integer code
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodWriter.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
39 * 1. Redistributions of source code must retain the above copyright
187 * If not zero, indicates that the code of this method must be copied from
188 * the ClassReader associated to this writer in <code>cw.cr</code>. More
190 * <code>cw.cr.b</code>
254 private ByteVector code = new ByteVector(); field in class:MethodWriter
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DClassReader.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
392 Code code = (Code) h;
394 if (code.max_stack >= TOO_BIG ||
395 code.max_locals >= TOO_BIG ||
396 code.getLength() >= TOO_BIG ||
425 m.code = new Code(m);
427 readCode(m.code);
453 readCode(Code code) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DTypeMaker.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
30 import com.sun.tools.javac.code.Symbol;
31 import com.sun.tools.javac.code.Symbol.ClassSymbol;
32 import com.sun.tools.javac.code.Type;
33 import com.sun.tools.javac.code.Type.ClassType;
34 import com.sun.tools.javac.code.Type.TypeVar;
35 import com.sun.tools.javac.code
[all...]
H A DJavadocMemberEnter.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
30 import com.sun.tools.javac.code.Flags;
31 import com.sun.tools.javac.code.Kinds;
32 import com.sun.tools.javac.code.Symbol.*;
/openjdk7/jdk/src/share/native/sun/awt/image/gif/
H A Dgifdecoder.c5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
132 * Start reading the image data. First we get the intial code size
133 * and compute decompressor constant values, based on this code
136 * The GIF spec has it that the code size is the code size used to
137 * compute the above values is the code size given in the file,
138 * but the code siz
169 int code = 0; local
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/logutil/
H A DMC.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
84 * {@link Input} object. The result is written to {@code outDir}.
253 * @param code the minor code for this particular error.
261 int code, String level, String className, int numParams,
264 pw.printMsg("public static final int @ = @ ;", errorName, getBase(groupName, code));
433 * error code
260 writeMethods(String groupName, String exceptionName, String errorName, int code, String level, String className, int numParams, IndentingPrintWriter pw) argument
439 getBase(String groupName, int code) argument
490 getMessageID(String groupName, String exceptionName, int code) argument
505 getStandardMessageID(String exceptionName, int code) argument
519 getSunMessageID(String groupName, String exceptionName, int code) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Dialog.h5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
111 * If the window is an embedded frame, it is activated from Java code.
123 static LRESULT CALLBACK ModalFilterProc(int code,
128 static LRESULT CALLBACK MouseHookProc(int code,
133 static LRESULT CALLBACK MouseHookProc_NonTT(int code,
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DAnnotationValueImpl.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
35 import com.sun.tools.javac.code.Attribute;
36 import com.sun.tools.javac.code.Symbol.*;
37 import com.sun.tools.javac.code.TypeTags;
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/util/
H A DDeclarationsImpl.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
35 import com.sun.tools.javac.code.*;
36 import com.sun.tools.javac.code.Symbol.*;
39 import static com.sun.tools.javac.code.Kinds.*;
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djdhuff.c39 * structure assignment. You'll need to fix this code if you have
162 unsigned int code; local
164 /* Note that huffsize[] and huffcode[] are filled in code-length order,
184 /* Figure C.1: make table of Huffman code length for each symbol */
198 /* We also validate that the counts represent a legal Huffman code tree. */
200 code = 0;
205 huffcode[p++] = code;
206 code++;
208 /* code is now 1 more than the last code use
407 register INT32 code; local
[all...]
/openjdk7/jdk/test/javax/management/loading/
H A DMLetContentTest.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
47 attributes.put("code", code);
80 if (!code.equals(content.getCode())) {
81 throw new RuntimeException("The user specific code is changed.");
135 private static final String code = "my code"; field in class:MLetContentTest
143 private final static String codebase = "my code bas
[all...]
/openjdk7/langtools/test/tools/javac/scope/7017664/
H A DImplementationCacheTest.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
31 import com.sun.tools.javac.code.Symbol;
32 import com.sun.tools.javac.code.Types;
36 import com.sun.tools.javac.code.Symbol.*;
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DAbstractMemberWriter.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
276 HtmlTree code = new HtmlTree(HtmlTag.CODE);
277 addModifier(member, code);
280 code.addContent("class");
282 code.addContent("interface");
284 code.addContent(writer.getSpace());
290 (ExecutableMemberDoc) member, code);
330 addModifier(ProgramElementDoc member, Content code) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/c1/
H A DRuntime1.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
28 import sun.jvm.hotspot.code.*;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DCompressedStream.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
25 package sun.jvm.hotspot.code;
33 like these are only kept persistently in OopMaps, and the code has
H A DScopeValue.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
25 package sun.jvm.hotspot.code;

Completed in 2527 milliseconds

1234567891011>>