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.cpp1170 size_t instructions_length = kBranchLength; in OverrideFunctionWithTrampoline() local
1177 instructions_length = RoundUpToInstrBoundary(kBranchLength, old_func); in OverrideFunctionWithTrampoline()
1178 if (!instructions_length) in OverrideFunctionWithTrampoline()
1182 uptr trampoline_length = instructions_length + kDirectBranchLength; in OverrideFunctionWithTrampoline()
1186 if (!CopyInstructions(trampoline, old_func, instructions_length)) in OverrideFunctionWithTrampoline()
1188 WriteDirectBranch(trampoline + instructions_length, in OverrideFunctionWithTrampoline()
1189 old_func + instructions_length); in OverrideFunctionWithTrampoline()
1208 uptr patch_length = instructions_length + padding_length; in OverrideFunctionWithTrampoline()