• Home
  • Raw
  • Download

Lines Matching refs:InsertPt

758                                              Instruction *InsertPt,  in CoerceAvailableValueToLoadType()  argument
773 return new BitCastInst(StoredVal, LoadedTy, "", InsertPt); in CoerceAvailableValueToLoadType()
778 StoredVal = new PtrToIntInst(StoredVal, StoredValTy, "", InsertPt); in CoerceAvailableValueToLoadType()
786 StoredVal = new BitCastInst(StoredVal, TypeToCastTo, "", InsertPt); in CoerceAvailableValueToLoadType()
790 StoredVal = new IntToPtrInst(StoredVal, LoadedTy, "", InsertPt); in CoerceAvailableValueToLoadType()
803 StoredVal = new PtrToIntInst(StoredVal, StoredValTy, "", InsertPt); in CoerceAvailableValueToLoadType()
809 StoredVal = new BitCastInst(StoredVal, StoredValTy, "", InsertPt); in CoerceAvailableValueToLoadType()
816 StoredVal = BinaryOperator::CreateLShr(StoredVal, Val, "tmp", InsertPt); in CoerceAvailableValueToLoadType()
821 StoredVal = new TruncInst(StoredVal, NewIntTy, "trunc", InsertPt); in CoerceAvailableValueToLoadType()
828 return new IntToPtrInst(StoredVal, LoadedTy, "inttoptr", InsertPt); in CoerceAvailableValueToLoadType()
831 return new BitCastInst(StoredVal, LoadedTy, "bitcast", InsertPt); in CoerceAvailableValueToLoadType()
1012 Instruction *InsertPt, const TargetData &TD){ in GetStoreValueForLoad() argument
1018 IRBuilder<> Builder(InsertPt->getParent(), InsertPt); in GetStoreValueForLoad()
1040 return CoerceAvailableValueToLoadType(SrcVal, LoadTy, InsertPt, TD); in GetStoreValueForLoad()
1049 Type *LoadTy, Instruction *InsertPt, in GetLoadValueForLoad() argument
1102 return GetStoreValueForLoad(SrcVal, Offset, LoadTy, InsertPt, TD); in GetLoadValueForLoad()
1109 Type *LoadTy, Instruction *InsertPt, in GetMemInstValueForLoad() argument
1114 IRBuilder<> Builder(InsertPt->getParent(), InsertPt); in GetMemInstValueForLoad()
1143 return CoerceAvailableValueToLoadType(Val, LoadTy, InsertPt, TD); in GetMemInstValueForLoad()