From 5289cbf5331dfd0d0c2242a7e7c8030aa4032c7e Mon Sep 17 00:00:00 2001 From: johannst Date: Sat, 7 Dec 2024 01:01:45 +0000 Subject: deploy: 9c3c3fd923d894d2351eb22129ea693eb98fa8ff --- juicebox_asm/insn/index.html | 5 ++--- juicebox_asm/insn/sidebar-items.js | 2 +- juicebox_asm/insn/trait.Add.html | 7 +++---- juicebox_asm/insn/trait.Call.html | 5 ++--- juicebox_asm/insn/trait.Cmovnz.html | 5 ++--- juicebox_asm/insn/trait.Cmovz.html | 5 ++--- juicebox_asm/insn/trait.Cmp.html | 7 +++---- juicebox_asm/insn/trait.Dec.html | 7 +++---- juicebox_asm/insn/trait.Inc.html | 6 ++++++ juicebox_asm/insn/trait.Jmp.html | 5 ++--- juicebox_asm/insn/trait.Jnz.html | 5 ++--- juicebox_asm/insn/trait.Jz.html | 5 ++--- juicebox_asm/insn/trait.Mov.html | 5 ++--- juicebox_asm/insn/trait.Pop.html | 5 ++--- juicebox_asm/insn/trait.Push.html | 5 ++--- juicebox_asm/insn/trait.Test.html | 5 ++--- juicebox_asm/insn/trait.Xor.html | 6 ++++++ 17 files changed, 44 insertions(+), 46 deletions(-) create mode 100644 juicebox_asm/insn/trait.Inc.html create mode 100644 juicebox_asm/insn/trait.Xor.html (limited to 'juicebox_asm/insn') diff --git a/juicebox_asm/insn/index.html b/juicebox_asm/insn/index.html index 093289e..5301890 100644 --- a/juicebox_asm/insn/index.html +++ b/juicebox_asm/insn/index.html @@ -1,3 +1,2 @@ -juicebox_asm::insn - Rust -

Module juicebox_asm::insn

source ·
Expand description

Trait definitions of various instructions.

-

Traits

\ No newline at end of file +juicebox_asm::insn - Rust
juicebox_asm

Module insn

source
Expand description

Trait definitions of various instructions.

+

Traits§

  • Trait for add instruction kinds.
  • Trait for call instruction kinds.
  • Trait for cmp instruction kinds.
  • Trait for dec instruction kinds.
  • Trait for inc instruction kinds.
  • Trait for jmp instruction kinds.
  • Trait for jnz instruction kinds.
  • Trait for jz instruction kinds.
  • Trait for mov instruction kinds.
  • Trait for pop instruction kinds.
  • Trait for push instruction kinds.
  • Trait for test instruction kinds.
  • Trait for xor instruction kinds.
\ No newline at end of file diff --git a/juicebox_asm/insn/sidebar-items.js b/juicebox_asm/insn/sidebar-items.js index 894686f..19a48ac 100644 --- a/juicebox_asm/insn/sidebar-items.js +++ b/juicebox_asm/insn/sidebar-items.js @@ -1 +1 @@ -window.SIDEBAR_ITEMS = {"trait":["Add","Call","Cmovnz","Cmovz","Cmp","Dec","Jmp","Jnz","Jz","Mov","Pop","Push","Test"]}; \ No newline at end of file +window.SIDEBAR_ITEMS = {"trait":["Add","Call","Cmovnz","Cmovz","Cmp","Dec","Inc","Jmp","Jnz","Jz","Mov","Pop","Push","Test","Xor"]}; \ No newline at end of file diff --git a/juicebox_asm/insn/trait.Add.html b/juicebox_asm/insn/trait.Add.html index ab5accc..54795b8 100644 --- a/juicebox_asm/insn/trait.Add.html +++ b/juicebox_asm/insn/trait.Add.html @@ -1,7 +1,6 @@ -Add in juicebox_asm::insn - Rust -

Trait juicebox_asm::insn::Add

