Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/projects/libunwind/src/
HDCompactUnwinder.hpp137 uint32_t permunreg[6]; in stepWithCompactEncodingFrameless() local
140 permunreg[0] = permutation / 120; in stepWithCompactEncodingFrameless()
141 permutation -= (permunreg[0] * 120); in stepWithCompactEncodingFrameless()
142 permunreg[1] = permutation / 24; in stepWithCompactEncodingFrameless()
143 permutation -= (permunreg[1] * 24); in stepWithCompactEncodingFrameless()
144 permunreg[2] = permutation / 6; in stepWithCompactEncodingFrameless()
145 permutation -= (permunreg[2] * 6); in stepWithCompactEncodingFrameless()
146 permunreg[3] = permutation / 2; in stepWithCompactEncodingFrameless()
147 permutation -= (permunreg[3] * 2); in stepWithCompactEncodingFrameless()
148 permunreg[4] = permutation; in stepWithCompactEncodingFrameless()
[all …]
/NextBSD/contrib/llvm/tools/lldb/source/Symbol/
HDCompactUnwindInfo.cpp845 int permunreg[6] = {0, 0, 0, 0, 0, 0}; in CreateUnwindPlan_x86_64() local
854 permunreg[0] = permutation/120; // 120 == 5! in CreateUnwindPlan_x86_64()
855 permutation -= (permunreg[0]*120); in CreateUnwindPlan_x86_64()
856 permunreg[1] = permutation/24; // 24 == 4! in CreateUnwindPlan_x86_64()
857 permutation -= (permunreg[1]*24); in CreateUnwindPlan_x86_64()
858 permunreg[2] = permutation/6; // 6 == 3! in CreateUnwindPlan_x86_64()
859 permutation -= (permunreg[2]*6); in CreateUnwindPlan_x86_64()
860 permunreg[3] = permutation/2; // 2 == 2! in CreateUnwindPlan_x86_64()
861 permutation -= (permunreg[3]*2); in CreateUnwindPlan_x86_64()
862 permunreg[4] = permutation; // 1 == 1! in CreateUnwindPlan_x86_64()
[all …]
/NextBSD/contrib/llvm/tools/lldb/tools/compact-unwind/
HDcompact-unwind-dumper.c520 int permunreg[6]; in print_encoding_x86_64() local
529 permunreg[0] = permutation/120; // 120 == 5! in print_encoding_x86_64()
530 permutation -= (permunreg[0]*120); in print_encoding_x86_64()
531 permunreg[1] = permutation/24; // 24 == 4! in print_encoding_x86_64()
532 permutation -= (permunreg[1]*24); in print_encoding_x86_64()
533 permunreg[2] = permutation/6; // 6 == 3! in print_encoding_x86_64()
534 permutation -= (permunreg[2]*6); in print_encoding_x86_64()
535 permunreg[3] = permutation/2; // 2 == 2! in print_encoding_x86_64()
536 permutation -= (permunreg[3]*2); in print_encoding_x86_64()
537 permunreg[4] = permutation; // 1 == 1! in print_encoding_x86_64()
[all …]