OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MBBLocations
(Results
1 - 4
of
4
) sorted by null
/external/swiftshader/third_party/LLVM/lib/CodeGen/
ObjectCodeEmitter.cpp
104
if (
MBBLocations
.size() <= (unsigned)MBB->getNumber())
105
MBBLocations
.resize((MBB->getNumber()+1)*2);
106
MBBLocations
[MBB->getNumber()] = getCurrentPCOffset();
114
assert(
MBBLocations
.size() > (unsigned)MBB->getNumber() &&
115
MBBLocations
[MBB->getNumber()] && "MBB not emitted!");
116
return
MBBLocations
[MBB->getNumber()];
ELFCodeEmitter.cpp
135
MBBLocations
.clear();
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
ObjectCodeEmitter.h
35
///
MBBLocations
- This vector is a mapping from MBB ID's to their address.
38
std::vector<uintptr_t>
MBBLocations
;
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JITEmitter.cpp
296
///
MBBLocations
- This vector is a mapping from MBB ID's to their address.
299
std::vector<uintptr_t>
MBBLocations
;
422
if (
MBBLocations
.size() <= (unsigned)MBB->getNumber())
423
MBBLocations
.resize((MBB->getNumber()+1)*2);
424
MBBLocations
[MBB->getNumber()] = getCurrentPCValue();
436
assert(
MBBLocations
.size() > (unsigned)MBB->getNumber() &&
437
MBBLocations
[MBB->getNumber()] && "MBB not emitted!");
438
return
MBBLocations
[MBB->getNumber()];
810
MBBLocations
.clear();
[
all
...]
Completed in 96 milliseconds