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

/external/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileJITEventListener.cpp51 void *FnStart, size_t FnSize,
93 const Function &F, void *FnStart, size_t FnSize,
95 assert(F.hasName() && FnStart != 0 && "Bad symbol to add");
97 reinterpret_cast<uint64_t>(FnStart),
98 FnStart, FnSize) == -1) {
101 << FnStart << "-" << ((char*)FnStart + FnSize) << "]\n");
125 line_info.vma = reinterpret_cast<uintptr_t>(FnStart);
140 LineInfo[0].vma = reinterpret_cast<uintptr_t>(FnStart);
142 if (Wrapper.op_write_debug_line_info(FnStart, LineInf
92 NotifyFunctionEmitted( const Function &F, void *FnStart, size_t FnSize, const JITEvent_EmittedFunctionDetails &Details) argument
153 NotifyFreeingMachineCode(void *FnStart) argument
[all...]
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp53 void *FnStart, size_t FnSize,
74 uintptr_t FnStart,
81 Result.method_load_address = reinterpret_cast<void*>(FnStart);
95 const Function &F, void *FnStart, size_t FnSize,
99 reinterpret_cast<uint64_t>(FnStart),
133 reinterpret_cast<uintptr_t>(FnStart),
156 MethodIDs[FnStart] = FunctionMessage.method_id;
159 void IntelJITEventListener::NotifyFreeingMachineCode(void *FnStart) { argument
160 MethodIDMap::iterator I = MethodIDs.find(FnStart);
71 FunctionDescToIntelJITFormat( IntelJITEventsWrapper& Wrapper, const char* FnName, uintptr_t FnStart, size_t FnSize) argument
94 NotifyFunctionEmitted( const Function &F, void *FnStart, size_t FnSize, const EmittedFunctionDetails &Details) argument
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp829 // FnStart is the start of the text, not the start of the constant pool and
831 uint8_t *FnStart = local
920 NumBytes += FnEnd-FnStart;
923 sys::Memory::InvalidateInstructionCache(FnStart, FnEnd-FnStart);
925 TheJIT->NotifyFunctionEmitted(*F.getFunction(), FnStart, FnEnd-FnStart,
931 DEBUG(dbgs() << "JIT: Finished CodeGen of [" << (void*)FnStart
933 << ": " << (FnEnd-FnStart) << " bytes of text, "
945 dbgs() << sys::disassembleBuffer(FnStart, FnEn
[all...]

Completed in 79 milliseconds