Searched defs:retTy (Results 1 - 9 of 9) sorted by relevance

/external/valgrind/main/VEX/priv/
H A Dhost_arm64_isel.c511 IRCallee* cee, IRType retTy, IRExpr** args )
607 vassert(retTy == Ity_V128 || retTy == Ity_V256);
608 vassert(retTy != Ity_V256); // we don't handle that yet (if ever)
614 vassert(retTy != Ity_V128 && retTy != Ity_V256);
657 if (retTy == Ity_V128 || retTy == Ity_V256)
768 vassert(nVECRETs == (retTy == Ity_V128 || retTy
507 doHelperCall( UInt* stackAdjustAfterCall, RetLoc* retloc, ISelEnv* env, IRExpr* guard, IRCallee* cee, IRType retTy, IRExpr** args ) argument
[all...]
H A Dhost_arm_isel.c392 IRCallee* cee, IRType retTy, IRExpr** args )
516 if (retTy == Ity_V128 || retTy == Ity_V256)
660 vassert(nVECRETs == (retTy == Ity_V128 || retTy == Ity_V256) ? 1 : 0);
663 switch (retTy) {
388 doHelperCall( UInt* stackAdjustAfterCall, RetLoc* retloc, ISelEnv* env, IRExpr* guard, IRCallee* cee, IRType retTy, IRExpr** args ) argument
H A Dhost_mips_isel.c397 IRCallee* cee, IRType retTy, IRExpr** args )
484 if (retTy == Ity_V128 || retTy == Ity_V256)
613 vassert(nVECRETs == (retTy == Ity_V128 || retTy == Ity_V256) ? 1 : 0);
616 switch (retTy) {
393 doHelperCall( UInt* stackAdjustAfterCall, RetLoc* retloc, ISelEnv* env, IRExpr* guard, IRCallee* cee, IRType retTy, IRExpr** args ) argument
H A Dhost_s390_isel.c476 IRCallee *callee, IRType retTy, IRExpr **args)
547 vassert(retTy == Ity_V128 || retTy == Ity_V256);
548 vassert(retTy != Ity_V256); // we don't handle that yet (if ever)
555 vassert(retTy != Ity_V128 && retTy != Ity_V256);
608 switch (retTy) {
473 doHelperCall( UInt *stackAdjustAfterCall, RetLoc *retloc, ISelEnv *env, IRExpr *guard, IRCallee *callee, IRType retTy, IRExpr **args) argument
H A Dir_defs.c4225 IRType retTy = Ity_INVALID; local
4227 retTy = typeOfIRTemp(tyenv, d->tmp);
4228 if (retTy == Ity_I1)
4249 if (retTy != Ity_V128 && retTy != Ity_V256)
4255 if (retTy == Ity_V128 || retTy == Ity_V256)
H A Dhost_amd64_isel.c433 IRCallee* cee, IRType retTy, IRExpr** args )
537 if (retTy == Ity_V128 || retTy == Ity_V256)
600 if (retTy == Ity_V128) {
605 else if (retTy == Ity_V256) {
659 if (retTy == Ity_V128 || retTy == Ity_V256) {
669 switch (retTy) {
429 doHelperCall( UInt* stackAdjustAfterCall, RetLoc* retloc, ISelEnv* env, IRExpr* guard, IRCallee* cee, IRType retTy, IRExpr** args ) argument
H A Dhost_ppc_isel.c688 IRCallee* cee, IRType retTy, IRExpr** args )
808 if (retTy == Ity_V128 || retTy == Ity_V256)
907 if (retTy == Ity_V128) {
913 else if (retTy == Ity_V256) {
990 if (retTy == Ity_V128 || retTy == Ity_V256) {
1000 switch (retTy) {
684 doHelperCall( UInt* stackAdjustAfterCall, RetLoc* retloc, ISelEnv* env, IRExpr* guard, IRCallee* cee, IRType retTy, IRExpr** args ) argument
H A Dhost_x86_isel.c432 IRCallee* cee, IRType retTy, IRExpr** args )
525 vassert(retTy == Ity_V128 || retTy == Ity_V256);
526 vassert(retTy != Ity_V256); // we don't handle that yet (if ever)
532 vassert(retTy != Ity_V128 && retTy != Ity_V256);
658 switch (retTy) {
428 doHelperCall( UInt* stackAdjustAfterCall, RetLoc* retloc, ISelEnv* env, IRExpr* guard, IRCallee* cee, IRType retTy, IRExpr** args ) argument
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp493 NVPTXTargetLowering::getPrototype(Type *retTy, const ArgListTy &Args, argument
506 if (retTy->getTypeID() == Type::VoidTyID) {
510 if (retTy->isFloatingPointTy() || retTy->isIntegerTy()) {
512 if (const IntegerType *ITy = dyn_cast<IntegerType>(retTy)) {
517 assert(retTy->isFloatingPointTy() &&
519 size = retTy->getPrimitiveSizeInBits();
523 } else if (isa<PointerType>(retTy)) {
526 if((retTy->getTypeID() == Type::StructTyID) ||
527 isa<VectorType>(retTy)) {
662 Type *retTy = CLI.RetTy; local
[all...]

Completed in 291 milliseconds