Lines Matching defs:Arg
243 const Pointer &Arg = getParam<Pointer>(Frame, 0);
245 if (!CheckLoad(S, OpPC, Arg))
248 assert(Arg.getFieldDesc()->isPrimitiveArray());
253 assert(Arg.getNumElems() >= 1);
255 const Pointer &Elem = Arg.atIndex(I);
368 const Floating &Arg = S.Stk.peek<Floating>();
370 pushInteger(S, Arg.isNan(), Call->getType());
378 const Floating &Arg = S.Stk.peek<Floating>();
380 pushInteger(S, Arg.isSignaling(), Call->getType());
387 const Floating &Arg = S.Stk.peek<Floating>();
388 bool IsInf = Arg.isInf();
391 pushInteger(S, IsInf ? (Arg.isNegative() ? -1 : 1) : 0, Call->getType());
393 pushInteger(S, Arg.isInf(), Call->getType());
400 const Floating &Arg = S.Stk.peek<Floating>();
402 pushInteger(S, Arg.isFinite(), Call->getType());
409 const Floating &Arg = S.Stk.peek<Floating>();
411 pushInteger(S, Arg.isNormal(), Call->getType());
419 const Floating &Arg = S.Stk.peek<Floating>();
421 pushInteger(S, Arg.isDenormal(), Call->getType());
428 const Floating &Arg = S.Stk.peek<Floating>();
430 pushInteger(S, Arg.isZero(), Call->getType());
544 const Expr *Arg = Call->getArg(0);
547 EvaluateBuiltinClassifyType(Arg->getType(), S.getLangOpts());
616 const FunctionPointer &Arg = S.Stk.peek<FunctionPointer>();
617 S.Stk.push<FunctionPointer>(Arg);
619 const Pointer &Arg = S.Stk.peek<Pointer>();
620 S.Stk.push<Pointer>(Arg);
633 TYPE_SWITCH(ArgT, const T &Arg = S.Stk.peek<T>(); S.Stk.push<T>(Arg););
643 APSInt Arg = peekToAPSInt(S.Stk, ArgT);
646 S.getCtx().getTargetInfo().getEHDataRegisterNumber(Arg.getZExtValue());
654 const Pointer &Arg = S.Stk.peek<Pointer>();
655 S.Stk.push<Pointer>(Arg);