Home
last modified time | relevance | path

Searched refs:RetLoc (Results 1 – 25 of 26) sorted by relevance

12

/external/valgrind/VEX/priv/
Dhost_generic_regs.h407 RetLoc; typedef
409 extern void ppRetLoc ( RetLoc rloc );
411 static inline RetLoc mk_RetLoc_simple ( RetLocPrimary pri ) { in mk_RetLoc_simple()
413 return (RetLoc){pri, 0}; in mk_RetLoc_simple()
416 static inline RetLoc mk_RetLoc_spRel ( RetLocPrimary pri, Int off ) { in mk_RetLoc_spRel()
418 return (RetLoc){pri, off}; in mk_RetLoc_spRel()
421 static inline Bool is_sane_RetLoc ( RetLoc rloc ) { in is_sane_RetLoc()
432 static inline RetLoc mk_RetLoc_INVALID ( void ) { in mk_RetLoc_INVALID()
433 return (RetLoc){RLPri_INVALID, 0}; in mk_RetLoc_INVALID()
436 static inline Bool is_RetLoc_INVALID ( RetLoc rl ) { in is_RetLoc_INVALID()
Dhost_mips_defs.h452 RetLoc rloc; /* where the return value will be */
635 extern MIPSInstr *MIPSInstr_Call ( MIPSCondCode, Addr64, UInt, HReg, RetLoc );
636 extern MIPSInstr *MIPSInstr_CallAlways ( MIPSCondCode, Addr64, UInt, RetLoc );
Dhost_x86_defs.h456 RetLoc rloc; /* where the return value will be */
671 extern X86Instr* X86Instr_Call ( X86CondCode, Addr32, Int, RetLoc );
Dhost_amd64_defs.h476 RetLoc rloc; /* where the return value will be */
721 extern AMD64Instr* AMD64Instr_Call ( AMD64CondCode, Addr64, Int, RetLoc );
Dhost_s390_defs.h368 RetLoc rloc; /* where the return value will be */
651 const HChar *name, RetLoc rloc);
Dhost_generic_regs.c314 void ppRetLoc ( RetLoc ska ) in ppRetLoc()
Dhost_arm_defs.h732 RetLoc rloc; /* where the return value will be */
983 RetLoc rloc );
Dhost_arm64_defs.h637 RetLoc rloc; /* where the return value will be */
904 RetLoc rloc );
Dhost_ppc_defs.h617 RetLoc rloc; /* where the return value will be */
1009 extern PPCInstr* PPCInstr_Call ( PPCCondCode, Addr64, UInt, RetLoc );
Dhost_tilegx_defs.h408 RetLoc rloc; /* where the return value saved. */
Dhost_x86_isel.c383 RetLoc rloc ) in callHelperAndClearArgs()
429 /*OUT*/RetLoc* retloc, in doHelperCall()
1473 RetLoc rloc = mk_RetLoc_INVALID(); in iselIntExpr_R_wrk()
1997 RetLoc rloc = mk_RetLoc_INVALID(); in iselCondCode_wrk()
2846 RetLoc rloc = mk_RetLoc_INVALID(); in iselInt64Expr_wrk()
4109 RetLoc rloc = mk_RetLoc_INVALID(); in iselStmt()
Dhost_mips_isel.c395 /*OUT*/RetLoc* retloc, in doHelperCall()
1338 RetLoc rloc = mk_RetLoc_INVALID(); in iselWordExpr_R_wrk()
1749 RetLoc rloc = mk_RetLoc_INVALID(); in iselWordExpr_R_wrk()
1850 RetLoc rloc = mk_RetLoc_INVALID(); in iselWordExpr_R_wrk()
3832 RetLoc rloc = mk_RetLoc_INVALID(); in iselStmt()
Dhost_s390_isel.c512 /*OUT*/RetLoc *retloc, in doHelperCall()
1823 RetLoc rloc = mk_RetLoc_INVALID(); in s390_isel_int_expr_wrk()
3771 RetLoc rloc = mk_RetLoc_INVALID(); in s390_isel_stmt()
Dhost_arm64_isel.c477 /*OUT*/RetLoc* retloc, in doHelperCall()
2003 RetLoc rloc = mk_RetLoc_INVALID(); in iselIntExpr_R_wrk()
3724 RetLoc rloc = mk_RetLoc_INVALID(); in iselStmt()
Dhost_amd64_isel.c429 /*OUT*/RetLoc* retloc, in doHelperCall()
1828 RetLoc rloc = mk_RetLoc_INVALID(); in iselIntExpr_R_wrk()
2379 RetLoc rloc = mk_RetLoc_INVALID(); in iselCondCode_wrk()
4586 RetLoc rloc = mk_RetLoc_INVALID(); in iselStmt()
Dhost_mips_defs.c870 HReg src, RetLoc rloc ) in MIPSInstr_Call()
889 UInt argiregs, RetLoc rloc ) in MIPSInstr_CallAlways()
Dhost_ppc_isel.c718 /*OUT*/RetLoc* retloc, in doHelperCall()
2404 RetLoc rloc = mk_RetLoc_INVALID(); in iselWordExpr_R_wrk()
5851 RetLoc rloc = mk_RetLoc_INVALID(); in iselStmt()
Dhost_arm_isel.c381 /*OUT*/RetLoc* retloc, in doHelperCall()
1849 RetLoc rloc = mk_RetLoc_INVALID(); in iselIntExpr_R_wrk()
5989 RetLoc rloc = mk_RetLoc_INVALID(); in iselStmt()
Dhost_x86_defs.c641 RetLoc rloc ) { in X86Instr_Call()
Dhost_amd64_defs.c678 RetLoc rloc ) { in AMD64Instr_Call()
Dhost_arm_defs.c1219 RetLoc rloc ) { in ARMInstr_Call()
Dhost_arm64_defs.c960 RetLoc rloc ) { in ARM64Instr_Call()
Dhost_ppc_defs.c792 Addr64 target, UInt argiregs, RetLoc rloc ) { in PPCInstr_Call()
/external/clang/include/clang/AST/
DStmt.h1347 SourceLocation RetLoc; variable
1355 : Stmt(ReturnStmtClass), RetLoc(RL), RetExpr((Stmt *)E), in ReturnStmt()
1365 SourceLocation getReturnLoc() const { return RetLoc; } in getReturnLoc()
1366 void setReturnLoc(SourceLocation L) { RetLoc = L; } in setReturnLoc()
1376 SourceLocation getLocStart() const LLVM_READONLY { return RetLoc; } in getLocStart()
1378 return RetExpr ? RetExpr->getLocEnd() : RetLoc; in getLocEnd()
/external/clang/lib/StaticAnalyzer/Core/
DBugReporterVisitors.cpp216 if (Optional<Loc> RetLoc = RetVal.getAs<Loc>()) in addVisitorIfNecessary() local
217 EnableNullFPSuppression = State->isNull(*RetLoc).isConstrainedTrue(); in addVisitorIfNecessary()

12