Home
last modified time | relevance | path

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

/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.h455 RetLoc rloc; /* where the return value will be */
638 extern MIPSInstr *MIPSInstr_Call ( MIPSCondCode, Addr64, UInt, HReg, RetLoc );
639 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.h478 RetLoc rloc; /* where the return value will be */
733 extern AMD64Instr* AMD64Instr_Call ( AMD64CondCode, Addr64, Int, RetLoc );
Dhost_s390_defs.h371 RetLoc rloc; /* where the return value will be */
654 const HChar *name, RetLoc rloc);
Dhost_generic_regs.c314 void ppRetLoc ( RetLoc ska ) in ppRetLoc()
Dhost_arm_defs.h735 RetLoc rloc; /* where the return value will be */
1009 RetLoc rloc );
Dhost_arm64_defs.h639 RetLoc rloc; /* where the return value will be */
935 RetLoc rloc );
Dhost_ppc_defs.h681 RetLoc rloc; /* where the return value will be */
1095 extern PPCInstr* PPCInstr_Call ( PPCCondCode, Addr64, UInt, RetLoc );
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()
2848 RetLoc rloc = mk_RetLoc_INVALID(); in iselInt64Expr_wrk()
4111 RetLoc rloc = mk_RetLoc_INVALID(); in iselStmt()
Dhost_mips_isel.c389 /*OUT*/RetLoc* retloc, in doHelperCall()
1332 RetLoc rloc = mk_RetLoc_INVALID(); in iselWordExpr_R_wrk()
1743 RetLoc rloc = mk_RetLoc_INVALID(); in iselWordExpr_R_wrk()
1844 RetLoc rloc = mk_RetLoc_INVALID(); in iselWordExpr_R_wrk()
3838 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()
3809 RetLoc rloc = mk_RetLoc_INVALID(); in s390_isel_stmt()
Dhost_arm64_isel.c475 /*OUT*/RetLoc* retloc, in doHelperCall()
2031 RetLoc rloc = mk_RetLoc_INVALID(); in iselIntExpr_R_wrk()
3752 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()
4609 RetLoc rloc = mk_RetLoc_INVALID(); in iselStmt()
Dhost_ppc_isel.c722 /*OUT*/RetLoc* retloc, in doHelperCall()
2493 RetLoc rloc = mk_RetLoc_INVALID(); in iselWordExpr_R_wrk()
3349 RetLoc rloc = mk_RetLoc_INVALID(); in iselInt64Expr_wrk()
6551 RetLoc rloc = mk_RetLoc_INVALID(); in iselStmt()
Dhost_arm_isel.c373 /*OUT*/RetLoc* retloc, in doHelperCallWithArgsOnStack()
509 /*OUT*/RetLoc* retloc, in doHelperCall()
1992 RetLoc rloc = mk_RetLoc_INVALID(); in iselIntExpr_R_wrk()
6169 RetLoc rloc = mk_RetLoc_INVALID(); in iselStmt()
Dhost_mips_defs.c867 HReg src, RetLoc rloc ) in MIPSInstr_Call()
886 UInt argiregs, RetLoc rloc ) in MIPSInstr_CallAlways()
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.c854 Addr64 target, UInt argiregs, RetLoc rloc ) { in PPCInstr_Call()
Dhost_s390_defs.c5569 const HChar *name, RetLoc rloc) in s390_insn_helper_call()
/external/clang/include/clang/AST/
DStmt.h1367 SourceLocation RetLoc; variable
1375 : Stmt(ReturnStmtClass), RetLoc(RL), RetExpr((Stmt *)E), in ReturnStmt()
1385 SourceLocation getReturnLoc() const { return RetLoc; } in getReturnLoc()
1386 void setReturnLoc(SourceLocation L) { RetLoc = L; } in setReturnLoc()
1396 SourceLocation getLocStart() const LLVM_READONLY { return RetLoc; } in getLocStart()
1398 return RetExpr ? RetExpr->getLocEnd() : RetLoc; in getLocEnd()
/external/clang/lib/StaticAnalyzer/Core/
DBugReporterVisitors.cpp217 if (Optional<Loc> RetLoc = RetVal.getAs<Loc>()) in addVisitorIfNecessary() local
218 EnableNullFPSuppression = State->isNull(*RetLoc).isConstrainedTrue(); in addVisitorIfNecessary()