Posix code cache.

This commit is contained in:
Ben Vanik
2014-07-12 22:25:12 -07:00
parent 7ee79318e8
commit 4a0531abc5
4 changed files with 111 additions and 2 deletions

View File

@@ -6,7 +6,6 @@
'x64_assembler.h',
'x64_backend.cc',
'x64_backend.h',
'x64_code_cache.cc',
'x64_code_cache.h',
'x64_emitter.cc',
'x64_emitter.h',
@@ -20,4 +19,17 @@
'x64_tracers.cc',
'x64_tracers.h',
],
'conditions': [
['OS == "mac" or OS == "linux"', {
'sources': [
'x64_code_cache_posix.cc',
],
}],
['OS == "win"', {
'sources': [
'x64_code_cache_win.cc',
],
}],
],
}