Home
last modified time | relevance | path

Searched refs:MBBLocations (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/CodeGen/
DObjectCodeEmitter.cpp104 if (MBBLocations.size() <= (unsigned)MBB->getNumber()) in StartMachineBasicBlock()
105 MBBLocations.resize((MBB->getNumber()+1)*2); in StartMachineBasicBlock()
106 MBBLocations[MBB->getNumber()] = getCurrentPCOffset(); in StartMachineBasicBlock()
114 assert(MBBLocations.size() > (unsigned)MBB->getNumber() && in getMachineBasicBlockAddress()
115 MBBLocations[MBB->getNumber()] && "MBB not emitted!"); in getMachineBasicBlockAddress()
116 return MBBLocations[MBB->getNumber()]; in getMachineBasicBlockAddress()
DELFCodeEmitter.cpp135 MBBLocations.clear(); in finishFunction()
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
DJITEmitter.cpp299 std::vector<uintptr_t> MBBLocations; member in __anona707f8570111::JITEmitter
422 if (MBBLocations.size() <= (unsigned)MBB->getNumber()) in StartMachineBasicBlock()
423 MBBLocations.resize((MBB->getNumber()+1)*2); in StartMachineBasicBlock()
424 MBBLocations[MBB->getNumber()] = getCurrentPCValue(); in StartMachineBasicBlock()
436 assert(MBBLocations.size() > (unsigned)MBB->getNumber() && in getMachineBasicBlockAddress()
437 MBBLocations[MBB->getNumber()] && "MBB not emitted!"); in getMachineBasicBlockAddress()
438 return MBBLocations[MBB->getNumber()]; in getMachineBasicBlockAddress()
810 MBBLocations.clear(); in startFunction()
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DObjectCodeEmitter.h38 std::vector<uintptr_t> MBBLocations; variable