Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
5cbcff7b
Commit
5cbcff7b
authored
10 years ago
by
Graham Linden
Browse files
Options
Downloads
Patches
Plain Diff
Appease GCC 4.6.1 syntax problems with uintptr_t in alignment asserts
parent
99952dc3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/llcommon/llmemory.h
+6
-4
6 additions, 4 deletions
indra/llcommon/llmemory.h
indra/llmath/llvolume.h
+0
-1
0 additions, 1 deletion
indra/llmath/llvolume.h
with
6 additions
and
5 deletions
indra/llcommon/llmemory.h
+
6
−
4
View file @
5cbcff7b
...
@@ -27,6 +27,8 @@
...
@@ -27,6 +27,8 @@
#define LLMEMORY_H
#define LLMEMORY_H
#include
"linden_common.h"
#include
"linden_common.h"
#include
"stdtypes.h"
#include
<stdint.h>
class
LLMutex
;
class
LLMutex
;
...
@@ -39,7 +41,7 @@ class LLMutex ;
...
@@ -39,7 +41,7 @@ class LLMutex ;
LL_COMMON_API
void
ll_assert_aligned_func
(
uintptr_t
ptr
,
U32
alignment
);
LL_COMMON_API
void
ll_assert_aligned_func
(
uintptr_t
ptr
,
U32
alignment
);
#ifdef SHOW_ASSERT
#ifdef SHOW_ASSERT
#define ll_assert_aligned(ptr,alignment) ll_assert_aligned_func(
reinterpret_cast<
uintptr_t
>
(ptr),((U32)alignment))
#define ll_assert_aligned(ptr,alignment) ll_assert_aligned_func(uintptr_t(ptr),((U32)alignment))
#else
#else
#define ll_assert_aligned(ptr,alignment)
#define ll_assert_aligned(ptr,alignment)
#endif
#endif
...
@@ -49,13 +51,13 @@ LL_COMMON_API void ll_assert_aligned_func(uintptr_t ptr,U32 alignment);
...
@@ -49,13 +51,13 @@ LL_COMMON_API void ll_assert_aligned_func(uintptr_t ptr,U32 alignment);
template
<
typename
T
>
T
*
LL_NEXT_ALIGNED_ADDRESS
(
T
*
address
)
template
<
typename
T
>
T
*
LL_NEXT_ALIGNED_ADDRESS
(
T
*
address
)
{
{
return
reinterpret_cast
<
T
*>
(
return
reinterpret_cast
<
T
*>
(
(
reinterpret_cast
<
uintptr_t
>
(
address
)
+
0xF
)
&
~
0xF
);
(
uintptr_t
(
address
)
+
0xF
)
&
~
0xF
);
}
}
template
<
typename
T
>
T
*
LL_NEXT_ALIGNED_ADDRESS_64
(
T
*
address
)
template
<
typename
T
>
T
*
LL_NEXT_ALIGNED_ADDRESS_64
(
T
*
address
)
{
{
return
reinterpret_cast
<
T
*>
(
return
reinterpret_cast
<
T
*>
(
(
reinterpret_cast
<
uintptr_t
>
(
address
)
+
0x3F
)
&
~
0x3F
);
(
uintptr_t
(
address
)
+
0x3F
)
&
~
0x3F
);
}
}
#if LL_LINUX || LL_DARWIN
#if LL_LINUX || LL_DARWIN
...
@@ -81,7 +83,7 @@ inline void* ll_aligned_malloc( size_t size, int align )
...
@@ -81,7 +83,7 @@ inline void* ll_aligned_malloc( size_t size, int align )
#else
#else
void
*
mem
=
malloc
(
size
+
(
align
-
1
)
+
sizeof
(
void
*
)
);
void
*
mem
=
malloc
(
size
+
(
align
-
1
)
+
sizeof
(
void
*
)
);
char
*
aligned
=
((
char
*
)
mem
)
+
sizeof
(
void
*
);
char
*
aligned
=
((
char
*
)
mem
)
+
sizeof
(
void
*
);
aligned
+=
align
-
(
(
uintptr_t
)
aligned
&
(
align
-
1
));
aligned
+=
align
-
(
uintptr_t
(
aligned
)
&
(
align
-
1
));
((
void
**
)
aligned
)[
-
1
]
=
mem
;
((
void
**
)
aligned
)[
-
1
]
=
mem
;
return
aligned
;
return
aligned
;
...
...
This diff is collapsed.
Click to expand it.
indra/llmath/llvolume.h
+
0
−
1
View file @
5cbcff7b
...
@@ -1083,7 +1083,6 @@ class LLVolume : public LLRefCount
...
@@ -1083,7 +1083,6 @@ class LLVolume : public LLRefCount
BOOL
mGenerateSingleFace
;
BOOL
mGenerateSingleFace
;
typedef
std
::
vector
<
LLVolumeFace
>
face_list_t
;
face_list_t
mVolumeFaces
;
face_list_t
mVolumeFaces
;
public
:
public
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment