Home
last modified time | relevance | path

Searched refs:return_ (Results 1 – 25 of 35) sorted by relevance

12

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dctorflow.d25 return_ = 0x08, /// seen a return statement enumerator
128 const aRet = (a & CSX.return_) != 0; in mergeCallSuper()
129 const bRet = (b & CSX.return_) != 0; in mergeCallSuper()
160 a |= CSX.return_; in mergeCallSuper()
181 const aRet = (a & CSX.return_) != 0; in mergeFieldInit()
182 const bRet = (b & CSX.return_) != 0; in mergeFieldInit()
H A Descape.d436 if (!(param.storageClass & STC.return_)) in checkParamArgumentReturn()
641 !(v.storage_class & STC.return_) && in checkAssignEscape()
655 if (vaIsFirstRef && v.isParameter() && v.storage_class & STC.return_) in checkAssignEscape()
669 … if (va && va.isScope() && va.storage_class & STC.return_ && !(v.storage_class & STC.return_) && in checkAssignEscape()
701 if (v.storage_class & STC.return_ && in checkAssignEscape()
702 !(va.storage_class & STC.return_)) in checkAssignEscape()
705 va.storage_class |= STC.return_ | STC.returninferred; in checkAssignEscape()
762 if (!(va.storage_class & STC.return_)) in checkAssignEscape()
785 !(v.storage_class & STC.return_) && in checkAssignEscape()
795 !(vaIsFirstRef && (v.storage_class & STC.return_)) && in checkAssignEscape()
[all …]
H A Dastenums.d73 return_ = 0x40_0000, /// 'return ref' or 'return scope' for function parameters enumerator
126 …hared_ | STC.wild | STC.nothrow_ | STC.nogc | STC.pure_ | STC.ref_ | STC.return_ | STC.tls | STC.g…
133 … STC.TYPECTOR | STC.final_ | STC.tls | STC.gshared | STC.ref_ | STC.return_ | STC.property |
150 return (stc & (STC.scope_ | STC.return_)) == (STC.scope_ | STC.return_) && in isRefReturnScope()
160 STC.wild | STC.nothrow_ | STC.nogc | STC.pure_ | STC.ref_ | STC.return_ | STC.tls |
H A Dblockexit.d42 return_ = 4, enumerator
48 any = (fallthru | throw_ | return_ | goto_ | halt),
362 result = BE.return_; in blockExit()
508 result = BE.fallthru | BE.return_ | BE.goto_ | BE.halt; in blockExit()
H A Dtokens.d202 return_, enumerator
502 TOK.return_,
610 … restrict, return_, int16, signed, sizeof_, static_, struct_, switch_, typedef_, in with()
708 TOK.return_: "return",
H A Dtokens.h211 return_, enumerator
H A Dob.d139 return_, /// returns from function enumerator
151 obtype == ObType.return_ ? "ret " : in toString()
666 : ObType.return_; in toObNodes()
856 curblock.obtype = ObType.return_; in toObNodes()
906 case ObType.return_: in insertFinallyBlockCalls()
2562 if (ob.obtype == ObType.return_ || ob.obtype == ObType.retexp) in checkObErrors()
H A Ddmangle.d993 stc &= ~(STC.return_ | STC.returninferred); in mangleParameter()
1013 stc &= ~(STC.out_ | STC.scope_ | STC.ref_ | STC.return_); in mangleParameter()
1020 if (stc & STC.return_) in mangleParameter()
H A Dmtype.d686 stc1 |= STC.return_;
692 stc2 |= STC.return_;
4252 if (stc & STC.return_)
4385 if (stc & (STC.scope_ | STC.return_ | STC.lazy_) || purity == PURE.impure) in parameterStorageClass()
4444 return stc | STC.scope_ | STC.return_ | STC.returnScope; in parameterStorageClass()
7029 to &= ~STC.return_; in isCovariantScope()
7031 if (to & STC.scopeinferred && !(to & STC.return_)) in isCovariantScope()
7253 final switch (stc & (STC.ref_ | STC.scope_ | STC.return_)) in buildScopeRef()
7261 case STC.return_: result = ScopeRef.Return; break; in buildScopeRef()
7265 case STC.return_ | STC.ref_: result = ScopeRef.ReturnRef; break; in buildScopeRef()
[all …]
H A Dparse.d1335 case TOK.return_:
1336 stc = STC.return_;
2008 if (token.value == TOK.return_) // typeof(return) in parseTypeof()
2731 …enum VarArgsStc = STC.const_ | STC.immutable_ | STC.shared_ | STC.scope_ | STC.return_ | STC.retur…
2837 case TOK.return_:
2838 stc = STC.return_;
3939 if (stc & (STC.const_ | STC.immutable_ | STC.shared_ | STC.wild | STC.return_))
5227 if (t == TOK.const_ || t == TOK.immutable_ || t == TOK.inout_ || t == TOK.return_ ||
6252 case TOK.return_:
7385 case TOK.return_:
[all …]
H A Dhdrgen.d2844 stc &= ~(STC.return_ | STC.returninferred); in stcToBuffer()
2868 stc &= ~(STC.out_ | STC.scope_ | STC.ref_ | STC.return_); in stcToBuffer()
2924 SCstring(STC.return_, Token.toString(TOK.return_)), in stcToString()
3203 …STC.return_ | STC.returninferred | STC.scope_ | STC.scopeinferred | STC.out_ | STC.ref_ | STC.retu… in parameterToBuffer()
H A Dsemantic3.d486 …stc |= fparam.storageClass & (STC.IOR | STC.return_ | STC.scope_ | STC.lazy_ | STC.final_ | STC.TY… in visit()
1283 if (funcdecl.storage_class & STC.return_) in visit()
H A Dtypesem.d1193 if (sc.stc & STC.return_) in typeSemantic()
1437 if (fparam.storageClass & STC.return_) in typeSemantic()
1461 … fparam.storageClass &= ~STC.return_; // https://issues.dlang.org/show_bug.cgi?id=18963 in typeSemantic()
1517 fparam.storageClass &= ~(STC.return_ | STC.scope_ | STC.returnScope); in typeSemantic()
H A Dclone.d1507 …fparams.push(new Parameter(paramStc | STC.ref_ | STC.return_ | STC.scope_, structType, Id.p, null,… in generateCopyCtorDeclaration()
H A Dtraits.d1476 if (stc & STC.return_) in semanticTraits()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dtraits.d214 stc2 = ParameterStorageClass.return_;
222 if (stc2 & ParameterStorageClass.return_)
241 'j': FunctionAttribute.return_,
629 psc & PSC.return_ ? "return " : "", in fqnType()
700 attrs & FA.return_ ? " return" : "" in fqnType()
1040 return_ = 0x10, /// ditto enumerator
1108 case "return": result |= return_; break; in extractParameterStorageClassFlags()
1114 if (result == (ParameterStorageClass.ref_ | ParameterStorageClass.return_)) in extractParameterStorageClassFlags()
1115 result = ParameterStorageClass.return_; in extractParameterStorageClassFlags()
1136 static assert(test_pstc[5] == STC.return_);
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dtraits.d719 psc & PSC.return_ ? "return " : "", in fqnType()
791 ~ (attrs & FA.return_ ? " return" : ""); in fqnType()
1141 return_ = 0x20, /// ditto enumerator
1220 case "return": result |= return_; break; in extractParameterStorageClassFlags()
1226 if (result == (ParameterStorageClass.ref_ | ParameterStorageClass.return_)) in extractParameterStorageClassFlags()
1227 result = ParameterStorageClass.return_; in extractParameterStorageClassFlags()
1270 static assert(test_pstc[5] == STC.return_);
1570 return_ = 1 << 12, /// ditto
1643 static assert(functionAttributes!(S.refF) == (FA.ref_ | FA.system | FA.return_));
1644 static assert(functionAttributes!(typeof(S.refF)) == (FA.ref_ | FA.system | FA.return_));
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/jit/
H A Djit-recording.c4179 statement *result = new return_ (this, loc, rvalue); in end_with_return()
6154 recording::return_::replay_into (replayer *r) in replay_into()
6167 recording::return_::get_successor_blocks () const in get_successor_blocks()
6178 recording::return_::make_debug_string () in make_debug_string()
6193 recording::return_::write_reproducer (reproducer &r) in write_reproducer()
H A Djit-recording.h1999 class return_ : public statement
2002 return_ (block *b, in return_() function
/netbsd-src/external/gpl3/gcc.old/dist/gcc/analyzer/
H A Dengine.cc1021 if (const greturn *return_ = dyn_cast <const greturn *> (stmt)) in on_stmt() local
1022 state->m_region_model->on_return (return_, &ctxt); in on_stmt()
2885 else if (const greturn *return_ = dyn_cast <const greturn *> (stmt)) in feasible_p() local
2886 model.on_return (return_, NULL); in feasible_p()
/netbsd-src/external/gpl3/gcc/dist/gcc/jit/
H A Djit-recording.cc4566 statement *result = new return_ (this, loc, rvalue); in end_with_return()
6952 recording::return_::replay_into (replayer *r) in replay_into()
6965 recording::return_::get_successor_blocks () const in get_successor_blocks()
6976 recording::return_::make_debug_string () in make_debug_string()
6991 recording::return_::write_reproducer (reproducer &r) in write_reproducer()
H A DChangeLog1652 (return_::replay_into): Likewise.
1653 (return_::get_successor_blocks): Likewise.
1654 (return_::make_debug_string): Likewise.
1655 (return_::write_reproducer): Likewise.
1984 (recording::return_::get_successor_blocks): Likewise.
2005 (return_::get_successor_blocks): Likewise.
2580 (return_::write_reproducer): Likewise.
2643 (return_::write_reproducer): Likewise.
H A Djit-recording.h2205 class return_ : public statement
2208 return_ (block *b, in return_() function
H A DChangeLog.jit1483 (gcc::jit::recording::return_::replay_into): Likewise.
1492 (gcc::jit::recording::return_::get_successor_blocks): New.
1634 (gcc::jit::recording::return_::replay_into): Likewise.
2414 (gcc::jit::recording::return_::make_debug_string): New.
2507 (gcc::jit::recording::return_::make_debug_string): New.
2731 (gcc::jit::recording::return_::replay_into): Likewise.
/netbsd-src/external/gpl3/gcc/dist/gcc/analyzer/
H A Dengine.cc4559 else if (const greturn *return_ = dyn_cast <const greturn *> (stmt)) in maybe_update_for_edge() local
4560 m_model.on_return (return_, NULL); in maybe_update_for_edge()

12