Home
last modified time | relevance | path

Searched refs:LastFPdOpCycleIdx (Results 1 – 2 of 2) sorted by relevance

/openbsd/gnu/llvm/llvm/lib/Target/SystemZ/
H A DSystemZHazardRecognizer.cpp86 LastFPdOpCycleIdx = UINT_MAX; in Reset()
253 if (LastFPdOpCycleIdx != UINT_MAX) in dumpState()
254 dbgs() << "++ | Last FPd cycle index: " << LastFPdOpCycleIdx << "\n"; in dumpState()
321 LastFPdOpCycleIdx = getCurrCycleIdx(SU); in EmitInstruction()
322 LLVM_DEBUG(dbgs() << "++ Last FPd cycle index: " << LastFPdOpCycleIdx in EmitInstruction()
374 if (LastFPdOpCycleIdx == UINT_MAX) in isFPdOpPreferred_distance()
381 if (LastFPdOpCycleIdx > SUCycleIdx) in isFPdOpPreferred_distance()
382 return ((LastFPdOpCycleIdx - SUCycleIdx) == 3); in isFPdOpPreferred_distance()
383 return ((SUCycleIdx - LastFPdOpCycleIdx) == 3); in isFPdOpPreferred_distance()
461 LastFPdOpCycleIdx = Incoming->LastFPdOpCycleIdx; in copyState()
H A DSystemZHazardRecognizer.h89 unsigned LastFPdOpCycleIdx; variable