Searched refs:operand (Results 1 - 25 of 46) sorted by relevance

12

/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/constExpr/
H A DUnaryExpr.java54 public void operand (Expression operand) {_operand = operand;} argument
55 public Expression operand () {return _operand;} method in class:UnaryExpr
H A DBooleanNot.java45 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 DNegative.java45 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 DPositive.java45 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 DNot.java45 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 DDefaultExprFactory.java55 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 DExprFactory.java47 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 DCallDecoder.java34 Operand operand = getOperand1(bytesArray, operandSize, addrSize);
37 if (operand instanceof X86Register) {
38 address = new X86RegisterDirectAddress((X86Register)operand);
40 address = (Address) operand;
H A DJmpDecoder.java34 Operand operand = getOperand1(bytesArray, operandSize, addrSize);
37 if (operand instanceof X86Register) {
38 address = new X86RegisterDirectAddress((X86Register)operand);
40 address = (Address) operand;
H A DX86FPLoadInstruction.java33 public X86FPLoadInstruction(String name, Operand operand, int size, int prefixes) { argument
35 this.source = operand;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/jcore/
H A DByteCodeRewriter.java154 String operand = "";
157 operand += code[bci + 1];
160 operand += (cpoolIndex != 0)? cpoolIndex :
164 operand += method.getBytecodeIntArg(bci + 1);
168 // the operand following # is not quite like javap output.
169 // in particular, for goto & goto_w, the operand is PC relative
176 if (operand != "")
177 message += " #" + operand;
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c307 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...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodVisitor.java134 * 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...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DRecognizedOptions.java345 public boolean process(Options options, String option, String operand) {
346 Source source = Source.lookup(operand);
348 helper.error("err.invalid.source", operand);
351 return super.process(options, option, operand);
356 public boolean process(Options options, String option, String operand) {
357 Target target = Target.lookup(operand);
359 helper.error("err.invalid.target", operand);
362 return super.process(options, option, operand);
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/main/
H A DMain.java149 /** Does this option take a (separate) operand?
397 boolean process(String option, String operand) {
398 Source source = Source.lookup(operand);
400 error("err.invalid.source", operand);
403 error("err.unsupported.source.version", operand);
406 return super.process(option, operand);
410 boolean process(String option, String operand) {
411 Target target = Target.lookup(operand);
413 error("err.invalid.target", operand);
416 error("err.unsupported.target.version", operand);
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTool.java241 String operand = flags.next();
242 if (option.process(optionTable, flag, operand))
245 throw new IllegalArgumentException(flag + " " + operand);
/openjdk7/hotspot/src/share/vm/opto/
H A DindexSet.hpp371 void check_watch(const char *operation, uint operand) const {
374 tty->print_cr("IndexSet %d : %s ( %d )", _serial_number, operation, operand);
H A Dmachnode.cpp81 // Print any per-operand special info
87 // Print any per-operand special info
94 // Print any per-operand special info
101 // Print any per-operand special info
107 // Print any per-operand special info
113 // Print any per-operand special info
119 // Print any per-operand special info
197 uint opcnt = 1; // First operand
198 uint num_edges = _opnds[1]->num_edges(); // leaves for first operand
201 opcnt++; // Bump operand coun
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.cpp128 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...]
H A Dc1_CFGPrinter.cpp227 if (instr->operand()->is_virtual()) {
229 instr->operand()->print(output());
H A Dc1_LIRGenerator.hpp74 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...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DConstFold.java101 * @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.
/openjdk7/hotspot/src/share/tools/launcher/
H A Djava.c258 * 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/jdk/src/share/bin/
H A Djava.c226 * 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/share/vm/adlc/
H A Ddfa.cpp274 // 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...]

Completed in 92 milliseconds

12