Searched defs:operands (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DConstantPool.java88 operands = new OopField(type.getOopField("_operands"), 0);
107 private static OopField operands; field in class:ConstantPool
120 public TypeArray getOperands() { return (TypeArray) operands.getValue(this); }
374 TypeArray operands = getOperands();
375 if (operands == null) return null; // safety first
376 int basePos = VM.getVM().buildIntFromShorts(operands.getShortAt(bsmSpec * 2 + 0),
377 operands.getShortAt(bsmSpec * 2 + 1));
379 int argc = operands.getShortAt(basePos + INDY_ARGC_OFFSET);
383 values[j] = operands.getShortAt(basePos+j);
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.hpp102 void set_operands(typeArrayOop operands) { oop_store_without_check((oop*)&_operands, operands); } argument
179 typeArrayOop operands() const { return _operands; } function in class:constantPoolOopDesc
517 return operand_offset_at(operands(), bootstrap_specifier_index);
519 // The first part of the operands array consists of an index into the second part.
521 static int operand_offset_at(typeArrayOop operands, int bootstrap_specifier_index) { argument
523 assert(n >= 0 && n+2 <= operands->length(), "oob");
525 // of the operands array. Make sure this index is in the first part.
526 DEBUG_ONLY(int second_part = build_int_from_shorts(operands->short_at(0),
527 operands
535 operand_offset_at_put(typeArrayOop operands, int bootstrap_specifier_index, int offset) argument
541 operand_array_length(typeArrayOop operands) argument
549 operand_limit_at(typeArrayOop operands, int bootstrap_specifier_index) argument
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A Dadlparse.cpp160 // Then get the operands
195 // Check for commutative operations with tree operands.
214 // Check for commutative operations with tree operands.
295 // Check for commutative operations with subtree operands,
296 // create clones and swap operands.
298 // Check for commutative operations with tree operands.
302 // Clone match rule and swap commutative operation's operands.
326 // Can not have additional base operands in right side of match!
416 // Get the component operands
511 // Get the list of operands
3529 match_parse(FormDict &operands) argument
4003 matchNode_parse(FormDict &operands, int &depth, int &numleaves, bool atroot) argument
4094 matchChild_parse(FormDict &operands, int &parens, int &numleaves, bool atroot) argument
4537 get_oplist(NameList &parameters, FormDict &operands) argument
4600 get_effectlist(FormDict &effects, FormDict &operands, bool& has_call) argument
[all...]

Completed in 40 milliseconds