Lines Matching refs:IsStore
192 bool instrumentFastpath(Instruction *I, const DataLayout &DL, bool IsStore,
649 bool IsStore; in instrumentLoadOrStore() local
653 IsStore = false; in instrumentLoadOrStore()
657 IsStore = true; in instrumentLoadOrStore()
661 IsStore = true; in instrumentLoadOrStore()
665 IsStore = true; in instrumentLoadOrStore()
679 if (IsStore) in instrumentLoadOrStore()
685 OnAccessFunc = IsStore ? EsanUnalignedStoreN : EsanUnalignedLoadN; in instrumentLoadOrStore()
691 instrumentFastpath(I, DL, IsStore, Addr, Alignment)) { in instrumentLoadOrStore()
696 OnAccessFunc = IsStore ? EsanAlignedStore[Idx] : EsanAlignedLoad[Idx]; in instrumentLoadOrStore()
698 OnAccessFunc = IsStore ? EsanUnalignedStore[Idx] : EsanUnalignedLoad[Idx]; in instrumentLoadOrStore()
827 const DataLayout &DL, bool IsStore, in instrumentFastpath() argument