Searched refs:cee (Results 1 - 15 of 15) sorted by relevance

/external/valgrind/main/VEX/priv/
H A Dir_defs.c1019 ppIRCallee(e->Iex.CCall.cee);
1078 ppIRCallee(d->cee);
1467 IRExpr* IRExpr_CCall ( IRCallee* cee, IRType retty, IRExpr** args ) { argument
1470 e->Iex.CCall.cee = cee;
1582 d->cee = NULL;
1840 return IRExpr_CCall(deepCopyIRCallee(e->Iex.CCall.cee),
1857 d2->cee = deepCopyIRCallee(d->cee);
2896 static Bool saneIRCallee ( IRCallee* cee )
[all...]
H A Dhost_x86_isel.c352 IRCallee* cee, Int n_arg_ws )
359 addInstr(env, X86Instr_Call( cc, toUInt(Ptr_to_ULong(cee->addr)),
360 cee->regparms));
390 IRExpr* guard, IRCallee* cee, IRExpr** args )
445 vassert(cee->regparms >= 0 && cee->regparms <= 3);
454 stack_limit = cee->regparms;
455 if (cee->regparms > 0 && passBBP) stack_limit--;
468 if (cee->regparms > 0) {
478 argreg = cee
351 callHelperAndClearArgs( ISelEnv* env, X86CondCode cc, IRCallee* cee, Int n_arg_ws ) argument
388 doHelperCall( ISelEnv* env, Bool passBBP, IRExpr* guard, IRCallee* cee, IRExpr** args ) argument
[all...]
H A Dhost_amd64_isel.c436 IRExpr* guard, IRCallee* cee, IRExpr** args )
490 /* Note that the cee->regparms field is meaningless on AMD64 host
615 Ptr_to_ULong(cee->addr),
1762 doHelperCall( env, False, NULL, e->Iex.CCall.cee, e->Iex.CCall.args );
2289 doHelperCall( env, False, NULL, cal->Iex.CCall.cee, cal->Iex.CCall.args );
2776 //.. doHelperCall( env, False, NULL, e->Iex.CCall.cee, e->Iex.CCall.args );
4012 doHelperCall( env, passBBP, d->guard, d->cee, d->args );
434 doHelperCall( ISelEnv* env, Bool passBBP, IRExpr* guard, IRCallee* cee, IRExpr** args ) argument
H A Dhost_ppc_isel.c628 IRExpr* guard, IRCallee* cee, IRExpr** args )
690 /* Note that the cee->regparms field is meaningless on PPC32/64 host
854 target = mode64 ? Ptr_to_ULong(cee->addr) :
855 toUInt(Ptr_to_ULong(cee->addr));
1936 e->Iex.CCall.cee, e->Iex.CCall.args );
4136 doHelperCall( env, passBBP, d->guard, d->cee, d->args );
626 doHelperCall( ISelEnv* env, Bool passBBP, IRExpr* guard, IRCallee* cee, IRExpr** args ) argument
H A Dhost_s390_isel.c1230 doHelperCall(env, False, NULL, expr->Iex.CCall.cee,
2239 doHelperCall(env, passBBP, d->guard, d->cee, d->args);
H A Dir_opt.c337 IRExpr_CCall(ex->Iex.CCall.cee,
1879 ex->Iex.CCall.cee,
2376 ex = (*specHelper)( st->Ist.WrTmp.data->Iex.CCall.cee->name,
4196 e->Iex.CCall.cee,
H A Dhost_arm_isel.c369 IRExpr* guard, IRCallee* cee, IRExpr** args )
426 /* Note that the cee->regparms field is meaningless on ARM hosts
585 target = (HWord)Ptr_to_ULong(cee->addr);
1710 NULL, e->Iex.CCall.cee, e->Iex.CCall.args );
5815 Bool ok = doHelperCall( env, passBBP, d->guard, d->cee, d->args );
367 doHelperCall( ISelEnv* env, Bool passBBP, IRExpr* guard, IRCallee* cee, IRExpr** args ) argument
H A Dguest_s390_toIR.c597 call->Iex.CCall.cee->mcx_mask = (1<<0) | (1<<3);
619 call->Iex.CCall.cee->mcx_mask = (1<<0);
643 call->Iex.CCall.cee->mcx_mask = (1<<0) | (1<<1) | (1<<4);
10574 call->Iex.CCall.cee->mcx_mask = 0;
10625 call->Iex.CCall.cee->mcx_mask = 0;
H A Dguest_arm_toIR.c1119 call->Iex.CCall.cee->mcx_mask = (1<<0) | (1<<3);
1158 call->Iex.CCall.cee->mcx_mask = (1<<0) | (1<<3);
1182 call->Iex.CCall.cee->mcx_mask = (1<<0) | (1<<3);
1205 call->Iex.CCall.cee->mcx_mask = (1<<0) | (1<<3);
H A Dguest_x86_toIR.c801 call->Iex.CCall.cee->mcx_mask = (1<<0) | (1<<3);
825 call->Iex.CCall.cee->mcx_mask = (1<<0) | (1<<1) | (1<<4);
847 call->Iex.CCall.cee->mcx_mask = (1<<0) | (1<<3);
H A Dguest_amd64_toIR.c1523 call->Iex.CCall.cee->mcx_mask = (1<<0) | (1<<3);
1547 call->Iex.CCall.cee->mcx_mask = (1<<0) | (1<<1) | (1<<4);
1569 call->Iex.CCall.cee->mcx_mask = (1<<0) | (1<<3);
/external/valgrind/main/VEX/pub/
H A Dlibvex_ir.h1479 With the 'cee' field, 'name' is the function's name. It is
1482 inside 'cee'.
1513 ppIRExpr output: <cee>(<args>):<retty>
1517 IRCallee* cee; /* Function to call. */ member in struct:_IRExpr::__anon13419::__anon13430
1550 extern IRExpr* IRExpr_CCall ( IRCallee* cee, IRType retty, IRExpr** args );
1725 IRCallee* cee; /* where to call */ member in struct:__anon13434
/external/valgrind/main/memcheck/
H A Dmc_translate.c1575 IRAtom** exprvec, IRType finalVtype, IRCallee* cee )
1589 if (cee->mcx_mask & (1<<i))
1603 if (cee->mcx_mask & (1<<i)) {
1606 if (0) VG_(printf)("excluding %s(%d)\n", cee->name, i);
3751 e->Iex.CCall.cee );
4041 if (d->cee->mcx_mask & (1<<i)) {
5267 IRCallee* cee; local
5285 cee = di->cee;
5286 if (!is_helperc_value_checkN_fail( cee
[all...]
/external/valgrind/main/VEX/
H A Dtest_main.c1265 IRAtom** exprvec, IRType finalVtype, IRCallee* cee )
1275 if (cee->mcx_mask & (1<<i)) {
1278 if (0) VG_(printf)("excluding %s(%d)\n", cee->name, i);
2151 e->Iex.CCall.cee );
2347 if (d->cee->mcx_mask & (1<<i)) {
/external/elfutils/tests/
H A Drun-strings-test.sh135 testfile4: cee pthread_key_delete

Completed in 267 milliseconds