Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
DDwarfCompileUnit.cpp809 APInt RawBytes = Entry.getConstantFP()->getValueAPF().bitcastToAPInt(); in constructVariableDIEImpl() local
810 if (RawBytes.getBitWidth() > 64) in constructVariableDIEImpl()
812 DwarfExpr.addUnsignedConstant(RawBytes.getZExtValue()); in constructVariableDIEImpl()
814 APInt RawBytes = Entry.getConstantInt()->getValue(); in constructVariableDIEImpl() local
815 if (RawBytes.getBitWidth() > 64) in constructVariableDIEImpl()
817 DwarfExpr.addUnsignedConstant(RawBytes.getZExtValue()); in constructVariableDIEImpl()
/openbsd/src/gnu/llvm/llvm/lib/Analysis/
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()