Searched refs:ResolveConstants (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.2-release/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.h39 /// ResolveConstants - As we resolve forward-referenced constants, we add
47 ResolveConstantsTy ResolveConstants; member in class:llvm::BitcodeReaderValueList
52 assert(ResolveConstants.empty() && "Constants not resolved?");
63 assert(ResolveConstants.empty() && "Constants not resolved?");
H A DBitcodeReader.cpp250 ResolveConstants.push_back(std::make_pair(PHC, Idx));
305 std::sort(ResolveConstants.begin(), ResolveConstants.end());
309 while (!ResolveConstants.empty()) {
310 Value *RealVal = operator[](ResolveConstants.back().second);
311 Constant *Placeholder = ResolveConstants.back().first;
312 ResolveConstants.pop_back();
341 // Otherwise, look up the placeholder in ResolveConstants.
343 std::lower_bound(ResolveConstants.begin(), ResolveConstants
[all...]

Completed in 95 milliseconds