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.cpp265 ResolveConstants.push_back(std::make_pair(PHC, Idx));
320 std::sort(ResolveConstants.begin(), ResolveConstants.end());
324 while (!ResolveConstants.empty()) {
325 Value *RealVal = operator[](ResolveConstants.back().second);
326 Constant *Placeholder = ResolveConstants.back().first;
327 ResolveConstants.pop_back();
356 // Otherwise, look up the placeholder in ResolveConstants.
358 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.cpp544 ResolveConstants.push_back(std::make_pair(PHC, Idx));
599 std::sort(ResolveConstants.begin(), ResolveConstants.end());
603 while (!ResolveConstants.empty()) {
604 Value *RealVal = operator[](ResolveConstants.back().second);
605 Constant *Placeholder = ResolveConstants.back().first;
606 ResolveConstants.pop_back();
635 // Otherwise, look up the placeholder in ResolveConstants.
637 std::lower_bound(ResolveConstants.begin(), ResolveConstants
[all...]

Completed in 28 milliseconds