blob: 1b5b2bf1ff14e8aa0d45eaa0acddcaa3ceef9dda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
//===-- DeserializeAPInt.cpp - Deserialization for APInts ------*- C++ -*--===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file implements deserialization of APInts.
//
//===----------------------------------------------------------------------===//
#include "llvm/ADT/APInt.h"
#include "llvm/Bitcode/Deserialize.h"
#include <cassert>
using namespace llvm;
void APInt::Read(Deserializer& D) {
BitWidth = D.ReadInt();
if (isSingleWord())
VAL = D.ReadInt();
else {
uint32_t NumWords = D.ReadInt();
assert (NumWords > 1);
pVal = new uint64_t[NumWords];
assert (pVal && "Allocation in deserialization of APInt failed.");
for (unsigned i = 0; i < NumWords; ++i)
pVal[i] = D.ReadInt();
}
}
|