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

References

tools/clang/lib/CodeGen/TargetInfo.cpp
  296   if (VAListAddr.getElementType() != CGF.Int8PtrTy)
  297     VAListAddr = CGF.Builder.CreateElementBitCast(VAListAddr, CGF.Int8PtrTy);
  297     VAListAddr = CGF.Builder.CreateElementBitCast(VAListAddr, CGF.Int8PtrTy);
  299   llvm::Value *Ptr = CGF.Builder.CreateLoad(VAListAddr, "argp.cur");
  304     Addr = Address(emitRoundPointerUpToAlignment(CGF, Ptr, DirectAlign),
  313       CGF.Builder.CreateConstInBoundsByteGEP(Addr, FullDirectSize, "argp.next");
  314   CGF.Builder.CreateStore(NextPtr.getPointer(), VAListAddr);
  318   if (DirectSize < SlotSize && CGF.CGM.getDataLayout().isBigEndian() &&
  320     Addr = CGF.Builder.CreateConstInBoundsByteGEP(Addr, SlotSize - DirectSize);
  323   Addr = CGF.Builder.CreateElementBitCast(Addr, DirectTy);