Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
df6cacf6
Commit
df6cacf6
authored
Aug 02, 2013
by
Maciej Suminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Windows build fix.
parent
fdf9898e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
64 additions
and
68 deletions
+64
-68
fcontext.s
common/system/fcontext.s
+9
-8
jump_i386_pe_gas.S
common/system/jump_i386_pe_gas.S
+47
-48
make_i386_pe_gas.S
common/system/make_i386_pe_gas.S
+8
-12
No files found.
common/system/fcontext.s
View file @
df6cacf6
...
...
@@ -5,12 +5,13 @@
#if __i386__
#include "jump_i386_sysv_elf_gas.S"
#include "make_i386_sysv_elf_gas.S"
#ifdef __WIN32__
#include "jump_i386_pe_gas.S"
#include "make_i386_pe_gas.S"
#else
#include "jump_i386_sysv_elf_gas.S"
#include "make_i386_sysv_elf_gas.S"
#endif
#elif __x86_64__
...
...
common/system/jump_i386_pe_gas.S
View file @
df6cacf6
...
...
@@ -4,12 +4,11 @@
http://www.boost.org/LICENSE_1_0.txt)
*/
.global _jump_fcontext
.text
.globl jump_fcontext
.align 2
.type jump_fcontext,@function
jump_fcontext:
_
jump_fcontext:
mov 0x4(%esp),%ecx
mov %edi,(%ecx)
mov %esi,0x4(%ecx)
...
...
@@ -35,7 +34,7 @@ jump_fcontext:
mov 0xc(%edx),%ebp
mov 0x10(%esp),%eax
test %eax,%eax
je
jump_fcontext+0x5f
je _
jump_fcontext+0x5f
stmxcsr 0x2c(%ecx)
fnstcw 0x30(%ecx)
ldmxcsr 0x2c(%edx)
...
...
common/system/make_i386_pe_gas.S
View file @
df6cacf6
...
...
@@ -4,12 +4,11 @@
http://www.boost.org/LICENSE_1_0.txt)
*/
.global _make_fcontext
.text
.globl make_fcontext
.align 2
.type make_fcontext,@function
make_fcontext:
_
make_fcontext:
mov 0x4(%esp),%eax
lea -0x34(%eax),%eax
and $0xfffffff0,%eax
...
...
@@ -31,10 +30,10 @@ make_fcontext:
mov %fs:0x18,%ecx
mov (%ecx),%edx
inc %edx
je make_fcontext+0x4c // <_make_fcontext+0x4c>
je
_
make_fcontext+0x4c // <_make_fcontext+0x4c>
dec %edx
xchg %edx,%ecx
jmp make_fcontext+0x42 // <_make_fcontext+0x42>
jmp
_
make_fcontext+0x42 // <_make_fcontext+0x42>
mov 0x4(%ecx),%ecx
mov 0x10(%eax),%edx
mov %ecx,0x18(%edx)
...
...
@@ -49,6 +48,3 @@ finish:
mov %eax,(%esp)
call finish+0xa
hlt
.size make_fcontext,.-make_fcontext
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment