mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
fix MSVC build
This commit is contained in:
parent
5a0e00ca39
commit
3777c9b429
@ -2955,8 +2955,8 @@ intrinsic(MyThread* t, Frame* frame, object target)
|
|||||||
{
|
{
|
||||||
#define MATCH(name, constant) \
|
#define MATCH(name, constant) \
|
||||||
(byteArrayLength(t, name) == sizeof(constant) \
|
(byteArrayLength(t, name) == sizeof(constant) \
|
||||||
and strcmp(reinterpret_cast<char*>(&byteArrayBody(t, name, 0)), \
|
and ::strcmp(reinterpret_cast<char*>(&byteArrayBody(t, name, 0)), \
|
||||||
constant) == 0)
|
constant) == 0)
|
||||||
|
|
||||||
object className = vm::className(t, methodClass(t, target));
|
object className = vm::className(t, methodClass(t, target));
|
||||||
if (UNLIKELY(MATCH(className, "java/lang/Math"))) {
|
if (UNLIKELY(MATCH(className, "java/lang/Math"))) {
|
||||||
|
@ -3212,7 +3212,7 @@ class CallEvent: public Event {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (unsigned i = 0; i < stackArgumentFootprint; ++i) {
|
for (unsigned i = 0; i < stackArgumentFootprint; ++i) {
|
||||||
Value* v = arguments[i];
|
Value* v = RUNTIME_ARRAY_BODY(arguments)[i];
|
||||||
if (v) {
|
if (v) {
|
||||||
int frameIndex = i + frameOffset;
|
int frameIndex = i + frameOffset;
|
||||||
|
|
||||||
|
35
src/x86.h
35
src/x86.h
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
# include "windows.h"
|
# include "windows.h"
|
||||||
|
# undef interface
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef ARCH_x86_32
|
#ifdef ARCH_x86_32
|
||||||
@ -155,7 +156,23 @@ trap()
|
|||||||
}
|
}
|
||||||
|
|
||||||
inline void
|
inline void
|
||||||
memoryBarrier()
|
programOrderMemoryBarrier()
|
||||||
|
{
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
MemoryBarrier();
|
||||||
|
#else
|
||||||
|
__asm__ __volatile__("": : :"memory");
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
inline void
|
||||||
|
storeStoreMemoryBarrier()
|
||||||
|
{
|
||||||
|
programOrderMemoryBarrier();
|
||||||
|
}
|
||||||
|
|
||||||
|
inline void
|
||||||
|
storeLoadMemoryBarrier()
|
||||||
{
|
{
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
MemoryBarrier();
|
MemoryBarrier();
|
||||||
@ -166,28 +183,16 @@ memoryBarrier()
|
|||||||
#endif // ARCH_x86_64
|
#endif // ARCH_x86_64
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void
|
|
||||||
storeStoreMemoryBarrier()
|
|
||||||
{
|
|
||||||
__asm__ __volatile__("": : :"memory");
|
|
||||||
}
|
|
||||||
|
|
||||||
inline void
|
|
||||||
storeLoadMemoryBarrier()
|
|
||||||
{
|
|
||||||
memoryBarrier();
|
|
||||||
}
|
|
||||||
|
|
||||||
inline void
|
inline void
|
||||||
loadMemoryBarrier()
|
loadMemoryBarrier()
|
||||||
{
|
{
|
||||||
__asm__ __volatile__("": : :"memory");
|
programOrderMemoryBarrier();
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void
|
inline void
|
||||||
syncInstructionCache(const void*, unsigned)
|
syncInstructionCache(const void*, unsigned)
|
||||||
{
|
{
|
||||||
__asm__ __volatile__("": : :"memory");
|
programOrderMemoryBarrier();
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef USE_ATOMIC_OPERATIONS
|
#ifdef USE_ATOMIC_OPERATIONS
|
||||||
|
Loading…
Reference in New Issue
Block a user