MCPcopy Create free account
hub / github.com/GANGE666/xVMP / readWideAPInt

Function readWideAPInt

src/lib/Bitcode/Reader/BitcodeReader.cpp:2145–2151  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2143}
2144
2145static APInt readWideAPInt(ArrayRef<uint64_t> Vals, unsigned TypeBits) {
2146 SmallVector<uint64_t, 8> Words(Vals.size());
2147 transform(Vals, Words.begin(),
2148 BitcodeReader::decodeSignRotatedValue);
2149
2150 return APInt(TypeBits, Words);
2151}
2152
2153Error BitcodeReader::parseConstants() {
2154 if (Stream.EnterSubBlock(bitc::CONSTANTS_BLOCK_ID))

Callers 2

parseConstantsMethod · 0.85
parseFunctionBodyMethod · 0.85

Calls 4

transformFunction · 0.50
APIntClass · 0.50
sizeMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected