Lines Matching refs:ID
180 void Profile(llvm::FoldingSetNodeID &ID) { in Profile() argument
181 ID.AddInteger(getCallingConvention()); in Profile()
182 ID.AddBoolean(NoReturn); in Profile()
183 ID.AddBoolean(ReturnsRetained); in Profile()
184 ID.AddBoolean(HasRegParm); in Profile()
185 ID.AddInteger(RegParm); in Profile()
186 getReturnType().Profile(ID); in Profile()
188 it->type.Profile(ID); in Profile()
191 static void Profile(llvm::FoldingSetNodeID &ID, in Profile() argument
196 ID.AddInteger(Info.getCC()); in Profile()
197 ID.AddBoolean(Info.getNoReturn()); in Profile()
198 ID.AddBoolean(Info.getProducesResult()); in Profile()
199 ID.AddBoolean(Info.getHasRegParm()); in Profile()
200 ID.AddInteger(Info.getRegParm()); in Profile()
201 ResTy.Profile(ID); in Profile()
204 T.Profile(ID); in Profile()