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

References

tools/clang/lib/CodeGen/CGBuiltin.cpp
 7229     if (StoreVal->getType()->isPointerTy())
 7230       StoreVal = Builder.CreatePtrToInt(StoreVal, Int64Ty);
 7230       StoreVal = Builder.CreatePtrToInt(StoreVal, Int64Ty);
 7234           CGM.getDataLayout().getTypeSizeInBits(StoreVal->getType()));
 7235       StoreVal = Builder.CreateBitCast(StoreVal, IntTy);
 7235       StoreVal = Builder.CreateBitCast(StoreVal, IntTy);
 7236       StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int64Ty);
 7236       StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int64Ty);
 7243     return Builder.CreateCall(F, {StoreVal, StoreAddr}, "stxr");