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

References

tools/clang/lib/CodeGen/CGBuiltin.cpp
 6240     if (StoreVal->getType()->isPointerTy())
 6241       StoreVal = Builder.CreatePtrToInt(StoreVal, Int32Ty);
 6241       StoreVal = Builder.CreatePtrToInt(StoreVal, Int32Ty);
 6245           CGM.getDataLayout().getTypeSizeInBits(StoreVal->getType()));
 6246       StoreVal = Builder.CreateBitCast(StoreVal, IntTy);
 6246       StoreVal = Builder.CreateBitCast(StoreVal, IntTy);
 6247       StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int32Ty);
 6247       StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int32Ty);
 6254     return Builder.CreateCall(F, {StoreVal, StoreAddr}, "strex");