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

/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.h43 /// ResolveConstants - As we resolve forward-referenced constants, we add
51 ResolveConstantsTy ResolveConstants; member in class:llvm_2_7::BitcodeReaderValueList
56 assert(ResolveConstants.empty() && "Constants not resolved?");
67 assert(ResolveConstants.empty() && "Constants not resolved?");
H A DBitcodeReader.cpp256 ResolveConstants.push_back(std::make_pair(PHC, Idx));
311 std::sort(ResolveConstants.begin(), ResolveConstants.end());
315 while (!ResolveConstants.empty()) {
316 Value *RealVal = operator[](ResolveConstants.back().second);
317 Constant *Placeholder = ResolveConstants.back().first;
318 ResolveConstants.pop_back();
348 // Otherwise, look up the placeholder in ResolveConstants.
350 std::lower_bound(ResolveConstants.begin(), ResolveConstants
[all...]
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.h43 /// ResolveConstants - As we resolve forward-referenced constants, we add
51 ResolveConstantsTy ResolveConstants; member in class:llvm_3_0::BitcodeReaderValueList
56 assert(ResolveConstants.empty() && "Constants not resolved?");
67 assert(ResolveConstants.empty() && "Constants not resolved?");
H A DBitcodeReader.cpp535 ResolveConstants.push_back(std::make_pair(PHC, Idx));
590 std::sort(ResolveConstants.begin(), ResolveConstants.end());
594 while (!ResolveConstants.empty()) {
595 Value *RealVal = operator[](ResolveConstants.back().second);
596 Constant *Placeholder = ResolveConstants.back().first;
597 ResolveConstants.pop_back();
627 // Otherwise, look up the placeholder in ResolveConstants.
629 std::lower_bound(ResolveConstants.begin(), ResolveConstants
[all...]

Completed in 349 milliseconds