gpt4 book ai didi

c - 分配给变量时指针的地址发生变化

转载 作者:太空宇宙 更新时间:2023-11-03 23:58:33 28 4
gpt4 key购买 nike

我正在为一个学校项目创建一个替换内存管理器,我无法将 main.c 文件中变量的内存地址与我的节点 -> 起始地址进行比较,该地址位于我的 mem.c 文件中。内存地址的最后 8 位数字看起来是相同的,但是节点 -> 起始地址通常会在内存地址前面加上额外的 4 位数字。

TLDR 我需要测试节点 -> 起始地址 == x 的内存地址,并且它不工作

printf ("变量 x: %p\n", x );输出 = 0x3ee30671
printf("新节点起始地址: %p\n", new_node -> start_address );输出 = 0x56223ee30671

主程序

#include <stdio.h>

#define USE_REPLACEMENT_MANAGER 1

#if USE_REPLACEMENT_MANAGER


#undef malloc
#define malloc myMalloc

#undef free
#define free myFree

#include "replacement.h"

#else

#include <stdlib.h>
void* (*f) (size_t s) = malloc;

#endif

int main( int argc, const char * argv[] ){
char * x = (char *) malloc(16);
printf ("var x: %p \n", x );
free(x);
}

替换.c

#include <stdio.h>
#include "mem.h"
#include "replacement.h"

void* myMalloc( size_t size){
return getAddress ( size);
}

void myFree( void * ptr ){
printf("free address: %p \n", ptr);
mmFree( ptr );
}

替换.h

#ifdef REPLACEMENT_MANAGER_INCLUDED
#define REPLACEMENT_MANAGER_INCLUDED

void* myMalloc( size_t size);
void myFree( void * ptr );
void printMyMap ( void );

#endif

内存.c

#include <stdio.h>
#include <stdlib.h>
#include "mem.h"

typedef struct Node{
int type;
size_t size;
char* start_address;
struct Node* next;
struct Node* prev;
}Node;

/*
* PRIVATE FUNCTIONS
*/
void init_heap( void );

/*
* PRIVATE FILE LEVEL GLOBAL VARIABLES
*/
#define HEAP_SIZE 1000
char * heap = NULL;
Node* head = NULL;


// FUNCTION THAT ALLOCATES SPACE ON REPLACEMENT HEAP AND RETURNS A POINTER TO THE START ADDRESS
void* getAddress ( size_t size ){
if ( heap == NULL ){
init_heap();
}
Node * curr = head;
while ( curr -> next != NULL ){
if ( ( curr -> size < size ) && ( curr -> type == 0 ) ){
return curr -> start_address;
} else curr = curr -> next;
}
Node* new_node = (Node *) malloc( sizeof(Node) );
new_node -> type = 1;
new_node -> size = size;
new_node -> start_address = ( curr -> start_address ) + ( curr -> size ) + 1;
new_node -> next = NULL;
new_node -> prev = curr;

curr -> next = new_node;

printf("new node start address: %p \n", new_node -> start_address );
return new_node -> start_address;
}

// FUNCTION THAT INITIALIZES REPLACEMENT HEAP AND THE HEAD OF THE LINKED LIST
void init_heap( void ){
heap = malloc( HEAP_SIZE );
printf("heap : %p \n",heap);
head = (Node*) malloc( sizeof(Node) );
head -> type = 1;
head -> size = 0;
head -> start_address = heap;
head -> next = NULL;
head -> prev = NULL;
}

void mmFree( void * ptr ){
Node * curr = head;
printf( "%p \n", (char*) curr -> start_address );
while ( curr -> next != NULL ){
if ( curr -> start_address == ptr ){
printf( "I NEED THIS TO PRINT" );
curr -> type = 0;
break;
} else curr = curr -> next;
}

Node * p = curr -> prev;
Node * n = curr -> next;

if ( ( p != NULL ) && ( p -> type == 0 ) ){
curr -> start_address = p -> start_address;
curr -> size = ( curr -> size ) + ( p -> size );
p -> prev -> next = curr;
curr -> prev = p -> prev;
free ( p );
}

if ( ( n != NULL ) && (n -> type == 0) ){
curr -> size = ( curr -> size ) + ( n -> size );
if ( n -> next != NULL ){
n -> next -> prev = curr;
curr -> next = n -> next;
}else curr -> next = NULL;
free ( n );
}

}

内存.h

#ifdef MEM_INCLUDED
#define MEM_INCLUDED

void mmFree( void * ptr);

void* getAddress ( size_t size );

void printHeapMap( void );

#endif

最佳答案

始终启用警告并阅读它们。

当我使用“g++ -std=c11 -Wall -Wextra *.c -o main”编译你的代码时(在 main 中添加缺少的分号之后),我收到了很多关于隐式函数声明和整数到指针的转换,开始于:

main.c: In function ‘main’:
main.c:9:20: warning: implicit declaration of function ‘myMalloc’; did you mean ‘malloc’? [-Wimplicit-function-declaration]
#define malloc myMalloc
^
main.c:24:25: note: in expansion of macro ‘malloc’
char * x = (char *) malloc(16);
^~~~~~
main.c:24:16: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
char * x = (char *) malloc(16);
^

在 C89 中,当调用一个没有被声明的函数时,C 隐式地假设一个像 extern int func_name(); 这样的函数声明,但是如果函数定义实际上没有使用返回类型与 int 兼容,行为未定义。自 C99 以来,调用未声明的函数是格式错误的,但 gcc 仍然允许它使用旧规则和警告,即使指定了较新的标准版本也是如此。

因此可能发生的情况是,编译器在某些时候假设您的函数实际上返回指针,返回 int 值,导致仅使用了一些值位。

因此,确保每个被调用函数的声明都是可见的,通常是通过编写并包含正确的 header 。

关于c - 分配给变量时指针的地址发生变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54835687/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com