Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/CodeGen/GlobalISel/
H A DRegisterBankInfo.cpp515 APInt ValueMask(OrigValueBitWidth, 0); in verify() local
522 ValueMask ^= PartMapMask; in verify()
523 assert((ValueMask & PartMapMask) == PartMapMask && in verify()
526 assert(ValueMask.isAllOnesValue() && "Value is not fully mapped"); in verify()
/freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/
H A DEfficiencySanitizer.cpp885 Value *ValueMask = ConstantInt::get(ShadowTy, 0x81); // 10000001B in instrumentFastpathWorkingSet() local
889 Value *Cmp = IRB.CreateICmpNE(IRB.CreateAnd(OldValue, ValueMask), ValueMask); in instrumentFastpathWorkingSet()
895 Value *NewVal = IRB.CreateOr(OldValue, ValueMask); in instrumentFastpathWorkingSet()