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

References

lib/CodeGen/CodeGenPrepare.cpp
 4951       if (V->getType() == IntPtrTy) {
 4953       } else if (V->getType()->isPointerTy()) {
 4954         V = Builder.CreatePtrToInt(V, IntPtrTy, "sunkaddr");
 4954         V = Builder.CreatePtrToInt(V, IntPtrTy, "sunkaddr");
 4956                  cast<IntegerType>(V->getType())->getBitWidth()) {
 4957         V = Builder.CreateTrunc(V, IntPtrTy, "sunkaddr");
 4957         V = Builder.CreateTrunc(V, IntPtrTy, "sunkaddr");
 4970         V = Builder.CreateMul(V, ConstantInt::get(IntPtrTy, AddrMode.Scale),
 4970         V = Builder.CreateMul(V, ConstantInt::get(IntPtrTy, AddrMode.Scale),
 4973         Result = Builder.CreateAdd(Result, V, "sunkaddr");
 4975         Result = V;