Lines Matching refs:IsStore
196 bool instrumentFastpath(Instruction *I, const DataLayout &DL, bool IsStore,
650 bool IsStore; in instrumentLoadOrStore() local
654 IsStore = false; in instrumentLoadOrStore()
658 IsStore = true; in instrumentLoadOrStore()
662 IsStore = true; in instrumentLoadOrStore()
666 IsStore = true; in instrumentLoadOrStore()
680 if (IsStore) in instrumentLoadOrStore()
686 OnAccessFunc = IsStore ? EsanUnalignedStoreN : EsanUnalignedLoadN; in instrumentLoadOrStore()
692 instrumentFastpath(I, DL, IsStore, Addr, Alignment)) { in instrumentLoadOrStore()
697 OnAccessFunc = IsStore ? EsanAlignedStore[Idx] : EsanAlignedLoad[Idx]; in instrumentLoadOrStore()
699 OnAccessFunc = IsStore ? EsanUnalignedStore[Idx] : EsanUnalignedLoad[Idx]; in instrumentLoadOrStore()
828 const DataLayout &DL, bool IsStore, in instrumentFastpath() argument