/netbsd/external/gpl3/gcc/dist/gcc/d/dmd/ |
H A D | iasmgcc.d | 394 assert(ASTCodegen.Type.tint32 is null); 401 ASTCodegen.Type.tint32 = null; in scope() 403 scope tint32 = new TypeBasic(ASTCodegen.Tint32); variable 404 ASTCodegen.Type.tint32 = tint32;
|
H A D | denum.c | 434 memtype = Type::tint32; in getMemtype() 440 memtype = Type::tint32; in getMemtype() 646 t = Type::tint32; in semantic() 650 Expression *e = new IntegerExp(loc, 0, Type::tint32); in semantic() 706 e = new AddExp(loc, eprev, new IntegerExp(loc, 1, Type::tint32)); in semantic() 715 origValue = new AddExp(loc, emprev->origValue, new IntegerExp(loc, 1, Type::tint32)); in semantic()
|
H A D | denum.d | 225 memtype = Type.tint32; in getMemtype()
|
H A D | cparse.d | 679 e = new AST.IntegerExp(loc, token.intvalue, AST.Type.tint32); in cparsePrimaryExp() 774 e = new AST.IntegerExp(loc, 0, AST.Type.tint32); in cparsePrimaryExp() 2563 t = AST.Type.tint32; 2785 tspec = AST.Type.tint32; in cparseTypeName() 2875 tspec = AST.Type.tint32; in cparseParameterList() 3275 AST.Type base = AST.Type.tint32; // C11 6.7.2.2-4 implementation defined default base type 3456 tspec = AST.Type.tint32; 3520 tspec = AST.Type.tint32; 4576 return AST.Type.tint32; in integerTypeForSize()
|
H A D | statementsem.c | 1500 tfld = new TypeFunction(params, Type::tint32, 0, LINKd, stc); in visit() 1578 … fldeTy[i] = new TypeDelegate(new TypeFunction(dgparams, Type::tint32, 0, LINKd)); in visit() 1580 fdapply[i] = FuncDeclaration::genCfunc(params, Type::tint32, name[i]); in visit() 1601 ec->type = Type::tint32; // don't run semantic() on ec in visit() 1643 dgty = new TypeDelegate(new TypeFunction(dgparams, Type::tint32, 0, LINKd)); in visit() 1645 fdapply = FuncDeclaration::genCfunc(params, Type::tint32, fdname); in visit() 1658 ec->type = Type::tint32; // don't run semantic() on ec in visit() 1675 if (ec->type != Type::tint32) in visit() 1696 if (ec->type != Type::tint32) in visit() 2352 … s = new ExpStatement(ss->loc, new AssertExp(ss->loc, new IntegerExp(ss->loc, 0, Type::tint32))); in visit()
|
H A D | statementsem.d | 1402 if (ec.type != Type.tint32) in package() 1427 if (ec.type != Type.tint32) in package() 1483 dgty = new TypeDelegate(new TypeFunction(ParameterList(dgparams), Type.tint32, LINK.d)); in package() 1485 fdapply = FuncDeclaration.genCfunc(params, Type.tint32, fdname.ptr); in package() 1498 ec.type = Type.tint32; // don't run semantic() on ec in package() 1550 … fldeTy[i] = new TypeDelegate(new TypeFunction(ParameterList(dgparams), Type.tint32, LINK.d)); in package() 1552 … fdapply[i] = FuncDeclaration.genCfunc(params, Type.tint32, i ? Id._aaApply2 : Id._aaApply); in package() 1573 ec.type = Type.tint32; // don't run semantic() on ec in package() 1667 auto tf = new TypeFunction(ParameterList(params), Type.tint32, LINK.d, stc); in package()
|
H A D | clone.c | 588 tfcmpptr = new TypeFunction(parameters, Type::tint32, 0, LINKd); in buildXopCmp() 622 TypeFunction *tf = new TypeFunction(parameters, Type::tint32, 0, LINKd); in buildXopCmp()
|
H A D | cond.c | 313 s1->push(new ExpStatement(aloc, new AssertExp(aloc, new IntegerExp(aloc, 0, Type::tint32)))); in lowerNonArrayAggregate()
|
H A D | clone.d | 623 tfcmpptr = new TypeFunction(ParameterList(parameters), Type.tint32, LINK.d); in buildXopCmp() 701 auto tf = new TypeFunction(ParameterList(parameters), Type.tint32, LINK.d, STC.const_); in buildXopCmp()
|
H A D | semantic3.d | 637 exp.type = Type.tint32; in visit() 828 Type tret = implicit0 ? Type.tint32 : f.next; in visit()
|
H A D | mtype.h | 162 static Type *tint32; variable
|
H A D | parse.c | 2838 case TOKint32: ta = Type::tint32; goto LabelX; in parseTemplateSingleArgument() 3080 case TOKint32: t = Type::tint32; goto LabelX; in parseBasicType() 6758 e = new IntegerExp(loc, (d_int32)token.int64value, Type::tint32); in parsePrimaryExp() 6834 e = new IntegerExp(loc, loc.linnum, Type::tint32); in parsePrimaryExp() 6924 case TOKint32: t = Type::tint32; goto LabelX; in parsePrimaryExp() 7197 e = new IntegerExp(loc, 0, Type::tint32); in parsePrimaryExp()
|
H A D | traits.d | 1974 (*exps)[1] = new IntegerExp(e.loc, s.loc.linnum,Type.tint32); in semanticTraits() 1975 (*exps)[2] = new IntegerExp(e.loc, s.loc.charnum,Type.tint32); in semanticTraits()
|
H A D | constfold.c | 851 ue = Equal(TOKequal, loc, Type::tint32, ee1, ee2); in Equal() 924 ue = Equal(TOKequal, loc, Type::tint32, ee1, ee2); in Equal()
|
/netbsd/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
H A D | denum.c | 434 memtype = Type::tint32; in getMemtype() 440 memtype = Type::tint32; in getMemtype() 646 t = Type::tint32; in semantic() 650 Expression *e = new IntegerExp(loc, 0, Type::tint32); in semantic() 706 e = new AddExp(loc, eprev, new IntegerExp(loc, 1, Type::tint32)); in semantic() 715 origValue = new AddExp(loc, emprev->origValue, new IntegerExp(loc, 1, Type::tint32)); in semantic()
|
H A D | argtypes.c | 191 t = Type::tint32; in toArgTypes() 264 t = Type::tint32; in toArgTypes() 339 t1 = Type::tint32; in toArgTypes()
|
H A D | statementsem.c | 1500 tfld = new TypeFunction(params, Type::tint32, 0, LINKd, stc); in visit() 1578 … fldeTy[i] = new TypeDelegate(new TypeFunction(dgparams, Type::tint32, 0, LINKd)); in visit() 1580 fdapply[i] = FuncDeclaration::genCfunc(params, Type::tint32, name[i]); in visit() 1601 ec->type = Type::tint32; // don't run semantic() on ec in visit() 1643 dgty = new TypeDelegate(new TypeFunction(dgparams, Type::tint32, 0, LINKd)); in visit() 1645 fdapply = FuncDeclaration::genCfunc(params, Type::tint32, fdname); in visit() 1658 ec->type = Type::tint32; // don't run semantic() on ec in visit() 1675 if (ec->type != Type::tint32) in visit() 1696 if (ec->type != Type::tint32) in visit() 2352 … s = new ExpStatement(ss->loc, new AssertExp(ss->loc, new IntegerExp(ss->loc, 0, Type::tint32))); in visit()
|
H A D | clone.c | 588 tfcmpptr = new TypeFunction(parameters, Type::tint32, 0, LINKd); in buildXopCmp() 622 TypeFunction *tf = new TypeFunction(parameters, Type::tint32, 0, LINKd); in buildXopCmp()
|
H A D | cond.c | 313 s1->push(new ExpStatement(aloc, new AssertExp(aloc, new IntegerExp(aloc, 0, Type::tint32)))); in lowerNonArrayAggregate()
|
H A D | parse.c | 2838 case TOKint32: ta = Type::tint32; goto LabelX; in parseTemplateSingleArgument() 3080 case TOKint32: t = Type::tint32; goto LabelX; in parseBasicType() 6758 e = new IntegerExp(loc, (d_int32)token.int64value, Type::tint32); in parsePrimaryExp() 6834 e = new IntegerExp(loc, loc.linnum, Type::tint32); in parsePrimaryExp() 6924 case TOKint32: t = Type::tint32; goto LabelX; in parsePrimaryExp() 7197 e = new IntegerExp(loc, 0, Type::tint32); in parsePrimaryExp()
|
H A D | constfold.c | 851 ue = Equal(TOKequal, loc, Type::tint32, ee1, ee2); in Equal() 924 ue = Equal(TOKequal, loc, Type::tint32, ee1, ee2); in Equal()
|
/netbsd/external/gpl3/gcc.old/dist/gcc/d/ |
H A D | runtime.cc | 100 libcall_types[type] = Type::tint32; in get_libcall_type()
|
H A D | toir.cc | 868 condition = build_libcall (libcall, Type::tint32, 2, decl, condition); in visit() 962 casevalue = build_integer_cst (s->index, build_ctype (Type::tint32)); in visit() 1037 type = Type::tint32; in visit()
|
/netbsd/external/gpl3/gcc/dist/gcc/d/ |
H A D | runtime.cc | 101 libcall_types[type] = Type::tint32; in get_libcall_type()
|
H A D | toir.cc | 893 casevalue = build_integer_cst (s->index, build_ctype (Type::tint32)); in visit() 971 type = Type::tint32; in visit()
|