We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#include <stdint.h>
// ------------------- Function Prototypes --------------------
void sub_7FF673237C10(int64_t a1, int32_t a2);
// ------------------------ Functions -------------------------
// Address range: 0x7ff673237c10 - 0x7ff673237c8f void sub_7FF673237C10(int64_t a1, int32_t a2) { // 0x7ff673237c10 int64_t v1; // 0x7ff673237c10 int64_t v2 = *(int64_t *)(v1 + 16); // 0x7ff673237c10 int64_t v3 = *(int64_t )(v2 + 8); // 0x7ff673237c17 int64_t v4 = v2; // 0x7ff673237c1f if ((char *)(v3 + 25) == 0) { uint32_t v5 = (int32_t)v1; // 0x7ff673237c21 int64_t v6 = v2; int64_t v7 = v3; uint32_t v8 = *(int32_t *)(v7 + 32); // 0x7ff673237c21 v6 = v8 >= v5 ? v7 : v6; int64_t v9 = *(int64_t )(v8 >= v5 ? v7 : v7 + 16); v4 = v6; while ((char *)(v9 + 25) == 0) { // 0x7ff673237c21 v7 = v9; v8 = *(int32_t *)(v7 + 32); v6 = v8 >= v5 ? v7 : v6; v9 = *(int64_t )(v8 >= v5 ? v7 : v7 + 16); v4 = v6; } } int64_t v10 = v4; if ((char *)(v10 + 25) == 0) { // 0x7ff673237c3f if (!((v10 == v2 | *(int32_t *)(v10 + 32) > (int32_t)v1))) { // 0x7ff673237c4a return; } } int64_t v11 = *(int64_t )((int64_t )(v1 + 32) + 8); // 0x7ff673237c56 if ((char *)(v11 + 25) != 0) { // 0x7ff673237c4a return; } int64_t v12 = v11; uint32_t v13 = *(int32_t *)(v12 + 32); // 0x7ff673237c60 int64_t v14 = *(int64_t )(v13 >= (int32_t)v1 ? v12 : v12 + 16); while ((char *)(v14 + 25) == 0) { // 0x7ff673237c60 v12 = v14; v13 = *(int32_t *)(v12 + 32); v14 = *(int64_t *)(v13 >= (int32_t)v1 ? v12 : v12 + 16); } }
Could the decompiler be producing very incomplete and erroneous output? For instance, why is parameter usage not specified in the code above?
IDA PRO 7.7 Retdec 1.0-ida77 Windows 10
The text was updated successfully, but these errors were encountered:
No branches or pull requests
#include <stdint.h>
// ------------------- Function Prototypes --------------------
void sub_7FF673237C10(int64_t a1, int32_t a2);
// ------------------------ Functions -------------------------
// Address range: 0x7ff673237c10 - 0x7ff673237c8f
void sub_7FF673237C10(int64_t a1, int32_t a2) {
// 0x7ff673237c10
int64_t v1; // 0x7ff673237c10
int64_t v2 = *(int64_t *)(v1 + 16); // 0x7ff673237c10
int64_t v3 = *(int64_t )(v2 + 8); // 0x7ff673237c17
int64_t v4 = v2; // 0x7ff673237c1f
if ((char *)(v3 + 25) == 0) {
uint32_t v5 = (int32_t)v1; // 0x7ff673237c21
int64_t v6 = v2;
int64_t v7 = v3;
uint32_t v8 = *(int32_t *)(v7 + 32); // 0x7ff673237c21
v6 = v8 >= v5 ? v7 : v6;
int64_t v9 = *(int64_t )(v8 >= v5 ? v7 : v7 + 16);
v4 = v6;
while ((char *)(v9 + 25) == 0) {
// 0x7ff673237c21
v7 = v9;
v8 = *(int32_t *)(v7 + 32);
v6 = v8 >= v5 ? v7 : v6;
v9 = *(int64_t )(v8 >= v5 ? v7 : v7 + 16);
v4 = v6;
}
}
int64_t v10 = v4;
if ((char *)(v10 + 25) == 0) {
// 0x7ff673237c3f
if (!((v10 == v2 | *(int32_t *)(v10 + 32) > (int32_t)v1))) {
// 0x7ff673237c4a
return;
}
}
int64_t v11 = *(int64_t )((int64_t )(v1 + 32) + 8); // 0x7ff673237c56
if ((char *)(v11 + 25) != 0) {
// 0x7ff673237c4a
return;
}
int64_t v12 = v11;
uint32_t v13 = *(int32_t *)(v12 + 32); // 0x7ff673237c60
int64_t v14 = *(int64_t )(v13 >= (int32_t)v1 ? v12 : v12 + 16);
while ((char *)(v14 + 25) == 0) {
// 0x7ff673237c60
v12 = v14;
v13 = *(int32_t *)(v12 + 32);
v14 = *(int64_t *)(v13 >= (int32_t)v1 ? v12 : v12 + 16);
}
}
Could the decompiler be producing very incomplete and erroneous output? For instance, why is parameter usage not specified in the code above?
IDA PRO 7.7
Retdec 1.0-ida77
Windows 10
The text was updated successfully, but these errors were encountered: