Searched defs:FnStart (Results 1 - 4 of 4) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
H A DJITDebugRegisterer.h59 uint8_t *FnStart; member in struct:llvm::DebugInfo
64 DebugInfo() : FnStart(0), FnEnd(0), EhStart(0), EhEnd(0) {}
H A DOProfileJITEventListener.cpp47 void *FnStart, size_t FnSize,
105 const Function &F, void *FnStart, size_t FnSize,
107 assert(F.hasName() && FnStart != 0 && "Bad symbol to add");
109 reinterpret_cast<uint64_t>(FnStart),
110 FnStart, FnSize) == -1) {
113 << FnStart << "-" << ((char*)FnStart + FnSize) << "]\n");
137 line_info.vma = reinterpret_cast<uintptr_t>(FnStart);
152 LineInfo[0].vma = reinterpret_cast<uintptr_t>(FnStart);
154 if (op_write_debug_line_info(Agent, FnStart,
104 NotifyFunctionEmitted( const Function &F, void *FnStart, size_t FnSize, const EmittedFunctionDetails &Details) argument
165 NotifyFreeingMachineCode(void *FnStart) argument
[all...]
H A DJITEmitter.cpp828 // FnStart is the start of the text, not the start of the constant pool and
830 uint8_t *FnStart = local
919 NumBytes += FnEnd-FnStart;
922 sys::Memory::InvalidateInstructionCache(FnStart, FnEnd-FnStart);
924 TheJIT->NotifyFunctionEmitted(*F.getFunction(), FnStart, FnEnd-FnStart,
930 DEBUG(dbgs() << "JIT: Finished CodeGen of [" << (void*)FnStart
932 << ": " << (FnEnd-FnStart) << " bytes of text, "
944 dbgs() << sys::disassembleBuffer(FnStart, FnEn
[all...]
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp79 uintptr_t FnStart,
86 Result.method_load_address = reinterpret_cast<void*>(FnStart);
212 void* FnStart = const_cast<void*>(*FI); local
213 MethodIDMap::iterator MI = MethodIDs.find(FnStart);
76 FunctionDescToIntelJITFormat( IntelJITEventsWrapper& Wrapper, const char* FnName, uintptr_t FnStart, size_t FnSize) argument

Completed in 154 milliseconds