-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DO NOT MERGE]PIC #317
base: master
Are you sure you want to change the base?
[DO NOT MERGE]PIC #317
Conversation
36e0e4f
to
4790fa3
Compare
4790fa3
to
f2ac1e4
Compare
Perhaps it might be better to make these TLS code files directly as asm (.S) files? |
f2ac1e4
to
d372c96
Compare
Yeah, I think it's justified in this case |
603f6e8
to
353e971
Compare
@astalke could you have a look at my changes to ia32 asm? |
780047e
to
00a1625
Compare
I've skimmed through code and I think it looks fine. I'm only concerned about cmove, because I am not sure if it is available in every version of CPU we support. |
Simple example: int foo(int a, int b)
{
return (a > 3) ? 4 : b;
}
|
00a1625
to
965fe3c
Compare
JIRA: RTOS-664
In PIE on ia32 function calls should be made using GOT. JIRA: RTOS-664
JIRA: RTOS-664
ffe08e5
to
7bff04a
Compare
Description
Motivation and Context
Types of changes
How Has This Been Tested?
Checklist:
Special treatment