Searched defs:opc (Results 1 - 21 of 21) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DInstruction.java44 int opc; field in class:Instruction
57 public Instruction(long where, int opc, Object value, boolean flagCondInverted) { argument
59 this.opc = opc;
67 public Instruction(boolean flagNoCovered, long where, int opc, Object value) { argument
69 this.opc = opc;
77 public Instruction(long where, int opc, boolean flagNoCovered) { argument
79 this.opc = opc;
87 Instruction(long where, int opc, Object value) argument
[all...]
H A DAssembler.java75 public void add(long where, int opc) { argument
76 add(new Instruction(where, opc, null));
78 public void add(long where, int opc, Object obj) { argument
79 add(new Instruction(where, opc, obj));
82 public void add(long where, int opc, Object obj, boolean flagCondInverted) { argument
83 add(new Instruction(where, opc, obj, flagCondInverted));
86 public void add(boolean flagNoCovered, long where, int opc, Object obj) { argument
87 add(new Instruction(flagNoCovered, where, opc, obj));
90 public void add(long where, int opc, boolean flagNoCovered) { argument
91 add(new Instruction(where, opc, flagNoCovere
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dvectornode.cpp165 bool VectorNode::implemented(int opc, uint vlen, BasicType bt) { argument
169 int vopc = VectorNode::opcode(opc, bt);
248 VectorNode* VectorNode::make(Compile* C, int opc, Node* n1, Node* n2, uint vlen, BasicType bt) { argument
250 int vopc = VectorNode::opcode(opc, bt);
252 guarantee(vopc > 0, err_msg_res("Vector for '%s' is not implemented", NodeClassNames[opc]));
405 LoadVectorNode* LoadVectorNode::make(Compile* C, int opc, Node* ctl, Node* mem, argument
412 StoreVectorNode* StoreVectorNode::make(Compile* C, int opc, Node* ctl, Node* mem, argument
H A Dconnode.cpp477 int opc = n->Opcode(); local
479 opc == Op_CheckCastPP ||
480 opc == Op_StorePConditional ||
481 opc == Op_CompareAndSwapP ||
482 opc == Op_CompareAndSwapN ||
483 opc == Op_GetAndSetP ||
484 opc == Op_GetAndSetN;
H A Dloopopts.cpp2340 int opc = n->Opcode(); local
2342 opc == Op_Catch ||
2343 opc == Op_CatchProj ||
2344 opc == Op_Jump ||
2345 opc == Op_JumpProj) {
H A Dnode.cpp1962 // Return a node with opcode "opc" and same inputs as "this" if one can
1964 Node* Node::find_similar(int opc) { argument
1970 if (use->Opcode() == opc &&
H A Dstringopts.cpp333 int opc = use->Opcode(); local
334 if (opc == Op_CreateEx || opc == Op_Region) {
668 int opc = use->Opcode(); local
669 switch (opc) {
907 int opc = use->Opcode(); local
908 if (opc == Op_CmpP || opc == Op_Node) {
912 if (opc == Op_CastPP || opc
[all...]
H A DloopTransform.cpp1648 int opc = exp->Opcode(); local
1649 if (opc == Op_MulI) {
1662 } else if (opc == Op_LShiftI) {
1684 int opc = exp->Opcode(); local
1685 if (opc == Op_AddI) {
1706 } else if (opc == Op_SubI) {
2415 int opc = n->Opcode(); local
2416 if (opc == Op_StoreP || opc == Op_StoreN || opc
[all...]
H A Dsuperword.cpp1372 int opc = n->Opcode(); local
1378 vn = LoadVectorNode::make(C, opc, ctl, mem, adr, atyp, vlen, velt_basic_type(n));
1387 vn = StoreVectorNode::make(C, opc, ctl, mem, adr, atyp, val, vlen);
1399 vn = VectorNode::make(C, opc, in1, in2, vlen, velt_basic_type(n));
2272 int opc = n->Opcode(); local
2273 if (opc == Op_AddI) {
2280 } else if (opc == Op_SubI) {
2302 int opc = n->Opcode(); local
2303 if (opc == Op_MulI) {
2311 } else if (opc
2343 int opc = n->Opcode(); local
[all...]
H A Dmemnode.cpp973 int opc = current->in(0)->Opcode(); local
974 if ((final && (opc == Op_MemBarAcquire || opc == Op_MemBarAcquireLock)) ||
975 opc == Op_MemBarRelease || opc == Op_MemBarCPUOrder ||
976 opc == Op_MemBarReleaseLock) {
2482 int opc = use->Opcode(); local
2857 int opc = Opcode(); local
2859 (opc == Op_MemBarAcquire || opc
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCInstructionFactory.java106 public SPARCInstruction newCoprocessorInstruction(int instruction, int cpopcode, int opc, argument
H A DSPARCV9InstructionFactoryImpl.java40 public SPARCInstruction newCoprocessorInstruction(int instruction, int cpopcode, int opc, argument
/openjdk7/hotspot/src/share/vm/interpreter/
H A Drewriter.cpp153 void Rewriter::maybe_rewrite_invokehandle(address opc, int cp_index, bool reverse) { argument
155 if ((*opc) == (u1)Bytecodes::_invokevirtual ||
157 (*opc) == (u1)Bytecodes::_invokespecial) {
180 (*opc) = (u1)Bytecodes::_invokehandle;
185 if ((*opc) == (u1)Bytecodes::_invokehandle) {
186 (*opc) = (u1)Bytecodes::_invokevirtual;
/openjdk7/hotspot/src/share/vm/adlc/
H A DarchDesc.cpp135 bool MatchList::search(const char *opc, const char *res, const char *lch, argument
150 tmp = _next->search(opc, res, lch, rch, pr);
H A DarchDesc.hpp88 bool search(const char *opc, const char *res, const char *lch,
160 void has_match_rule(int opc, const bool b) { _has_match_rule[opc] = b; } argument
395 virtual void map(OpClassForm &opc) { } argument
H A Doutput_h.cpp612 OpClassForm *opc = form->is_opclass(); local
613 assert( opc, "replacement variable was not found in local names");
617 assert( strcmp(opc->_ident,"label")==0, "Unimplemented");
629 if ( strcmp(rep_var,"$constant") == 0 && opc->is_operand()) {
1135 OpClassForm *opc; local
1136 for (_opclass.reset(); (opc = (OpClassForm*)_opclass.iter()) != NULL; ) {
1138 if (opc->ideal_only()) continue;
2043 void map(OpClassForm &opc) { argument
2044 const char* opc_ident_to_upper = _AD.machOperEnum(opc._ident);
2102 void map(OpClassForm &opc) { fprint argument
[all...]
H A Dadlparse.cpp497 OpClassForm *opc; local
504 opc = new OpClassForm(ident); // Create new operand class form
505 _globalNames.Insert(ident, opc); // Add name to the name table
528 opc->_oplst.addName(ident); // Add operand to opclass list
529 opForm->_classes.addName(opc->_ident);// Add opclass to operand list
550 _AD.addForm(opc);
4560 OpClassForm *opc = form->is_opclass(); local
4562 if((oper == NULL) && (opc == NULL)) {
4566 opclass = opc;
H A Dformssel.cpp1042 const OpClassForm *opc = form->is_opclass(); local
1044 if ( opc && (oper == NULL) ) {
1289 OpClassForm *opc = form->is_opclass(); local
1290 assert( opc, "replacement variable was not found in local names");
1296 assert(strcmp(opc->_ident, "label") == 0, "Unimplemented");
1308 globalAD->syntax_err(_linenum, "In %s can't find format for %s %s", _ident, opc->_ident, rep_var);
H A Doutput_c.cpp1964 OpClassForm *opc = (local != NULL) ? local->is_opclass() : NULL; local
1966 // assert( opc, "replacement variable was not found in local names");
1968 int idx = (opc != NULL) ? _inst.operand_position_format(inst_rep_var) : -1;
1973 _opclass = opc;
1981 _operand = opc->is_operand();
2000 assert( strcmp(opc->_ident,"label")==0, "Unimplemented() Label");
2426 OpClassForm *opc = (local != NULL) ? local->is_opclass() : NULL; local
2428 // assert( opc, "replacement variable was not found in local names");
2430 int idx = (opc != NULL) ? _inst.operand_position_format(inst_rep_var) : -1;
2440 assert( _operand == opc
3244 map(OpClassForm &opc) argument
3279 map(OpClassForm &opc) argument
3309 map(OpClassForm &opc) argument
3339 map(OpClassForm &opc) argument
3361 map(OpClassForm &opc) argument
3378 map(OpClassForm &opc) argument
3396 OpClassForm *opc; local
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.hpp1388 void cpop1( int opc, int cr1, int cr2, int crd ) { v8_only(); emit_long( op(arith_op) | fcn(crd) | op3(impdep1_op3) | u_field(cr1, 18, 14) | opf(opc) | u_field(cr2, 4, 0)); } argument
1389 void cpop2( int opc, int cr1, int cr2, int crd ) { v8_only(); emit_long( op(arith_op) | fcn(crd) | op3(impdep2_op3) | u_field(cr1, 18, 14) | opf(opc) | u_field(cr2, 4, 0)); } argument
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.cpp4170 void Assembler::rex_prefix(Address adr, XMMRegister xreg, VexSimdPrefix pre, VexOpcode opc, bool rex_w) { argument
4179 if (opc > 0) {
4181 int opc2 = simd_opc[opc];
4188 int Assembler::rex_prefix_and_encode(int dst_enc, int src_enc, VexSimdPrefix pre, VexOpcode opc, bool rex_w) { argument
4194 if (opc > 0) {
4196 int opc2 = simd_opc[opc];
4205 void Assembler::vex_prefix(bool vex_r, bool vex_b, bool vex_x, bool vex_w, int nds_enc, VexSimdPrefix pre, VexOpcode opc, bool vector256) { argument
4206 if (vex_b || vex_x || vex_w || (opc == VEX_OPCODE_0F_38) || (opc == VEX_OPCODE_0F_3A)) {
4211 byte1 |= opc;
4228 vex_prefix(Address adr, int nds_enc, int xreg_enc, VexSimdPrefix pre, VexOpcode opc, bool vex_w, bool vector256) argument
4235 vex_prefix_and_encode(int dst_enc, int nds_enc, int src_enc, VexSimdPrefix pre, VexOpcode opc, bool vex_w, bool vector256) argument
4244 simd_prefix(XMMRegister xreg, XMMRegister nds, Address adr, VexSimdPrefix pre, VexOpcode opc, bool rex_w, bool vector256) argument
4255 simd_prefix_and_encode(XMMRegister dst, XMMRegister nds, XMMRegister src, VexSimdPrefix pre, VexOpcode opc, bool rex_w, bool vector256) argument
[all...]

Completed in 336 milliseconds