Searched defs:instr (Results 26 - 30 of 30) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/security/tools/policytool/
H A DPolicyTool.java717 // split instr to words according to capitalization,
720 static String splitToWords(String instr) { argument
721 return instr.replaceAll("([A-Z])", " $1");
/openjdk7/hotspot/src/share/vm/adlc/
H A Dformssel.cpp62 InstructForm::InstructForm(const char *id, InstructForm *instr, MatchRule *rule) argument
64 _localNames(instr->_localNames),
65 _effects(instr->_effects),
72 _insencode = instr->_insencode;
73 _constant = instr->_constant;
74 _opcode = instr->_opcode;
75 _size = instr->_size;
76 _attribs = instr->_attribs;
77 _predicate = instr->_predicate;
78 _exprule = instr
1171 cisc_spills_to(ArchDesc &AD, InstructForm *instr) argument
[all...]
H A Doutput_c.cpp1042 fprintf(fp_cpp, " st->print(\"%%s%%d instr%%s\", needs_comma ? \", \" : \"\", instr_count(), instr_count() != 1 ? \"s\" : \"\");\n");
1313 // static Form::DataType get_operand_type(FormDict &globals, InstructForm *instr, const char *op_name ) {
1314 // int op_index = instr->operand_position(op_name, Component::USE);
1316 // op_index = instr->operand_position(op_name, Component::DEF);
1318 // op_index = instr->operand_position(op_name, Component::USE_DEF);
1323 // ComponentList components_right = instr->_components;
3043 InstructForm *instr; local
3045 for( ; (instr = (InstructForm*)_instructions.iter()) != NULL; ) {
3047 if ( instr->ideal_only() ) continue;
3049 defineOut_RegMask(_CPP_MISC_file._fp, instr
4169 InstructForm *instr; local
4230 InstructForm *instr; local
4251 InstructForm *instr; local
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.cpp361 for (Instruction* instr = block; instr != NULL; instr = instr->next()) {
362 if (instr->is_pinned()) do_root(instr);
372 // This is where the tree-walk starts; instr must be root;
373 void LIRGenerator::do_root(Value instr) { argument
376 InstructionMark im(compilation(), instr); local
378 assert(instr
389 walk(Value instr) argument
390 InstructionMark im(compilation(), instr); local
1064 rlock(Value instr) argument
[all...]
H A Dc1_LinearScan.cpp854 Instruction* instr = gen()->instruction_for_vreg(i); local
855 tty->print_cr("* vreg %d (HIR instruction %c%d)", i, instr == NULL ? ' ' : instr->type()->tchar(), instr == NULL ? 0 : instr->id());

Completed in 84 milliseconds

12