Searched refs:def (Results 1 - 25 of 129) sorted by relevance

123456

/openjdk7/hotspot/make/windows/
H A Dbuild_vm_def.sh25 # This shell script builds a vm.def file for the current VM variant.
26 # The .def file exports vtbl symbols which allow the Serviceability
27 # Agent to run on Windows. See make/windows/projectfiles/*/vm.def
45 echo "EXPORTS" > vm1.def
64 $DUMPBIN /symbols *.obj | "$GREP" "??_7.*@@6B@" | "$GREP" -v "type_info" | "$AWK" '{print $7}' | "$SORT" | "$UNIQ" > vm2.def
66 # Can't use pipes when calling cl.exe or link.exe from IDE. Using transit file vm3.def
67 $DUMPBIN /OUT:vm3.def /symbols *.obj
68 "$CAT" vm3.def | "$GREP" "??_7.*@@6B@" | "$GREP" -v "type_info" | "$AWK" '{print $7}' | "$SORT" | "$UNIQ" > vm2.def
69 "$RM" -f vm3.def
[all...]
/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) { function in class:Bytecodes
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) { function in class:Bytecodes
295 def(_nop , "nop" , "b" , NULL , T_VOID , 0, false);
296 def(_aconst_null , "aconst_null" , "b" , NULL , T_OBJECT , 1, false);
297 def(_iconst_m1 , "iconst_m1" , "b" , NULL , T_INT , 1, false);
298 def(_iconst_0 , "iconst_0" , "b" , NULL , T_INT , 1, false);
299 def(_iconst_1 , "iconst_1" , "b" , NULL , T_INT , 1, false);
300 def(_iconst_2 , "iconst_2" , "b" , NULL , T_INT , 1, false);
301 def(_iconst_
[all...]
H A DtemplateTable.cpp180 void TemplateTable::def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(), char filler) { function in class:TemplateTable
182 def(code, flags, in, out, (Template::generator)gen, 0);
186 void TemplateTable::def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(int arg), int arg) { function in class:TemplateTable
206 void TemplateTable::def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(Operation op), Operation op) { function in class:TemplateTable
207 def(code, flags, in, out, (Template::generator)gen, (int)op);
211 void TemplateTable::def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(bool arg ), bool arg) { function in class:TemplateTable
212 def(code, flags, in, out, (Template::generator)gen, (int)arg);
216 void TemplateTable::def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(TosState tos), TosState tos) { function in class:TemplateTable
217 def(code, flags, in, out, (Template::generator)gen, (int)tos);
221 void TemplateTable::def(Bytecode function in class:TemplateTable
[all...]
H A DinvocationCounter.cpp120 void InvocationCounter::def(State state, int init, Action action) { function in class:InvocationCounter
135 def(wait_for_nothing, 0, do_nothing);
137 def(wait_for_compile, 0, do_decay);
139 def(wait_for_compile, 0, dummy_invocation_counter_overflow);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java560 def(_nop , "nop" , "b" , null , BasicType.getTVoid() , 0, false);
561 def(_aconst_null , "aconst_null" , "b" , null , BasicType.getTObject() , 1, false);
562 def(_iconst_m1 , "iconst_m1" , "b" , null , BasicType.getTInt() , 1, false);
563 def(_iconst_0 , "iconst_0" , "b" , null , BasicType.getTInt() , 1, false);
564 def(_iconst_1 , "iconst_1" , "b" , null , BasicType.getTInt() , 1, false);
565 def(_iconst_2 , "iconst_2" , "b" , null , BasicType.getTInt() , 1, false);
566 def(_iconst_3 , "iconst_3" , "b" , null , BasicType.getTInt() , 1, false);
567 def(_iconst_4 , "iconst_4" , "b" , null , BasicType.getTInt() , 1, false);
568 def(_iconst_5 , "iconst_5" , "b" , null , BasicType.getTInt() , 1, false);
569 def(_lconst_
821 private static void def(int code, String name, String format, String wide_format, int result_type, int depth, boolean can_trap) { method in class:Bytecodes
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) { method in class:Bytecodes
[all...]
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DDeflaterOutputStream.java46 protected Deflater def; field in class:DeflaterOutputStream
66 * @param def the compressor ("deflater")
79 Deflater def,
83 if (out == null || def == null) {
88 this.def = def;
99 * the 4-argument constructor DeflaterOutputStream(out, def, size, false).
102 * @param def the compressor ("deflater")
106 public DeflaterOutputStream(OutputStream out, Deflater def, int size) { argument
107 this(out, def, siz
78 DeflaterOutputStream(OutputStream out, Deflater def, int size, boolean syncFlush) argument
124 DeflaterOutputStream(OutputStream out, Deflater def, boolean syncFlush) argument
141 DeflaterOutputStream(OutputStream out, Deflater def) argument
[all...]
H A DDeflaterInputStream.java46 protected final Deflater def; field in class:DeflaterInputStream
115 def = defl;
130 def.end();
184 while (len > 0 && !def.finished()) {
188 if (def.needsInput()) {
192 def.finish();
194 def.setInput(buf, 0, n);
199 n = def.deflate(b, off, len);
204 if (cnt == 0 && def.finished()) {
H A DGZIPOutputStream.java157 if (!def.finished()) {
158 def.finish();
159 while (!def.finished()) {
160 int len = def.deflate(buf, 0, buf.length);
161 if (def.finished() && len <= buf.length - TRAILER_SIZE) {
203 writeInt(def.getTotalIn(), buf, offset + 4); // Number of uncompr. bytes
/openjdk7/hotspot/src/share/vm/runtime/
H A DmutexLocker.cpp171 #define def(var, type, pri, vm_block) { \ macro
179 def(tty_lock , Mutex , event, true ); // allow to lock in VM
181 def(CGC_lock , Monitor, special, true ); // coordinate between fore- and background GC
182 def(STS_init_lock , Mutex, leaf, true );
184 def(iCMS_lock , Monitor, special, true ); // CMS incremental mode start/stop notification
187 def(FullGCCount_lock , Monitor, leaf, true ); // in support of ExplicitGCInvokesConcurrent
190 def(CMark_lock , Monitor, nonleaf, true ); // coordinate concurrent mark thread
191 def(CMRegionStack_lock , Mutex, leaf, true );
192 def(SATB_Q_FL_lock , Mutex , special, true );
193 def(SATB_Q_CBL_mo
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DFocusTraversalPolicy.java169 Component def = getDefaultComponent(window);
170 if (def == null && window.isFocusableWindow()) {
171 def = window;
173 return def;
/openjdk7/langtools/test/tools/javac/enum/
H A DDef.java33 package _enum.def;
/openjdk7/langtools/test/tools/javac/unicode/
H A DSupplementaryJavaID1.java42 int def\ud801\udc00 = 4;
48 def\ud801\udc00 != 4 ||
/openjdk7/jdk/src/share/bin/
H A Dsplashscreen_stubs.c44 * if SplashProcAddress fails, def value is returned.
51 #define _INVOKE(name,def,ret) \
54 if (!proc) { return def; } \
57 #define INVOKE(name,def) _INVOKE(name,def,return)
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DSerializedForm.java96 SerializedForm(DocEnv env, ClassSymbol def, ClassDocImpl cd) { argument
115 VarSymbol dsf = getDefinedSerializableFields(def);
126 mapSerialFieldTagImplsToFieldDocImpls(dsfDoc, env, def);
133 computeDefaultSerializableFields(env, def, cd);
139 addMethodIfExist(env, def, READOBJECT);
140 addMethodIfExist(env, def, WRITEOBJECT);
141 addMethodIfExist(env, def, READRESOLVE);
142 addMethodIfExist(env, def, WRITEREPLACE);
143 addMethodIfExist(env, def, READOBJECTNODATA);
152 private VarSymbol getDefinedSerializableFields(ClassSymbol def) { argument
176 computeDefaultSerializableFields(DocEnv env, ClassSymbol def, ClassDocImpl cd) argument
205 addMethodIfExist(DocEnv env, ClassSymbol def, String methodName) argument
229 mapSerialFieldTagImplsToFieldDocImpls(FieldDocImpl spfDoc, DocEnv env, ClassSymbol def) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/relaxng/
H A DDefineFinder.java46 for( DDefine def : p ) {
47 defs.add(def);
48 def.getPattern().accept(this);
/openjdk7/jdk/test/java/lang/instrument/appendToClassLoaderSearch/
H A DDynamicTest.java63 byte[] def = new byte[len];
68 int n = fis.read(def, nread, len-nread);
74 ClassDefinition classDefs = new ClassDefinition(Application.class, def);
/openjdk7/jdk/test/java/util/zip/
H A DStreamConstructor.java36 Deflater def = new Deflater();
49 defOS = new DeflaterOutputStream(null, def);
55 defOS = new DeflaterOutputStream(bos, def, -1);
H A DConstructDeflaterInput.java47 MyDeflater def = new MyDeflater();
68 dis = new DeflaterInputStream(bais, def, 0);
76 dis = new DeflaterInputStream(bais, def);
125 check(!def.getEnded());
136 check(!def.getEnded());
/openjdk7/hotspot/src/share/vm/opto/
H A Dreg_split.cpp54 static bool contains_no_live_range_input(const Node* def) { argument
55 for (uint i = 1; i < def->req(); ++i) {
56 if (def->in(i) != NULL && def->in_RegMask(i).is_NotEmpty()) {
67 Node *PhaseChaitin::get_spillcopy_wide( Node *def, Node *use, uint uidx ) { argument
71 int ireg = def->ideal_reg();
80 const RegMask *i_mask = &def->out_RegMask();
105 return new (C) MachSpillCopyNode( def, *w_i_mask, *w_o_mask );
152 uint PhaseChaitin::split_DEF( Node *def, Block *b, int loc, uint maxlrg, Node **Reachblock, Node **debug_defs, GrowableArray<uint> splits, int slidx ) { argument
163 if( be->is_MachNullCheck() && be->in(1) == def
192 split_USE( Node *def, Block *b, Node *use, uint useidx, uint maxlrg, bool def_down, bool cisc_sp, GrowableArray<uint> splits, int slidx ) argument
294 clone_node(Node* def, Block *b, Compile* C) argument
320 split_Rematerialize( Node *def, Block *b, uint insidx, uint &maxlrg, GrowableArray<uint> splits, int slidx, uint *lrg2reach, Node **Reachblock, bool walkThru ) argument
885 Node *def = Reachblock[slidx]; local
1298 Node *def = Reaches[pidx][slidx]; local
[all...]
H A Dpostaloc.cpp43 bool PhaseChaitin::may_be_copy_of_callee( Node *def ) const {
58 if( def->is_Proj() && def->in(0)->is_Start() &&
59 _matcher.is_save_on_entry(lrgs(n2lidx(def)).reg()) )
61 if( def->is_Copy() ) // Copies carry value through
62 def = def->in(def->is_Copy());
63 else if( def->is_Phi() ) // Phis can merge it from any direction
64 def
158 use_prior_register( Node *n, uint idx, Node *def, Block *current_block, Node_List &value, Node_List &regnd ) argument
559 Node *def = n->in(k); // n->in(k) is a USE; def is the DEF for this USE local
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DInstruction.java485 def("b", _nop, _dconst_1);
486 def("bx", _bipush);
487 def("bxx", _sipush);
488 def("bk", _ldc); // do not pack
489 def("bkk", _ldc_w, _ldc2_w); // do not pack
490 def("blwbll", _iload, _aload);
491 def("b", _iload_0, _saload);
492 def("blwbll", _istore, _astore);
493 def("b", _istore_0, _lxor);
494 def("blxwbllx
600 private static void def(String fmt, int bc) { method in class:Instruction
603 private static void def(String fmt, int from_bc, int to_bc) { method in class:Instruction
[all...]
/openjdk7/jdk/test/javax/swing/MultiUIDefaults/4331767/
H A Dbug4331767.java57 public BrokenUIDefaults(UIDefaults def) { argument
58 defaults = def;
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DTryStatement.java92 ClassDefinition def = env.getClassDefinition(type);
101 if (def.subClassOf(env, c)) {
124 ClassDefinition def = env.getClassDefinition(type);
127 if (def.subClassOf(env, ignore1) || def.superClassOf(env, ignore1) ||
128 def.subClassOf(env, ignore2) || def.superClassOf(env, ignore2)) {
136 if (def.superClassOf(env, c) || def.subClassOf(env, c)) {
142 && def
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DUnionGen.java314 int def = 0;
316 while (def != 0xFFFF && labels.contains (string))
317 if (++def / 0x10 == 0)
318 string = "'\\u000" + def + "'";
319 else if (def / 0x100 == 0)
320 string = "\\u00" + def + "'";
321 else if (def / 0x1000 == 0)
322 string = "\\u0" + def + "'";
324 string = "\\u" + def + "'";
344 short def
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DAttributeUseImpl.java39 XmlString def, XmlString fixed, boolean req ) {
44 this.defaultValue = def;
38 AttributeUseImpl( SchemaDocumentImpl owner, AnnotationImpl ann, Locator loc, ForeignAttributesImpl fa, Ref.Attribute _decl, XmlString def, XmlString fixed, boolean req ) argument

Completed in 100 milliseconds

123456