Searched refs:opcode (Results 76 - 100 of 115) sorted by relevance

12345

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DJCTree.java1485 private int opcode; field in class:JCTree.JCAssignOp
1489 protected JCAssignOp(int opcode, JCTree lhs, JCTree rhs, Symbol operator) { argument
1490 this.opcode = opcode;
1510 return opcode;
1518 private int opcode; field in class:JCTree.JCUnary
1521 protected JCUnary(int opcode, JCExpression arg) { argument
1522 this.opcode = opcode;
1539 return opcode;
1551 private int opcode; field in class:JCTree.JCBinary
1555 JCBinary(int opcode, JCExpression lhs, JCExpression rhs, Symbol operator) argument
2164 Assignop(int opcode, JCTree lhs, JCTree rhs) argument
2165 Unary(int opcode, JCExpression arg) argument
2166 Binary(int opcode, JCExpression lhs, JCExpression rhs) argument
[all...]
H A DTreeMaker.java366 public JCAssignOp Assignop(int opcode, JCTree lhs, JCTree rhs) { argument
367 JCAssignOp tree = new JCAssignOp(opcode, lhs, rhs, null);
372 public JCUnary Unary(int opcode, JCExpression arg) { argument
373 JCUnary tree = new JCUnary(opcode, arg);
378 public JCBinary Binary(int opcode, JCExpression lhs, JCExpression rhs) { argument
379 JCBinary tree = new JCBinary(opcode, lhs, rhs, null);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DMethodGen.java880 short opcode = instruction.getOpcode();
901 if(opcode == Constants.JSR || opcode == Constants.JSR_W)
911 if(opcode == Constants.ATHROW || opcode == Constants.RET ||
912 (opcode >= Constants.IRETURN && opcode <= Constants.RETURN))
H A DInstructionFactory.java592 /** Create branch instruction by given opcode, except LOOKUPSWITCH and TABLESWITCH.
595 public static BranchInstruction createBranchInstruction(short opcode, InstructionHandle target) { argument
596 switch(opcode) {
618 throw new RuntimeException("Invalid opcode: " + opcode);
H A DInstructionList.java893 Constants.OPCODE_NAMES[i.opcode] + ":" +
903 Constants.OPCODE_NAMES[i.opcode] + ":" +
910 Constants.OPCODE_NAMES[i.opcode] + ":" +
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRECompiler.java141 * Inserts a node with a given opcode and opdata at insertAt. The node relative next
143 * @param opcode Opcode for new node
147 void nodeInsert(char opcode, int opdata, int insertAt) argument
154 instruction[insertAt + RE.offsetOpcode] = opcode;
195 * @param opcode Opcode for node
199 int node(char opcode, int opdata) argument
205 instruction[lenInstruction + RE.offsetOpcode] = opcode;
974 int opcode = instruction[ret + RE.offsetOpcode];
975 if (opcode == RE.OP_BOL || opcode
[all...]
H A DRE.java812 int next, opcode, opdata;
817 opcode = instruction[node + offsetOpcode];
821 switch (opcode)
1332 internalError("Invalid opcode '" + opcode + "'");
/openjdk7/hotspot/src/share/vm/opto/
H A Descape.cpp345 int opcode = n->Opcode(); local
346 switch (opcode) {
471 (opcode == Op_StoreP || opcode == Op_StoreN) &&
489 if ((opcode == Op_StoreP) && (adr_type == TypeRawPtr::BOTTOM)) {
566 int opcode = n->Opcode(); local
567 switch (opcode) {
667 if (opcode == Op_GetAndSetP || opcode == Op_GetAndSetN) {
671 (opcode
1913 int opcode = n->fast_out(i)->Opcode(); local
1934 int opcode = n->fast_out(i)->Opcode(); local
2162 int opcode = uncast_base->Opcode(); local
[all...]
H A Dvectornode.cpp33 int VectorNode::opcode(int sopc, BasicType bt) { function in class:VectorNode
169 int vopc = VectorNode::opcode(opc, bt);
250 int vopc = VectorNode::opcode(opc, bt);
H A Dmachnode.hpp64 virtual uint opcode() const = 0;
172 virtual uint rule() const = 0; // Machine-specific opcode
882 virtual uint opcode() const;
909 virtual uint opcode() const;
H A DgraphKit.hpp761 Node* insert_mem_bar(int opcode, Node* precedent = NULL);
762 Node* insert_mem_bar_volatile(int opcode, int alias_idx, Node* precedent = NULL);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DInstructionFinder.java193 * opcode via its symbolic name, e.g. "istore". You can also use a super class or
295 * Convert opcode number to char.
297 private static final char makeChar(short opcode) { argument
298 return (char)(opcode + OFFSET);
394 if(Constants.NO_OF_OPERANDS[i] != Constants.UNDEFINED) { // Not an invalid opcode
/openjdk7/hotspot/src/share/vm/adlc/
H A DarchDesc.hpp79 const char *opcode, const char *resultStr, const char *lchild,
81 : _next(nxt), _pred(prd), _cost(cost), _opcode(opcode),
78 MatchList(MatchList *nxt, Predicate *prd, const char *cost, const char *opcode, const char *resultStr, const char *lchild, const char *rchild) argument
H A DarchDesc.cpp177 // Initialize the opcode to MatchList table with NULLs
558 const char *opcode; local
592 // Grab the string for the opcode of this list entry
594 opcode = (node->_internalop) ? node->_internalop : node->_opType;
596 opcode = rootOp;
605 !_mlistab[index]->search(opcode, resultop, leftstr, rightstr, pred))) {
609 opcode, resultop, leftstr, rightstr);
747 names.Insert("opcode", NULL);
995 // Create OperandForm and assign type for each opcode.
1170 fprintf(fp_hpp, "// Mapping from machine-independent opcode t
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DX86Disassembler.java64 null, /* 0x0f extended opcode escape */
1526 //Read opcode
1527 int opcode = InstructionDecoder.readByte(code, byteIndex);
1530 if (opcode == 0x0f) {
1531 opcode = InstructionDecoder.readByte(code, byteIndex);
1536 instrDecoder = twoBytePrefixF2Table[opcode];
1538 instrDecoder = twoBytePrefixF3Table[opcode];
1540 instrDecoder = twoBytePrefix66Table[opcode];
1542 instrDecoder = twoByteTable[opcode];
1546 instrDecoder = oneByteTable[opcode];
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A Drewriter.cpp108 Bytecodes::Code opcode = bcs.raw_next(); local
109 switch (opcode) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DFrame.java272 // int NA = 0; // not applicable (unused opcode or variable size opcode)
847 * @param opcode the opcode of the instruction.
853 final int opcode,
859 switch (opcode) {
1196 if (opcode != Opcodes.INVOKESTATIC) {
1198 if (opcode == Opcodes.INVOKESPECIAL
852 execute( final int opcode, final int arg, final ClassWriter cw, final Item item) argument
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DRenderQueue.cpp220 jint opcode = NEXT_INT(b); local
222 J2dTraceLn1(J2D_TRACE_VERBOSE, "D3DRQ_flushBuffer: opcode=%d", opcode);
224 switch (opcode) {
860 "D3DRQ_flushBuffer: invalid opcode=%d", opcode);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSymtab.java235 * @param opcode The operation's bytecode instruction.
239 int opcode) {
245 opcode,
251 * @param opcode1 First opcode.
252 * @param opcode2 Second opcode.
265 * @param opcode The operation's bytecode instruction.
270 int opcode) {
277 opcode,
237 enterBinop(String name, Type left, Type right, Type res, int opcode) argument
267 enterUnop(String name, Type arg, Type res, int opcode) argument
H A DSymbol.java1352 public int opcode; field in class:Symbol.OperatorSymbol
1354 public OperatorSymbol(Name name, Type type, int opcode, Symbol owner) { argument
1356 this.opcode = opcode;
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLRenderQueue.c90 jint opcode = NEXT_INT(b); local
93 "OGLRenderQueue_flushBuffer: opcode=%d, rem=%d",
94 opcode, (end-b));
96 switch (opcode) {
696 "OGLRenderQueue_flushBuffer: invalid opcode=%d", opcode);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DProxyGenerator.java1322 * "opcode" indicates the opcode form of the desired load or store
1327 private void codeLocalLoadStore(int lvar, int opcode, int opcode_0, argument
1335 out.writeByte(opcode);
1343 out.writeByte(opcode);
/openjdk7/hotspot/src/share/vm/classfile/
H A Dverifier.hpp288 int opcode, u2 index, StackMapFrame *current_frame,
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_GraphicsEnv.c1560 int opcode = 0, firstEvent = 0, firstError = 0;
1565 &opcode, &firstEvent, &firstError);
1912 int opcode = 0, firstEvent = 0, firstError = 0;
1917 &opcode, &firstEvent, &firstError);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DLower.java813 return accessCode(((OperatorSymbol) ((JCAssignOp) enclOp).operator).opcode);
826 if (accessCode(op.opcode) == acode) return op;
836 switch (operator.opcode) {
925 if (operator.opcode == string_add)
3025 JCExpression rhs = (((OperatorSymbol)tree.operator).opcode == string_add)
3046 int opcode = (tree.getTag() == JCTree.POSTINC)
3051 JCTree update = makeAssignop(opcode,
3071 int opcode = (tree.getTag() == JCTree.PREINC)
3073 JCAssignOp newTree = makeAssignop(opcode,

Completed in 135 milliseconds

12345