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.cpp842 APInt RawBytes = Entry.getConstantFP()->getValueAPF().bitcastToAPInt(); in applyConcreteDbgVariableAttributes() local
843 if (RawBytes.getBitWidth() > 64) in applyConcreteDbgVariableAttributes()
845 DwarfExpr.addUnsignedConstant(RawBytes.getZExtValue()); in applyConcreteDbgVariableAttributes()
847 APInt RawBytes = Entry.getConstantInt()->getValue(); in applyConcreteDbgVariableAttributes() local
848 if (RawBytes.getBitWidth() > 64) in applyConcreteDbgVariableAttributes()
850 DwarfExpr.addUnsignedConstant(RawBytes.getZExtValue()); in applyConcreteDbgVariableAttributes()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp605 unsigned char RawBytes[32] = {0}; in FoldReinterpretLoadFromConst() local
606 unsigned char *CurPtr = RawBytes; in FoldReinterpretLoadFromConst()
621 ResultVal = RawBytes[BytesLoaded - 1]; in FoldReinterpretLoadFromConst()
624 ResultVal |= RawBytes[BytesLoaded - 1 - i]; in FoldReinterpretLoadFromConst()
627 ResultVal = RawBytes[0]; in FoldReinterpretLoadFromConst()
630 ResultVal |= RawBytes[i]; in FoldReinterpretLoadFromConst()
661 SmallVector<unsigned char, 256> RawBytes(static_cast<size_t>(NBytes)); in ReadByteArrayFromGlobal() local
662 unsigned char *CurPtr = RawBytes.data(); in ReadByteArrayFromGlobal()
667 return ConstantDataArray::get(GV->getContext(), RawBytes); in ReadByteArrayFromGlobal()