source ·
pub trait Add<T, U> {
+Add in juicebox_asm::insn - Rust
juicebox_asm::insn

Trait Add

source
pub trait Add<T, U> {
     // Required method
     fn add(&mut self, op1: T, op2: U);
 }
Expand description

Trait for add instruction kinds.

-

Required Methods§

source

fn add(&mut self, op1: T, op2: U)

Emit an add instruction.

-

Implementors§

\ No newline at end of file +

Required Methods§

source

fn add(&mut self, op1: T, op2: U)

Emit an add instruction.

+

Implementors§

\ No newline at end of file diff --git a/juicebox_asm/insn/trait.Call.html b/juicebox_asm/insn/trait.Call.html index 6d929cb..f3fb14f 100644 --- a/juicebox_asm/insn/trait.Call.html +++ b/juicebox_asm/insn/trait.Call.html @@ -1,7 +1,6 @@ -Call in juicebox_asm::insn - Rust -

Trait juicebox_asm::insn::Call

source ·
pub trait Call<T> {
+Call in juicebox_asm::insn - Rust
juicebox_asm::insn

Trait Call

source
pub trait Call<T> {
     // Required method
     fn call(&mut self, op1: T);
 }
Expand description

Trait for call instruction kinds.

-

Required Methods§

source

fn call(&mut self, op1: T)

Emit a call instruction.

+

Required Methods§

source

fn call(&mut self, op1: T)

Emit a call instruction.

Implementors§

\ No newline at end of file diff --git a/juicebox_asm/insn/trait.Cmovnz.html b/juicebox_asm/insn/trait.Cmovnz.html index ca0fef1..ff3c217 100644 --- a/juicebox_asm/insn/trait.Cmovnz.html +++ b/juicebox_asm/insn/trait.Cmovnz.html @@ -1,7 +1,6 @@ -Cmovnz in juicebox_asm::insn - Rust -

Trait juicebox_asm::insn::Cmovnz

source ·
pub trait Cmovnz<T, U> {
+Cmovnz in juicebox_asm::insn - Rust
juicebox_asm::insn

Trait Cmovnz

source
pub trait Cmovnz<T, U> {
     // Required method
     fn cmovnz(&mut self, op1: T, op2: U);
-}

Required Methods§

source

fn cmovnz(&mut self, op1: T, op2: U)

Emit a (conditional) move if not zero instruction.

+}

Required Methods§

source

fn cmovnz(&mut self, op1: T, op2: U)

Emit a (conditional) move if not zero instruction.

Move is only commited if (ZF=0).

Implementors§

\ No newline at end of file diff --git a/juicebox_asm/insn/trait.Cmovz.html b/juicebox_asm/insn/trait.Cmovz.html index 3da1ed4..78ee268 100644 --- a/juicebox_asm/insn/trait.Cmovz.html +++ b/juicebox_asm/insn/trait.Cmovz.html @@ -1,7 +1,6 @@ -Cmovz in juicebox_asm::insn - Rust -

Trait juicebox_asm::insn::Cmovz

source ·
pub trait Cmovz<T, U> {
+Cmovz in juicebox_asm::insn - Rust
juicebox_asm::insn

Trait Cmovz

source
pub trait Cmovz<T, U> {
     // Required method
     fn cmovz(&mut self, op1: T, op2: U);
-}

Required Methods§

source

fn cmovz(&mut self, op1: T, op2: U)

Emit a (conditional) move if zero instruction.

+}

Required Methods§

source

fn cmovz(&mut self, op1: T, op2: U)

Emit a (conditional) move if zero instruction.

Move is only commited if (ZF=1).

Implementors§

\ No newline at end of file diff --git a/juicebox_asm/insn/trait.Cmp.html b/juicebox_asm/insn/trait.Cmp.html index 9c57b54..508ac27 100644 --- a/juicebox_asm/insn/trait.Cmp.html +++ b/juicebox_asm/insn/trait.Cmp.html @@ -1,9 +1,8 @@ -Cmp in juicebox_asm::insn - Rust -

Trait juicebox_asm::insn::Cmp

source ·
pub trait Cmp<T, U> {
+Cmp in juicebox_asm::insn - Rust
juicebox_asm::insn

Trait Cmp

source
pub trait Cmp<T, U> {
     // Required method
     fn cmp(&mut self, op1: T, op2: U);
 }
Expand description

Trait for cmp instruction kinds.

-

Required Methods§

source

fn cmp(&mut self, op1: T, op2: U)

Emit a compare instruction.

+

Required Methods§

source

fn cmp(&mut self, op1: T, op2: U)

Emit a compare instruction.

Computes op2 - op1 and sets the status flags in the same way as the sub instruction, the result is discarded.

-

Implementors§

\ No newline at end of file +

Implementors§

\ No newline at end of file diff --git a/juicebox_asm/insn/trait.Dec.html b/juicebox_asm/insn/trait.Dec.html index 2f9ce80..6d01959 100644 --- a/juicebox_asm/insn/trait.Dec.html +++ b/juicebox_asm/insn/trait.Dec.html @@ -1,7 +1,6 @@ -Dec in juicebox_asm::insn - Rust -

Trait juicebox_asm::insn::Dec

source ·
pub trait Dec<T> {
+Dec in juicebox_asm::insn - Rust
juicebox_asm::insn

Trait Dec

source
pub trait Dec<T> {
     // Required method
     fn dec(&mut self, op1: T);
 }
Expand description

Trait for dec instruction kinds.

-

Required Methods§

source

fn dec(&mut self, op1: T)

Emit a decrement instruction.

-

Implementors§

\ No newline at end of file +

Required Methods§

source

fn dec(&mut self, op1: T)

Emit a decrement instruction.

+

Implementors§

\ No newline at end of file diff --git a/juicebox_asm/insn/trait.Inc.html b/juicebox_asm/insn/trait.Inc.html new file mode 100644 index 0000000..eac88f8 --- /dev/null +++ b/juicebox_asm/insn/trait.Inc.html @@ -0,0 +1,6 @@ +Inc in juicebox_asm::insn - Rust
juicebox_asm::insn

Trait Inc

source
pub trait Inc<T> {
+    // Required method
+    fn inc(&mut self, op1: T);
+}
Expand description

Trait for inc instruction kinds.

+

Required Methods§

source

fn inc(&mut self, op1: T)

Emit a increment instruction.

+

Implementors§

\ No newline at end of file diff --git a/juicebox_asm/insn/trait.Jmp.html b/juicebox_asm/insn/trait.Jmp.html index e7e8cba..d11388b 100644 --- a/juicebox_asm/insn/trait.Jmp.html +++ b/juicebox_asm/insn/trait.Jmp.html @@ -1,7 +1,6 @@ -Jmp in juicebox_asm::insn - Rust -

Trait juicebox_asm::insn::Jmp

source ·
pub trait Jmp<T> {
+Jmp in juicebox_asm::insn - Rust
juicebox_asm::insn

Trait Jmp

source
pub trait Jmp<T> {
     // Required method
     fn jmp(&mut self, op1: T);
 }
Expand description

Trait for jmp instruction kinds.

-

Required Methods§

source

fn jmp(&mut self, op1: T)

Emit an unconditional jump instruction.

+

Required Methods§

source

fn jmp(&mut self, op1: T)

Emit an unconditional jump instruction.

Implementors§

source§

impl Jmp<&mut Label> for Asm

\ No newline at end of file diff --git a/juicebox_asm/insn/trait.Jnz.html b/juicebox_asm/insn/trait.Jnz.html index b8a0a51..e3670fa 100644 --- a/juicebox_asm/insn/trait.Jnz.html +++ b/juicebox_asm/insn/trait.Jnz.html @@ -1,7 +1,6 @@ -Jnz in juicebox_asm::insn - Rust -

Trait juicebox_asm::insn::Jnz

source ·
pub trait Jnz<T> {
+Jnz in juicebox_asm::insn - Rust
juicebox_asm::insn

Trait Jnz

source
pub trait Jnz<T> {
     // Required method
     fn jnz(&mut self, op1: T);
 }
Expand description

Trait for jnz instruction kinds.

-

Required Methods§

source

fn jnz(&mut self, op1: T)

Emit a conditional jump if not zero instruction (ZF = 0).

+

Required Methods§

source

fn jnz(&mut self, op1: T)

Emit a conditional jump if not zero instruction (ZF = 0).

Implementors§

source§

impl Jnz<&mut Label> for Asm

\ No newline at end of file diff --git a/juicebox_asm/insn/trait.Jz.html b/juicebox_asm/insn/trait.Jz.html index 7e6020b..e34e0df 100644 --- a/juicebox_asm/insn/trait.Jz.html +++ b/juicebox_asm/insn/trait.Jz.html @@ -1,7 +1,6 @@ -Jz in juicebox_asm::insn - Rust -

Trait juicebox_asm::insn::Jz

source ·
pub trait Jz<T> {
+Jz in juicebox_asm::insn - Rust
juicebox_asm::insn

Trait Jz

source
pub trait Jz<T> {
     // Required method
     fn jz(&mut self, op1: T);
 }
Expand description

Trait for jz instruction kinds.

-

Required Methods§

source

fn jz(&mut self, op1: T)

Emit a conditional jump if zero instruction (ZF = 1).

+

Required Methods§

source

fn jz(&mut self, op1: T)

Emit a conditional jump if zero instruction (ZF = 1).

Implementors§

source§

impl Jz<&mut Label> for Asm

\ No newline at end of file diff --git a/juicebox_asm/insn/trait.Mov.html b/juicebox_asm/insn/trait.Mov.html index 63bb10e..25c38d7 100644 --- a/juicebox_asm/insn/trait.Mov.html +++ b/juicebox_asm/insn/trait.Mov.html @@ -1,7 +1,6 @@ -Mov in juicebox_asm::insn - Rust -

Trait juicebox_asm::insn::Mov

source ·
pub trait Mov<T, U> {
+Mov in juicebox_asm::insn - Rust
juicebox_asm::insn

Trait Mov

source
pub trait Mov<T, U> {
     // Required method
     fn mov(&mut self, op1: T, op2: U);
 }
Expand description

Trait for mov instruction kinds.

-

Required Methods§

source

fn mov(&mut self, op1: T, op2: U)

Emit an move instruction.

+

Required Methods§

source

fn mov(&mut self, op1: T, op2: U)

Emit an move instruction.

Implementors§

\ No newline at end of file diff --git a/juicebox_asm/insn/trait.Pop.html b/juicebox_asm/insn/trait.Pop.html index d248e80..3c09993 100644 --- a/juicebox_asm/insn/trait.Pop.html +++ b/juicebox_asm/insn/trait.Pop.html @@ -1,7 +1,6 @@ -Pop in juicebox_asm::insn - Rust -

Trait juicebox_asm::insn::Pop

source ·
pub trait Pop<T> {
+Pop in juicebox_asm::insn - Rust
juicebox_asm::insn

Trait Pop

source
pub trait Pop<T> {
     // Required method
     fn pop(&mut self, op1: T);
 }
Expand description

Trait for pop instruction kinds.

-

Required Methods§

source

fn pop(&mut self, op1: T)

Emit a pop instruction.

+

Required Methods§

source

fn pop(&mut self, op1: T)

Emit a pop instruction.

Implementors§

\ No newline at end of file diff --git a/juicebox_asm/insn/trait.Push.html b/juicebox_asm/insn/trait.Push.html index 32287bb..714b39a 100644 --- a/juicebox_asm/insn/trait.Push.html +++ b/juicebox_asm/insn/trait.Push.html @@ -1,7 +1,6 @@ -Push in juicebox_asm::insn - Rust -

Trait juicebox_asm::insn::Push

source ·
pub trait Push<T> {
+Push in juicebox_asm::insn - Rust
juicebox_asm::insn

Trait Push

source
pub trait Push<T> {
     // Required method
     fn push(&mut self, op1: T);
 }
Expand description

Trait for push instruction kinds.

-

Required Methods§

source

fn push(&mut self, op1: T)

Emit a push instruction.

+

Required Methods§

source

fn push(&mut self, op1: T)

Emit a push instruction.

Implementors§

\ No newline at end of file diff --git a/juicebox_asm/insn/trait.Test.html b/juicebox_asm/insn/trait.Test.html index 7c3bd8e..945c903 100644 --- a/juicebox_asm/insn/trait.Test.html +++ b/juicebox_asm/insn/trait.Test.html @@ -1,9 +1,8 @@ -Test in juicebox_asm::insn - Rust -

Trait juicebox_asm::insn::Test

source ·
pub trait Test<T, U> {
+Test in juicebox_asm::insn - Rust
juicebox_asm::insn

Trait Test

source
pub trait Test<T, U> {
     // Required method
     fn test(&mut self, op1: T, op2: U);
 }
Expand description

Trait for test instruction kinds.

-

Required Methods§

source

fn test(&mut self, op1: T, op2: U)

Emit a logical compare instruction.

+

Required Methods§

source

fn test(&mut self, op1: T, op2: U)

Emit a logical compare instruction.

Computes the bit-wise logical AND of first operand and the second operand and sets the SF, ZF, and PF status flags, the result is discarded.

Implementors§

\ No newline at end of file diff --git a/juicebox_asm/insn/trait.Xor.html b/juicebox_asm/insn/trait.Xor.html new file mode 100644 index 0000000..929443a --- /dev/null +++ b/juicebox_asm/insn/trait.Xor.html @@ -0,0 +1,6 @@ +Xor in juicebox_asm::insn - Rust
juicebox_asm::insn

Trait Xor

source
pub trait Xor<T, U> {
+    // Required method
+    fn xor(&mut self, op1: T, op2: U);
+}
Expand description

Trait for xor instruction kinds.

+

Required Methods§

source

fn xor(&mut self, op1: T, op2: U)

Emit a xor instruction.

+

Implementors§

\ No newline at end of file -- cgit v1.2.3