Lines Matching defs:ident

983 OperandForm *ArchDesc::constructOperand(const char *ident,
985 OperandForm *opForm = new OperandForm(ident, ideal_only);
986 _globalNames.Insert(ident, opForm);
997 char *ident = (char *)NodeClassNames[i];
998 constructOperand(ident, true);
1002 char *ident = (char *)NodeClassNames[j];
1003 if(!strcmp(ident, "ConI") || !strcmp(ident, "ConP") || !strcmp(ident, "ConN") ||
1004 !strcmp(ident, "ConF") || !strcmp(ident, "ConD") ||
1005 !strcmp(ident, "ConL") || !strcmp(ident, "Con" ) ||
1006 !strcmp(ident, "Bool") ) {
1007 constructOperand(ident, true);
1010 InstructForm *insForm = new InstructForm(ident, true);
1011 // insForm->_opcode = nextUserOpType(ident);
1012 _globalNames.Insert(ident,insForm);
1019 const char *ident = "Universe";
1020 opForm = constructOperand(ident, false);
1023 ident = "label";
1024 opForm = constructOperand(ident, false);
1040 ident = "method";
1041 opForm = constructOperand(ident, false);
1047 const char *ident = "USE";
1048 Effect *eForm = new Effect(ident);
1049 _globalNames.Insert(ident, eForm);
1050 ident = "DEF";
1051 eForm = new Effect(ident);
1052 _globalNames.Insert(ident, eForm);
1053 ident = "USE_DEF";
1054 eForm = new Effect(ident);
1055 _globalNames.Insert(ident, eForm);
1056 ident = "KILL";
1057 eForm = new Effect(ident);
1058 _globalNames.Insert(ident, eForm);
1059 ident = "USE_KILL";
1060 eForm = new Effect(ident);
1061 _globalNames.Insert(ident, eForm);
1062 ident = "TEMP";
1063 eForm = new Effect(ident);
1064 _globalNames.Insert(ident, eForm);
1065 ident = "CALL";
1066 eForm = new Effect(ident);
1067 _globalNames.Insert(ident, eForm);