reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/Instrumentation/MemorySanitizer.cpp
 1256     Value *ContextState = IRB.CreateCall(MS.MsanGetContextStateFn, {});
 1257     Constant *Zero = IRB.getInt32(0);
 1258     MS.ParamTLS = IRB.CreateGEP(MS.MsanContextStateTy, ContextState,
 1259                                 {Zero, IRB.getInt32(0)}, "param_shadow");
 1260     MS.RetvalTLS = IRB.CreateGEP(MS.MsanContextStateTy, ContextState,
 1261                                  {Zero, IRB.getInt32(1)}, "retval_shadow");
 1262     MS.VAArgTLS = IRB.CreateGEP(MS.MsanContextStateTy, ContextState,
 1263                                 {Zero, IRB.getInt32(2)}, "va_arg_shadow");
 1264     MS.VAArgOriginTLS = IRB.CreateGEP(MS.MsanContextStateTy, ContextState,
 1265                                       {Zero, IRB.getInt32(3)}, "va_arg_origin");
 1267         IRB.CreateGEP(MS.MsanContextStateTy, ContextState,
 1268                       {Zero, IRB.getInt32(4)}, "va_arg_overflow_size");
 1269     MS.ParamOriginTLS = IRB.CreateGEP(MS.MsanContextStateTy, ContextState,
 1270                                       {Zero, IRB.getInt32(5)}, "param_origin");
 1272         IRB.CreateGEP(MS.MsanContextStateTy, ContextState,
 1273                       {Zero, IRB.getInt32(6)}, "retval_origin");