Home | History | Annotate | Download | only in MCAnalysis

Lines Matching defs:InstSize

123       uint64_t InstSize;
124 for (uint64_t Index = 0; Index < SecSize; Index += InstSize) {
127 if (Dis.getInstruction(Inst, InstSize, memoryObject, CurAddr, nulls(),
133 Text->addInst(Inst, InstSize);
136 assert(InstSize && "getInstruction() consumed no bytes");
139 InvalidData = Module->createDataAtom(CurAddr, CurAddr+InstSize - 1);
141 for (uint64_t I = 0; I < InstSize; ++I)
361 uint64_t InstSize;
369 for (uint64_t Addr = BeginAddr; Addr < EndAddr; Addr += InstSize) {
371 if (Dis.getInstruction(Inst, InstSize, *Region, Addr, nulls(),
375 TA->addInst(Inst, InstSize);
382 if (MIA.evaluateBranch(Inst, Addr, InstSize, BranchTarget)) {