Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp882 APInt RawBytes = Entry.getConstantFP()->getValueAPF().bitcastToAPInt(); in applyConcreteDbgVariableAttributes() local
883 if (RawBytes.getBitWidth() > 64) in applyConcreteDbgVariableAttributes()
885 DwarfExpr.addUnsignedConstant(RawBytes.getZExtValue()); in applyConcreteDbgVariableAttributes()
887 APInt RawBytes = Entry.getConstantInt()->getValue(); in applyConcreteDbgVariableAttributes() local
888 if (RawBytes.getBitWidth() > 64) in applyConcreteDbgVariableAttributes()
890 DwarfExpr.addUnsignedConstant(RawBytes.getZExtValue()); in applyConcreteDbgVariableAttributes()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp620 unsigned char RawBytes[32] = {0}; in FoldReinterpretLoadFromConst() local
621 unsigned char *CurPtr = RawBytes; in FoldReinterpretLoadFromConst()
636 ResultVal = RawBytes[BytesLoaded - 1]; in FoldReinterpretLoadFromConst()
639 ResultVal |= RawBytes[BytesLoaded - 1 - i]; in FoldReinterpretLoadFromConst()
642 ResultVal = RawBytes[0]; in FoldReinterpretLoadFromConst()
645 ResultVal |= RawBytes[i]; in FoldReinterpretLoadFromConst()
676 SmallVector<unsigned char, 256> RawBytes(static_cast<size_t>(NBytes)); in ReadByteArrayFromGlobal() local
677 unsigned char *CurPtr = RawBytes.data(); in ReadByteArrayFromGlobal()
682 return ConstantDataArray::get(GV->getContext(), RawBytes); in ReadByteArrayFromGlobal()