Deprecate ptr_compat_uint and ptr_compat_int in util.h

This commit is contained in:
Tim Wojtulewicz 2020-08-05 14:42:28 -07:00
parent 289c03d386
commit 8862b585fa
6 changed files with 14 additions and 15 deletions

View file

@ -31,7 +31,7 @@ void CCL::Negate()
void CCL::Add(int sym)
{
ptr_compat_int sym_p = ptr_compat_int(sym);
auto sym_p = static_cast<std::intptr_t>(sym);
// Check to see if the character is already in the ccl.
for ( auto sym : *syms )

View file

@ -2,12 +2,12 @@
#pragma once
#include <cstdint>
#include <vector>
#include "util.h" // for ptr_compat_int
namespace zeek::detail {
using int_list = std::vector<ptr_compat_int>;
using int_list = std::vector<std::intptr_t>;
class CCL {
public:

View file

@ -4,6 +4,7 @@
#include "EquivClass.h"
#include "CCL.h"
#include "util.h"
namespace zeek::detail {

View file

@ -46,7 +46,7 @@ extern YYLTYPE yylloc; // holds start line and column of token
extern zeek::EnumType* cur_enum_type;
// Track the @if... depth.
ptr_compat_int current_depth = 0;
std::intptr_t current_depth = 0;
zeek::detail::int_list if_stack;

View file

@ -1253,8 +1253,8 @@ uint64_t rand64bit()
int int_list_cmp(const void* v1, const void* v2)
{
ptr_compat_int i1 = *(ptr_compat_int*) v1;
ptr_compat_int i2 = *(ptr_compat_int*) v2;
std::intptr_t i1 = *(std::intptr_t*) v1;
std::intptr_t i2 = *(std::intptr_t*) v2;
if ( i1 < i2 )
return -1;

View file

@ -86,16 +86,14 @@ typedef uint64_t bro_uint_t;
// pointer size. They can be cast safely to a pointer, e.g. in Lists,
// which represent their entities as void* pointers.
//
#define PRI_PTR_COMPAT_INT PRIdPTR // Format to use with printf.
#define PRI_PTR_COMPAT_UINT PRIuPTR
#if SIZEOF_VOID_P == 8
typedef uint64_t ptr_compat_uint;
typedef int64_t ptr_compat_int;
#define PRI_PTR_COMPAT_INT PRId64 // Format to use with printf.
#define PRI_PTR_COMPAT_UINT PRIu64
typedef uint64_t ptr_compat_uint [[deprecated("Remove in v4.1. Use std::uintptr_t.")]];
typedef int64_t ptr_compat_int [[deprecated("Remove in v4.1. Use std::intptr_t.")]];
#elif SIZEOF_VOID_P == 4
typedef uint32_t ptr_compat_uint;
typedef int32_t ptr_compat_int;
#define PRI_PTR_COMPAT_INT PRId32
#define PRI_PTR_COMPAT_UINT PRIu32
typedef uint32_t ptr_compat_uint [[deprecated("Remove in v4.1. Use std::uintptr_t")]];
typedef int32_t ptr_compat_int [[deprecated("Remove in v4.1. Use std::iintptr_t")]];
#else
# error "Unsupported pointer size."
#endif
@ -243,7 +241,7 @@ extern uint64_t rand64bit();
// Unfortunately, it introduces circular dependencies when defined in one of
// the obvious places (like Event.h or RemoteSerializer.h)
typedef ptr_compat_uint SourceID;
using SourceID = std::uintptr_t;
#define PRI_SOURCE_ID PRI_PTR_COMPAT_UINT
static const SourceID SOURCE_LOCAL = 0;