Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception_win.cpp887 size_t instructions_length = kBranchLength; in OverrideFunctionWithTrampoline() local
894 instructions_length = RoundUpToInstrBoundary(kBranchLength, old_func); in OverrideFunctionWithTrampoline()
895 if (!instructions_length) in OverrideFunctionWithTrampoline()
899 uptr trampoline_length = instructions_length + kDirectBranchLength; in OverrideFunctionWithTrampoline()
903 if (!CopyInstructions(trampoline, old_func, instructions_length)) in OverrideFunctionWithTrampoline()
905 WriteDirectBranch(trampoline + instructions_length, in OverrideFunctionWithTrampoline()
906 old_func + instructions_length); in OverrideFunctionWithTrampoline()
925 uptr patch_length = instructions_length + padding_length; in OverrideFunctionWithTrampoline()