| /openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/constExpr/ |
| H A D | BooleanNot.java | 45 protected BooleanNot (Expression operand) argument 47 super ("!", operand); 54 Object tmp = operand ().evaluate (); 74 String[] parameters = {Util.getMessage ("EvaluationException.booleanNot"), operand ().value ().getClass ().getName ()};
|
| H A D | Negative.java | 45 protected Negative (Expression operand) argument 47 super ("-", operand); 54 Number op = (Number)operand ().evaluate (); 68 String[] parameters = {Util.getMessage ("EvaluationException.neg"), operand ().value ().getClass ().getName ()};
|
| H A D | Not.java | 45 protected Not (Expression operand) argument 47 super ("~", operand); 54 Number op = (Number)operand ().evaluate (); 58 String[] parameters = {Util.getMessage ("EvaluationException.not"), operand ().value ().getClass ().getName ()}; 83 String[] parameters = {Util.getMessage ("EvaluationException.not"), operand ().value ().getClass ().getName ()};
|
| H A D | Positive.java | 45 protected Positive (Expression operand) argument 47 super ("+", operand); 54 Number op = (Number)operand ().evaluate (); 68 String[] parameters = {Util.getMessage ("EvaluationException.pos"), operand ().value ().getClass ().getName ()};
|
| H A D | UnaryExpr.java | 54 public void operand (Expression operand) {_operand = operand;} argument 55 public Expression operand () {return _operand;} method in class:UnaryExpr
|
| H A D | DefaultExprFactory.java | 55 public BooleanNot booleanNot (Expression operand) argument 57 return new BooleanNot (operand); 105 public Negative negative (Expression operand) argument 107 return new Negative (operand); 110 public Not not (Expression operand) argument 112 return new Not (operand); 130 public Positive positive (Expression operand) argument 132 return new Positive (operand);
|
| H A D | ExprFactory.java | 47 BooleanNot booleanNot (Expression operand); argument 57 Negative negative (Expression operand); argument 58 Not not (Expression operand); argument 62 Positive positive (Expression operand); argument
|
| /openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/ |
| H A D | X86FPLoadInstruction.java | 33 public X86FPLoadInstruction(String name, Operand operand, int size, int prefixes) { argument 35 this.source = operand;
|
| /openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/ |
| H A D | ConstFold.java | 101 * @param operand The operation's operand type. 104 Type fold1(int opcode, Type operand) { argument 106 Object od = operand.constValue(); 109 return operand; 153 * @param left The type of the operation's left operand. 154 * @param right The type of the operation's right operand.
|
| H A D | Check.java | 2628 * @param operand The right hand operand for the expression 2630 void checkDivZero(DiagnosticPosition pos, Symbol operator, Type operand) { argument 2631 if (operand.constValue() != null 2633 && operand.tag <= LONG 2634 && ((Number) (operand.constValue())).longValue() == 0) {
|
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/ |
| H A D | MethodVisitor.java | 134 * Visits the current state of the local variables and operand stack 139 * values of the local variables and of the operand stack elements <i>just 177 * @param nStack the number of operand stack elements in the visited frame. 178 * @param stack the operand stack types in this frame. This array must not 193 * Visits a zero operand instruction. 213 * Visits an instruction with a single int operand. 217 * @param operand the operand of the instruction to be visited.<br> When 218 * opcode is BIPUSH, operand value should be between Byte.MIN_VALUE 219 * and Byte.MAX_VALUE.<br> When opcode is SIPUSH, operand valu 227 visitIntInsn(int opcode, int operand) argument [all...] |
| H A D | MethodWriter.java | 298 * local variables start at index 3 and are followed by the operand stack 689 public void visitIntInsn(final int opcode, final int operand) { argument 693 currentBlock.frame.execute(opcode, operand, null, null); 706 code.put12(opcode, operand); 708 code.put11(opcode, operand);
|
| /openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/ |
| H A D | ConstantPool.java | 258 private int remapInstructionOperandFromCache(int operand) { argument 259 int cpc_index = operand; 368 /** Lookup for multi-operand (InvokeDynamic) entries. */
|
| /openjdk7/hotspot/src/share/vm/c1/ |
| H A D | c1_LIRGenerator.hpp | 74 NodeList _destinations; // for the operand 80 ResolveNode(LIR_Opr operand) argument 81 : _operand(operand) 87 LIR_Opr operand() const { return _operand; } function in class:ResolveNode 102 // This is shared state to be used by the PhiResolver so the operand 108 NodeList _virtual_operands; // Nodes where the operand is a virtual register 109 NodeList _other_operands; // Nodes where the operand is not a virtual register 119 // class used to move value of phi operand to phi function 207 // Given an immediate value, return an operand usable in logical ops. 212 assert(x->operand() [all...] |
| H A D | c1_Instruction.hpp | 410 LIR_Opr operand() const { return _operand; } function in class:Instruction 457 void set_operand(LIR_Opr operand) { assert(operand != LIR_OprFact::illegalOpr, "operand must exist"); _operand = operand; } argument 575 int _index; // to value on operand stack (index < 0) or to local
|
| H A D | c1_LIRGenerator.cpp | 128 move_to_temp(src->operand()); 134 move_temp_to(dest->operand()); 137 emit_move(src->operand(), dest->operand()); 161 emit_move(node->operand(), node->destination_at(j)->operand()); 172 assert(node == NULL || node->operand() == opr, ""); 205 assert(value()->operand()->is_illegal() || value()->operand()->is_constant(), "operand shoul 1000 LIR_Opr operand = cur_val->operand(); local [all...] |
| /openjdk7/hotspot/src/share/vm/oops/ |
| H A D | constantPoolOop.cpp | 364 int constantPoolOopDesc::remap_instruction_operand_from_cache(int operand) { argument 365 int cpc_index = operand;
|
| /openjdk7/hotspot/src/share/tools/launcher/ |
| H A D | java.c | 258 * price to pay for not processing a jar file operand twice. 903 char *operand; local 985 if (argc <= 0) { /* No operand? Possibly legit with -[full]version */ 986 operand = NULL; 989 *new_argp++ = operand = *argv++; 1004 if (jarflag && operand) { 1005 if ((res = JLI_ParseManifest(operand, &info)) != 0) { 1008 operand, JNI_TRUE); 1011 operand, JNI_TRUE); 1023 splash_jar_name = operand; [all...] |
| /openjdk7/hotspot/src/share/vm/adlc/ |
| H A D | dfa.cpp | 274 // If this is a member of an operand class, update the class cost & rule 281 // If this rule produces an operand which has associated chain rules, 292 // Chain from one result_type to all other members of its operand class 298 if( debug_output ) { fprintf(fp, "// expand operand classes for operand: %s \n", (char *)op->_ident ); } // %%%%% Explanation 299 // Iterate through all operand classes which include this operand 310 // Starting at 'operand', check if we know how to automatically generate other results 311 void ArchDesc::chain_rule(FILE *fp, const char *indent, const char *operand, argument 315 if( operands_chained_from[operand] ! [all...] |
| H A D | formssel.cpp | 53 _cisc_spill_operand = Not_cisc_spillable;// Which operand may cisc-spill 85 _cisc_spill_operand = Not_cisc_spillable;// Which operand may cisc-spill 179 // operand ideal Opcode instead. 183 assert( src_op, "Not operand class of chain rule" ); 610 // Check if instruction has a USE of a memory operand class, but no defs 654 // Check if instruction has a USE of a memory operand class, or a def. 829 // Return the number of leaves below this complex operand 892 // by writing the operand names into the _components list. 916 // uses so their operand numbering must directly follow the real 1034 // because it did not check contents of operand classe 1954 OperandForm *operand = form->is_operand(); local 1974 OperandForm *operand = form->is_operand(); local 3543 cisc_spill_match(FormDict& globals, RegisterForm* registers, MatchNode* mRule2, const char* &operand, const char* ®_type) argument 3627 matchrule_cisc_spill_match(FormDict& globals, RegisterForm* registers, MatchRule* mRule2, const char* &operand, const char* ®_type) argument [all...] |
| H A D | output_c.cpp | 751 fprintf(fp_cpp, " // If this is not an operand, then assume a dependence with 0 latency\n"); 985 fprintf(fp_cpp, " // determine which operand this is in\n"); 1176 assert( left_op_index != NameList::Not_in_list, "Did not find operand in instruction"); 1187 if( right_index != -1 ) { // Match operand 1200 assert( right_op_index != NameList::Not_in_list, "Did not find operand in instruction"); 1223 // Need parameter for index position if not result operand 1321 // assert( op_index != NameList::Not_in_list, "Did not find operand in instruction"); 1347 int opnds_index = 0; // define result operand 1359 assert( inst_op_num != NameList::Not_in_list, "Did not find operand as USE"); 1380 // Define result register and result operand 4215 int operand = inst->cisc_spill_operand(); local [all...] |
| /openjdk7/jdk/src/share/bin/ |
| H A D | java.c | 226 * price to pay for not processing a jar file operand twice. 727 char *operand; local 809 if (argc <= 0) { /* No operand? Possibly legit with -[full]version */ 810 operand = NULL; 813 *new_argp++ = operand = *argv++; 828 if (jarflag && operand) { 829 if ((res = JLI_ParseManifest(operand, &info)) != 0) { 831 JLI_ReportErrorMessage(JAR_ERROR2, operand); 833 JLI_ReportErrorMessage(JAR_ERROR3, operand); 845 splash_jar_name = operand; [all...] |
| /openjdk7/hotspot/src/cpu/x86/vm/ |
| H A D | c1_LIRAssembler_x86.cpp | 50 jlong *operand = (jlong*)(((intptr_t)adr) & ((intptr_t)(~0xF))); local 51 // Store the value to a 128-bits operand. 52 operand[0] = lo; 53 operand[1] = hi; 54 return operand;
|
| H A D | templateTable_x86_64.cpp | 1388 jlong *operand = (jlong*)(((intptr_t)adr)&((intptr_t)(~0xF))); local 1389 // Store the value to a 128-bits operand. 1390 operand[0] = lo; 1391 operand[1] = hi; 1392 return operand;
|
| /openjdk7/jdk/src/share/native/common/ |
| H A D | check_code.c | 307 int i; /* operand to the opcode */ 310 } operand, operand2; member in struct:instruction_data_type 1031 /* This also sets up this_data->operand. It also makes the 1066 * simplicity, move the operand into the ->operand field. 1092 this_idata->operand.ip = 0; 1108 /* Set the ->operand to be the instruction number of the target. */ 1113 this_idata->operand.i = code_data[target]; 1122 /* Set the ->operand to be the instruction number of the target. */ 1129 this_idata->operand 1862 int operand = this_idata->operand.i; local 1991 int operand = this_idata->operand.i; local 2017 int operand = this_idata->operand.i; local 2099 int operand = this_idata->operand.i; local 2273 int operand = this_idata->operand.i; local 2318 int operand = this_idata->operand.i; local 2460 int operand = this_idata->operand.i; local 2638 int operand = this_idata->operand.i; local 2705 int operand = this_idata->operand.i; local 2727 int operand = this_idata->operand.i; local 2854 int operand = this_idata->operand.i; local 3088 int operand = idata[from_inumber].operand.i; local [all...] |