OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ResolveConstants
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Bitcode/Reader/
BitcodeReader.h
40
///
ResolveConstants
- As we resolve forward-referenced constants, we add
48
ResolveConstantsTy
ResolveConstants
;
53
assert(
ResolveConstants
.empty() && "Constants not resolved?");
64
assert(
ResolveConstants
.empty() && "Constants not resolved?");
BitcodeReader.cpp
284
ResolveConstants
.push_back(std::make_pair(PHC, Idx));
339
std::sort(
ResolveConstants
.begin(),
ResolveConstants
.end());
343
while (!
ResolveConstants
.empty()) {
344
Value *RealVal = operator[](
ResolveConstants
.back().second);
345
Constant *Placeholder =
ResolveConstants
.back().first;
346
ResolveConstants
.pop_back();
375
// Otherwise, look up the placeholder in
ResolveConstants
.
377
std::lower_bound(
ResolveConstants
.begin(),
ResolveConstants
.end()
[
all
...]
Completed in 115 milliseconds