Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception_win.cpp454 static uptr AllocateMemoryForTrampoline(uptr func_address, size_t size) { in AllocateMemoryForTrampoline() argument
456 uptr min_addr = func_address - kTrampolineRangeLimit; in AllocateMemoryForTrampoline()
457 uptr max_addr = func_address + kTrampolineRangeLimit - size; in AllocateMemoryForTrampoline()
469 (LPCWSTR)func_address, &module)) { in AllocateMemoryForTrampoline()
480 if (min_addr > func_address) in AllocateMemoryForTrampoline()
482 if (max_addr < func_address) in AllocateMemoryForTrampoline()
497 void *content = AllocateTrampolineRegion(min_addr, max_addr, func_address, in AllocateMemoryForTrampoline()