-
-
Notifications
You must be signed in to change notification settings - Fork 276
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
259 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
An example of ccmp | ||
> g++ ccmp.cpp -I ../xbyak | ||
> sde -future -- ./a.out | ||
*/ | ||
#include <stdio.h> | ||
#include <xbyak/xbyak.h> | ||
#include <xbyak/xbyak_util.h> | ||
|
||
using namespace Xbyak; | ||
|
||
struct Code1 : Xbyak::CodeGenerator { | ||
Code1() | ||
{ | ||
Xbyak::util::StackFrame sf(this, 2); | ||
const auto& p1 = sf.p[0]; | ||
const auto& p2 = sf.p[1]; | ||
int dfv = 0; | ||
cmp(p1, 3); | ||
ctesta(p2, 1, dfv); // eflags = (p1 > 3) ? (p2 & 1) : dfv; | ||
setz(al|T_zu); | ||
} | ||
}; | ||
|
||
struct Code2 : Xbyak::CodeGenerator { | ||
Code2() | ||
{ | ||
Xbyak::util::StackFrame sf(this, 3); | ||
const auto& p1 = sf.p[0]; | ||
const auto& p2 = sf.p[1]; | ||
const auto& p3 = sf.p[2]; | ||
int dfv = 0; | ||
cmp(p1, 1); | ||
ccmpe(p2, 2, dfv); // eflags = p1==1 ? p2==2 : dfv; | ||
ccmpe(p3, 3, dfv); // eflags = (p1==1 && p2==2) ? p3==3 : dfv; | ||
setz(al|T_zu); // p1==1 && p2==2 && p3==3 | ||
} | ||
}; | ||
|
||
|
||
int main() | ||
try | ||
{ | ||
{ | ||
puts("(p1 > 3) && ((p2 & 1) == 0)"); | ||
Code1 c; | ||
auto f = c.getCode<int (*)(int, int)>(); | ||
for (int p1 = 2; p1 < 5; p1++) { | ||
for (int p2 = 0; p2 < 3; p2++) { | ||
printf("p1=%d p2=%d ret=%d (%d)\n", p1, p2, f(p1, p2), p1 > 3 && ((p2&1) == 0)); | ||
} | ||
} | ||
} | ||
{ | ||
puts("p1 == 1 && p2 == 2 && p3 == 3"); | ||
Code2 c; | ||
auto f = c.getCode<int (*)(int, int, int)>(); | ||
for (int p1 = 0; p1 < 3; p1++) { | ||
for (int p2 = 1; p2 < 4; p2++) { | ||
for (int p3 = 2; p3 < 5; p3++) { | ||
printf("p1=%d p2=%d p3=%d ret=%d (%d)\n", p1, p2, p3, f(p1, p2, p3), p1==1 && p2==2 && p3==3); | ||
} | ||
} | ||
} | ||
} | ||
} catch (std::exception& e) { | ||
printf("ERR %s\n", e.what()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
An example of T_zu (zero upper) flag | ||
> g++ zero_upper.cpp -I ../xbyak | ||
> sde -future -- ./a.out | ||
*/ | ||
#include <stdio.h> | ||
#include <xbyak/xbyak.h> | ||
|
||
using namespace Xbyak; | ||
|
||
struct Code : Xbyak::CodeGenerator { | ||
Code(int mode) | ||
{ | ||
mov(eax, 0x12345678); | ||
cmp(eax, eax); // ZF=1 | ||
switch (mode) { | ||
case 0: // imul | ||
puts("imul"); | ||
imul(ax,ax, 0x1234); | ||
break; | ||
case 1: // imul+zu | ||
puts("imul+zu"); | ||
imul(ax|T_zu, ax, 0x1234); | ||
break; | ||
case 2: // setz | ||
puts("setz"); | ||
setz(al); | ||
break; | ||
case 3: // setz+zu | ||
puts("setz+zu"); | ||
setz(al|T_zu); | ||
break; | ||
} | ||
ret(); | ||
} | ||
}; | ||
|
||
int main() | ||
try | ||
{ | ||
for (int mode = 0; mode < 4; mode++) { | ||
Code c(mode); | ||
auto f = c.getCode<int (*)()>(); | ||
printf("ret=%08x\n", f()); | ||
} | ||
} catch (std::exception& e) { | ||
printf("ERR %s\n", e.what()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.