Lines Matching refs:form

153   instr = new InstructForm(ident); // Create new instruction form
241 const Form *form = _globalNames[ident];
242 AttributeForm *attr = form ? form->is_attribute() : NULL;
259 // Check for "Set" form of chain rule
273 // Create instruction form for each additional match rule
279 InstructForm *clone = new InstructForm(ident, instr, rule); // Create new instruction form
284 // Check for "Set" form of chain rule
308 // Check for "Set" form of chain rule
409 oper = new OperandForm(ident); // Create new operand form
504 opc = new OpClassForm(ident); // Create new operand class form
525 const Form *form = _globalNames[ident];
526 opForm = form ? form->is_operand() : NULL;
1118 // Assign value into frame form
1125 // Assign value into frame form
1389 MachNodeForm *machnode = new MachNodeForm(node_class); // Create new machnode form
2074 Peephole *peep; // Pointer to current peephole rule form
2465 const Form *form = _AD._globalNames[token];
2466 if (form) {
2467 InstructForm *inst = form->is_instruction();
2664 const Form *form = _AD._globalNames[inst];
2665 if( form == NULL || form->is_instruction() == NULL ) {
2761 // Parse the block form of ins_encode. See ins_encode_parse for more details
2889 // Encode rules have the form
2913 // Check for ins_encode %{ form
2918 // Parse the block form of ins_encode
3541 cnstr = NULL; // no constructor for this form
3562 // Without expression form, MUST have a code block;
3565 desc = NULL; // no constructor for this form
3847 const Form *form = _globalNames[ident];
3848 ins = form ? form->is_instruction() : NULL;
3851 oper = form ? form->is_operand() : NULL;
4041 const Form *form = operands[token];
4042 OpClassForm *opcForm = form ? form->is_opclass() : NULL;
4106 const Form *form = operands[token];
4107 OpClassForm *opcForm = form ? form->is_opclass() : NULL;
4210 // Make sure we do not stray into the next ADLC-level form.
4553 const Form *form = _globalNames[ident];
4554 if( form == NULL ) {
4560 OpClassForm *opc = form->is_opclass();
4561 OperandForm *oper = form->is_operand();
4599 // effect form in a local effects table.
4618 const Form *form = _globalNames[ident];
4619 if( form == NULL ) {
4624 if( (eForm = form->is_effect()) == NULL) {
4642 const Form *form = operands[ident];
4643 opForm = form ? form->is_operand() : NULL;
4645 if( form && form->is_opclass() ) {
4646 const char* cname = form->is_opclass()->_ident;