HomeSort by relevance Sort by last modified time
    Searched refs:ResolveConstants (Results 1 - 6 of 6) sorted by null

  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.h 43 /// ResolveConstants - As we resolve forward-referenced constants, we add
51 ResolveConstantsTy ResolveConstants;
56 assert(ResolveConstants.empty() && "Constants not resolved?");
67 assert(ResolveConstants.empty() && "Constants not resolved?");
BitcodeReader.cpp 264 ResolveConstants.push_back(std::make_pair(PHC, Idx));
319 std::sort(ResolveConstants.begin(), ResolveConstants.end());
323 while (!ResolveConstants.empty()) {
324 Value *RealVal = operator[](ResolveConstants.back().second);
325 Constant *Placeholder = ResolveConstants.back().first;
326 ResolveConstants.pop_back();
355 // Otherwise, look up the placeholder in ResolveConstants.
357 std::lower_bound(ResolveConstants.begin(), ResolveConstants.end()
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.h 43 /// ResolveConstants - As we resolve forward-referenced constants, we add
51 ResolveConstantsTy ResolveConstants;
56 assert(ResolveConstants.empty() && "Constants not resolved?");
67 assert(ResolveConstants.empty() && "Constants not resolved?");
BitcodeReader.cpp 544 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.end()
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.h 38 /// ResolveConstants - As we resolve forward-referenced constants, we add
46 ResolveConstantsTy ResolveConstants;
51 assert(ResolveConstants.empty() && "Constants not resolved?");
62 assert(ResolveConstants.empty() && "Constants not resolved?");
BitcodeReader.cpp 247 ResolveConstants.push_back(std::make_pair(PHC, Idx));
302 std::sort(ResolveConstants.begin(), ResolveConstants.end());
306 while (!ResolveConstants.empty()) {
307 Value *RealVal = operator[](ResolveConstants.back().second);
308 Constant *Placeholder = ResolveConstants.back().first;
309 ResolveConstants.pop_back();
338 // Otherwise, look up the placeholder in ResolveConstants.
340 std::lower_bound(ResolveConstants.begin(), ResolveConstants.end()
    [all...]

Completed in 507 milliseconds