From 559c9ddd6079b2313c196866215133b926d07d34 Mon Sep 17 00:00:00 2001 From: johannst Date: Sat, 25 Sep 2021 16:09:42 +0000 Subject: deploy: a3dee93989b9fdd99b8a22a2da7f72bcd2ba50c2 --- llvm_kaleidoscope_rs/llvm/index.html | 6 +++--- llvm_kaleidoscope_rs/llvm/sidebar-items.js | 2 +- llvm_kaleidoscope_rs/llvm/struct.LLJit.html | 9 +++++---- llvm_kaleidoscope_rs/llvm/struct.ResourceTracker.html | 7 ++++--- 4 files changed, 13 insertions(+), 11 deletions(-) (limited to 'llvm_kaleidoscope_rs/llvm') diff --git a/llvm_kaleidoscope_rs/llvm/index.html b/llvm_kaleidoscope_rs/llvm/index.html index 9707eea..a8e5f1c 100644 --- a/llvm_kaleidoscope_rs/llvm/index.html +++ b/llvm_kaleidoscope_rs/llvm/index.html @@ -10,9 +10,9 @@ API calls.

FnValue

Wrapper for a LLVM Value Reference specialized for contexts where function values are needed.

FunctionPassManager

Wrapper for a LLVM Function PassManager (legacy).

IRBuilder

Wrapper for a LLVM IR Builder.

-
LLJit
Module

Wrapper for a LLVM Module with its own LLVM Context.

-
ResourceTracker

A resource handle to code added to an LLJit instance. When a ResourceTracker handle is -dropped, the code corresponding to the handle will be removed from the JIT.

+
LLJit

Wrapper for a LLVM LLJIT.

+
Module

Wrapper for a LLVM Module with its own LLVM Context.

+
ResourceTracker

A resource handle for code added to an LLJit instance.

Type

Wrapper for a LLVM Type Reference.

Value

Wrapper for a LLVM Value Reference.

Functions

diff --git a/llvm_kaleidoscope_rs/llvm/sidebar-items.js b/llvm_kaleidoscope_rs/llvm/sidebar-items.js index 8a16a0d..c204e00 100644 --- a/llvm_kaleidoscope_rs/llvm/sidebar-items.js +++ b/llvm_kaleidoscope_rs/llvm/sidebar-items.js @@ -1 +1 @@ -initSidebarItems({"fn":[["initialize_native_taget","Initialize native target for corresponding to host (useful for jitting)."],["shutdown","Deallocate and destroy all “ManagedStatic” variables."]],"struct":[["BasicBlock","Wrapper for a LLVM Basic Block."],["FnValue","Wrapper for a LLVM Value Reference specialized for contexts where function values are needed."],["FunctionPassManager","Wrapper for a LLVM Function PassManager (legacy)."],["IRBuilder","Wrapper for a LLVM IR Builder."],["LLJit",""],["Module","Wrapper for a LLVM Module with its own LLVM Context."],["ResourceTracker","A resource handle to code added to an [`LLJit`] instance. When a `ResourceTracker` handle is dropped, the code corresponding to the handle will be removed from the JIT."],["Type","Wrapper for a LLVM Type Reference."],["Value","Wrapper for a LLVM Value Reference."]]}); \ No newline at end of file +initSidebarItems({"fn":[["initialize_native_taget","Initialize native target for corresponding to host (useful for jitting)."],["shutdown","Deallocate and destroy all “ManagedStatic” variables."]],"struct":[["BasicBlock","Wrapper for a LLVM Basic Block."],["FnValue","Wrapper for a LLVM Value Reference specialized for contexts where function values are needed."],["FunctionPassManager","Wrapper for a LLVM Function PassManager (legacy)."],["IRBuilder","Wrapper for a LLVM IR Builder."],["LLJit","Wrapper for a LLVM LLJIT."],["Module","Wrapper for a LLVM Module with its own LLVM Context."],["ResourceTracker","A resource handle for code added to an [`LLJit`] instance."],["Type","Wrapper for a LLVM Type Reference."],["Value","Wrapper for a LLVM Value Reference."]]}); \ No newline at end of file diff --git a/llvm_kaleidoscope_rs/llvm/struct.LLJit.html b/llvm_kaleidoscope_rs/llvm/struct.LLJit.html index 9ba3405..f22d860 100644 --- a/llvm_kaleidoscope_rs/llvm/struct.LLJit.html +++ b/llvm_kaleidoscope_rs/llvm/struct.LLJit.html @@ -1,14 +1,15 @@ -LLJit in llvm_kaleidoscope_rs::llvm - Rust

Struct llvm_kaleidoscope_rs::llvm::LLJit[][src]

pub struct LLJit { /* fields omitted */ }

Implementations

Create a new LLJit instance.

+LLJit in llvm_kaleidoscope_rs::llvm - Rust

Struct llvm_kaleidoscope_rs::llvm::LLJit[][src]

pub struct LLJit { /* fields omitted */ }
Expand description

Wrapper for a LLVM LLJIT.

+

Implementations

Create a new LLJit instance.

Panics

Panics if LLVM API returns a null pointer or an error.

-

Add an LLVM IR module to the JIT. Return a ResourceTracker, which when dropped, will +

Add an LLVM IR module to the JIT. Return a ResourceTracker, which when dropped, will remove the code of the LLVM IR module from the JIT.

Panics

Panics if LLVM API returns a null pointer or an error.

-

Find the symbol with the name sym in the JIT.

+

Find the symbol with the name sym in the JIT.

Panics

Panics if the symbol is not found in the JIT.

-

Enable lookup of dynamic symbols available in the current process from the JIT.

+

Enable lookup of dynamic symbols available in the current process from the JIT.

Panics

Panics if LLVM API returns an error.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

diff --git a/llvm_kaleidoscope_rs/llvm/struct.ResourceTracker.html b/llvm_kaleidoscope_rs/llvm/struct.ResourceTracker.html index 6914c3a..6939ee4 100644 --- a/llvm_kaleidoscope_rs/llvm/struct.ResourceTracker.html +++ b/llvm_kaleidoscope_rs/llvm/struct.ResourceTracker.html @@ -1,6 +1,7 @@ -ResourceTracker in llvm_kaleidoscope_rs::llvm - Rust

Struct llvm_kaleidoscope_rs::llvm::ResourceTracker[][src]

pub struct ResourceTracker<'jit>(_, _);
Expand description

A resource handle to code added to an LLJit instance. When a ResourceTracker handle is -dropped, the code corresponding to the handle will be removed from the JIT.

-

Trait Implementations

Executes the destructor for this type. Read more

+ResourceTracker in llvm_kaleidoscope_rs::llvm - Rust

Struct llvm_kaleidoscope_rs::llvm::ResourceTracker[][src]

pub struct ResourceTracker<'jit>(_, _);
Expand description

A resource handle for code added to an LLJit instance.

+

When a ResourceTracker handle is dropped, the code corresponding to the handle will be +removed from the JIT.

+

Trait Implementations

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

-- cgit v1.2.3