Searched defs:local (Results 76 - 87 of 87) sorted by relevance

1234

/openjdk7/hotspot/src/share/vm/opto/
H A Dmachnode.hpp674 Node *local(const JVMState* jvms, uint idx) const { function in class:MachSafePointNode
H A Doutput.cpp356 // Size in bytes of all relocation entries, including those in local stubs.
579 // Java local or expression stack to constant, register or stack-slot. For
611 void Compile::FillLocArray( int idx, MachSafePointNode* sfpt, Node *local, argument
614 assert( local, "use _top instead of null" );
620 // Assert if the local is not top. In product mode let the new node
622 assert(local == top(), "LocArray collision");
623 if (local == top()) {
628 const Type *t = local->bottom_type();
631 if (local->is_SafePointScalarObject()) {
632 SafePointScalarObjectNode* spobj = local
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DnDDT.cpp603 jobject local = JNU_NewStringPlatform( local
606 jstring fileName = (jstring)env->NewGlobalRef(local);
607 env->DeleteLocalRef(local);
756 // We want to deal with local ref.
1121 BOOL local = FALSE; local
1145 local = TRUE;
1153 return local;
1395 jbyte* local = env->GetByteArrayElements(buf, &isCopy); local
1398 switch (res = m_istream->Read((void *)(local + off), (ULONG)len, &actual)) {
1403 env->ReleaseByteArrayElements(buf, local, !eo
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXTextAreaPeer.java1405 private static Point toLocalSpace( Component local, Point inParentSpace ) argument
1408 Point l = local.getLocation();
1440 Point local = toLocalSpace( bar, point );
1445 if ( ! setPointerIfPointOverButton( ui.getIncreaseButton(), local ) ) {
1446 setPointerIfPointOverButton( ui.getDecreaseButton(), local );
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java988 * The local variable count used by parsing tree. Used by matchers to
4263 GroupCurly(Node node, int cmin, int cmax, int type, int local, argument
4269 this.localIndex = local;
4654 int countIndex; // local count index in matcher locals
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.hpp227 Cell local(int lnum) const { function in class:ciTypeFlow::StateVector
240 ciType* local_type_at(int i) const { return type_at(local(i)); }
380 // Invalidate the previous local if it contains first half of
384 (is_double(type_at(local(prev_index))) ||
385 is_long(type_at(local(prev_index))))) {
386 set_type_at(local(prev_index), bottom_type());
391 ciType* type = type_at(local(index));
400 set_type_at(local(index), type);
405 ciType* type = type_at(local(index));
406 ciType* type2 = type_at(local(inde
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.cpp70 void store_one(BlockBegin* current, int local);
71 void store_two(BlockBegin* current, int local);
173 inline void BlockListBuilder::store_one(BlockBegin* current, int local) { argument
174 current->stores_to_locals().set_bit(local);
176 inline void BlockListBuilder::store_two(BlockBegin* current, int local) { argument
177 store_one(current, local);
178 store_one(current, local + 1);
243 // track stores to local variables for selective creation of phi functions
910 assert(x != NULL && !x->type()->is_illegal(), "access of illegal local variable");
931 // they are using this local
2933 Value local; local
[all...]
H A Dc1_LIRGenerator.cpp349 // clear our any registers for other local constants
448 // NULL out this local so that linear scan can assume that all non-NULL values are live.
1320 //------------------------local access--------------------------------------
1329 // allocate a virtual register for this local or phi
1371 // Block local constant handling. This code is useful for keeping
2596 // Assign new location to Local instruction for this local
2597 Local* local = x->state()->local_at(java_index)->as_Local(); local
2598 assert(local != NULL, "Locals for incoming arguments must have been created");
2601 assert(as_ValueType(t)->tag() == local->type()->tag(), "check");
2603 local
[all...]
H A Dc1_LinearScan.cpp546 // ********** Phase 2: compute local live sets separately for each block
554 assert(!value->type()->is_illegal(), "if this local is used by the interpreter it shouldn't be of indeterminate type");
739 // propagate local calculated information into LinearScan object
2764 // The convention the interpreter uses is that the second local
2850 // describe local variable values
2859 Value local = cur_state->local_at(pos); local
2860 pos += append_scope_value(op_id, local, locals);
6423 // add the method-local numbers to the total sum
6638 local_statistic.print("current local statistic");
/openjdk7/hotspot/src/share/vm/adlc/
H A Doutput_c.cpp1144 // Build mapping from num_edges to local variables
1360 // find the name of the OperandForm from the local name
1531 // Build mapping from num_edges to local variables
1772 // Build mapping from num_edges to local variables
1962 // Check if instruction's actual parameter is a local name in the instruction
1963 const Form *local = _inst._localNames[inst_rep_var]; local
1964 OpClassForm *opc = (local != NULL) ? local->is_opclass() : NULL;
1966 // assert( opc, "replacement variable was not found in local names");
1971 // This is a local i
2314 const Form *local = _inst._localNames[_operand_name]; local
2425 const Form *local = _inst._localNames[inst_rep_var]; local
[all...]
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c510 * and return a local reference to it.
528 jclass local, global; local
530 local = load_class_local(context, classname);
531 global = (*env)->NewGlobalRef(env, local);
537 (*env)->DeleteLocalRef(env, local);
542 * Return a unique ID given a local class reference. The loadable
1293 /* The optimizer make cause this to happen on local code */
1474 CCerror(context, "Illegal local variable number");
1483 CCerror(context, "Illegal local variable number");
2105 * JVM_GetCPFieldModifiers retrieves only local field
[all...]
/openjdk7/langtools/test/tools/javac/T5090006/
H A Dbroken.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/framework/ junit/framework/Assert.class Assert. ...

Completed in 126 milliseconds

1234