summaryrefslogtreecommitdiff
path: root/src/vm/amd64/unixstubs.cpp
diff options
context:
space:
mode:
authorGeoff Norton <grompf@gmail.com>2015-02-26 17:12:49 +0900
committerGeoff Norton <grompf@gmail.com>2015-02-26 17:12:49 +0900
commit9ef30782816e1ad6c300b5f6a90a9dd3878460c8 (patch)
treed54555f516dbb4652b3ce78a59dce295941a4704 /src/vm/amd64/unixstubs.cpp
parent17127950a12b2afe3bf9e6526ddc7d19749781ff (diff)
downloadcoreclr-9ef30782816e1ad6c300b5f6a90a9dd3878460c8.tar.gz
coreclr-9ef30782816e1ad6c300b5f6a90a9dd3878460c8.tar.bz2
coreclr-9ef30782816e1ad6c300b5f6a90a9dd3878460c8.zip
Implement ExternalMethodFixupStub, VirtualMethodFixupStub and StubDispatchFixupStub for UNIX
Diffstat (limited to 'src/vm/amd64/unixstubs.cpp')
-rw-r--r--src/vm/amd64/unixstubs.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/vm/amd64/unixstubs.cpp b/src/vm/amd64/unixstubs.cpp
index 9de7c6f7a2..c74d74fe15 100644
--- a/src/vm/amd64/unixstubs.cpp
+++ b/src/vm/amd64/unixstubs.cpp
@@ -12,16 +12,6 @@ extern "C"
PORTABILITY_ASSERT("Implement for PAL");
}
- void ExternalMethodFixupPatchLabel()
- {
- PORTABILITY_ASSERT("Implement for PAL");
- }
-
- void ExternalMethodFixupStub()
- {
- PORTABILITY_ASSERT("Implement for PAL");
- }
-
void GenericPInvokeCalliHelper()
{
PORTABILITY_ASSERT("Implement for PAL");
@@ -52,16 +42,6 @@ extern "C"
PORTABILITY_ASSERT("Implement for PAL");
}
- void VirtualMethodFixupPatchLabel()
- {
- PORTABILITY_ASSERT("Implement for PAL");
- }
-
- void VirtualMethodFixupStub()
- {
- PORTABILITY_ASSERT("Implement for PAL");
- }
-
DWORD getcpuid(DWORD arg, unsigned char result[16])
{
DWORD eax;
@@ -96,16 +76,4 @@ extern "C"
void STDCALL JIT_ProfilerEnterLeaveTailcallStub(UINT_PTR ProfilerHandle)
{
}
-
-#ifdef FEATURE_PREJIT
- void StubDispatchFixupStub()
- {
- PORTABILITY_ASSERT("Implement for PAL");
- }
-#endif
-
- void StubDispatchFixupPatchLabel()
- {
- PORTABILITY_ASSERT("Implement for PAL");
- }
};