Searched defs:ArgFlagsTy (Results 1 – 4 of 4) sorted by relevance
25 struct ArgFlagsTy { struct28 static const uint64_t ZExt = 1ULL<<0; ///< Zero extended29 static const uint64_t ZExtOffs = 0;30 static const uint64_t SExt = 1ULL<<1; ///< Sign extended31 static const uint64_t SExtOffs = 1;32 static const uint64_t InReg = 1ULL<<2; ///< Passed in register33 static const uint64_t InRegOffs = 2;34 static const uint64_t SRet = 1ULL<<3; ///< Hidden struct-ret ptr35 static const uint64_t SRetOffs = 3;36 static const uint64_t ByVal = 1ULL<<4; ///< Struct passed by value[all …]
20 struct ArgFlagsTy { struct23 static const uint64_t ZExt = 1ULL<<0; ///< Zero extended24 static const uint64_t ZExtOffs = 0;48 ArgFlagsTy() : Flags(0) { } in ArgFlagsTy() function50 bool isZExt() const { return Flags & ZExt; } in isZExt()51 void setZExt() { Flags |= One << ZExtOffs; } in setZExt()53 bool isSExt() const { return Flags & SExt; } in isSExt()54 void setSExt() { Flags |= One << SExtOffs; } in setSExt()56 bool isInReg() const { return Flags & InReg; } in isInReg()57 void setInReg() { Flags |= One << InRegOffs; } in setInReg()[all …]
24 CCValAssign::LocInfo &, ISD::ArgFlagsTy &, in CC_PPC_AnyReg_Error()
38 CCValAssign::LocInfo &, ISD::ArgFlagsTy &, in CC_X86_AnyReg_Error()