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

/external/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileJITEventListener.cpp53 void *FnStart, size_t FnSize,
99 const Function &F, void *FnStart, size_t FnSize,
101 assert(F.hasName() && FnStart != 0 && "Bad symbol to add");
103 reinterpret_cast<uint64_t>(FnStart),
104 FnStart, FnSize) == -1) {
107 << FnStart << "-" << ((char*)FnStart + FnSize) << "]\n");
131 line_info.vma = reinterpret_cast<uintptr_t>(FnStart);
146 LineInfo[0].vma = reinterpret_cast<uintptr_t>(FnStart);
148 if (Wrapper.op_write_debug_line_info(FnStart, LineInf
98 NotifyFunctionEmitted( const Function &F, void *FnStart, size_t FnSize, const JITEvent_EmittedFunctionDetails &Details) argument
159 NotifyFreeingMachineCode(void *FnStart) argument
[all...]
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp61 void *FnStart, size_t FnSize,
97 uintptr_t FnStart,
104 Result.method_load_address = reinterpret_cast<void*>(FnStart);
118 const Function &F, void *FnStart, size_t FnSize,
122 reinterpret_cast<uint64_t>(FnStart),
156 reinterpret_cast<uintptr_t>(FnStart),
179 MethodIDs[FnStart] = FunctionMessage.method_id;
182 void IntelJITEventListener::NotifyFreeingMachineCode(void *FnStart) { argument
183 MethodIDMap::iterator I = MethodIDs.find(FnStart);
274 void* FnStart local
94 FunctionDescToIntelJITFormat( IntelJITEventsWrapper& Wrapper, const char* FnName, uintptr_t FnStart, size_t FnSize) argument
117 NotifyFunctionEmitted( const Function &F, void *FnStart, size_t FnSize, const EmittedFunctionDetails &Details) argument
[all...]
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp818 // FnStart is the start of the text, not the start of the constant pool and
820 uint8_t *FnStart = local
909 NumBytes += FnEnd-FnStart;
912 sys::Memory::InvalidateInstructionCache(FnStart, FnEnd-FnStart);
914 TheJIT->NotifyFunctionEmitted(*F.getFunction(), FnStart, FnEnd-FnStart,
920 DEBUG(dbgs() << "JIT: Finished CodeGen of [" << (void*)FnStart
922 << ": " << (FnEnd-FnStart) << " bytes of text, "
934 dbgs() << sys::disassembleBuffer(FnStart, FnEn
[all...]

Completed in 862 milliseconds