Home | History | Annotate | Download | only in callgrind

Lines Matching full:datasize

616 void addEvent_Dr ( ClgState* clgs, InstrInfo* inode, Int datasize, IRAtom* ea )
620 tl_assert(datasize >= 1);
622 tl_assert(datasize <= CLG_(min_line_size));
631 evt->Ev.Dr.szB = datasize;
637 void addEvent_Dw ( ClgState* clgs, InstrInfo* inode, Int datasize, IRAtom* ea )
642 tl_assert(datasize >= 1);
644 tl_assert(datasize <= CLG_(min_line_size));
650 && lastEvt->Ev.Dr.szB == datasize
666 evt->Ev.Dw.szB = datasize;
673 Int datasize, IRAtom* ea, IRAtom* guard,
679 tl_assert(datasize >= 1);
681 tl_assert(datasize <= CLG_(min_line_size));
705 ea, mkIRExpr_HWord( datasize ) );
1095 Int dataSize;
1101 dataSize = d->mSize;
1106 if (CLG_(clo).simulate_cache && dataSize > CLG_(min_line_size))
1107 dataSize = CLG_(min_line_size);
1109 addEvent_Dr( &clgs, curr_inode, dataSize, d->mAddr );
1111 addEvent_Dw( &clgs, curr_inode, dataSize, d->mAddr );
1125 Int dataSize;
1129 dataSize = sizeofIRType(typeOfIRExpr(sbIn->tyenv, cas->dataLo));
1131 dataSize *= 2; /* since this is a doubleword-cas */
1132 addEvent_Dr( &clgs, curr_inode, dataSize, cas->addr );
1133 addEvent_Dw( &clgs, curr_inode, dataSize, cas->addr );