Home
last modified time | relevance | path

Searched refs:hasDef (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackMaps.cpp496 assert(PatchPointOpers(&MI).hasDef() && "Stackmap has no return value."); in recordStackMapOpers()
546 opers.isAnyReg() && opers.hasDef()); in recordPatchPoint()
553 for (unsigned i = 0, e = (opers.hasDef() ? NArgs + 1 : NArgs); i != e; ++i) in recordPatchPoint()
H A DLiveInterval.cpp892 bool hasDef = false; in stripValuesNotDefiningMask() local
905 hasDef = true; in stripValuesNotDefiningMask()
909 if (!hasDef) in stripValuesNotDefiningMask()
H A DMachineVerifier.cpp3602 bool hasDef = false; in verifyLiveRangeValue() local
3618 hasDef = true; in verifyLiveRangeValue()
3623 if (!hasDef) { in verifyLiveRangeValue()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DStackMaps.h99 bool hasDef() const { return HasDef; } in hasDef() function