llvm-ir-editor
llvm-ir-editor copied to clipboard
An LLVM IR Editor plugin for Eclipse
If "readonly" is removed from the second parameter %b, all works fine: ; ModuleID = '/tmp/webcompile/_4097_0.bc' target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-unknown-linux-gnu" ; Function Attrs: nounwind uwtable define...
Fixes issue #57
After installing 0.9.13 on Eclipse Juno (4.2.2), trying to open an .ll file gives: > Failed to create injector for com.intel.llvm.ireditor.LLVM_IR ExtensionFactory: com.intel.llvm.ireditor.ui.LLVM_IRExecutableExtensionFactory With the following log: ``` org.eclipse.core.runtime.CoreException: Failed...
e.g. > expected { i32, i32, i32, i32, i32 }, found { i32, i32, i31, i32, i32} Will become > expected { i32, i32, i32, i32, i32 }, found {...
The outline view can get messy quickly (e.g. with a huge metadata list, when debug info is on). Add categorization to that view so that it's possible to only focus...
Unlike integers or null, where the literal is type-less, floating-point literals do have specific types. This needs to be used to enhance the type validation, which rights now treats them...
`lli` is the best way to run a module. However it doesn't seem to support: 1. Line-by-line debugging of IR 2. Running just one function If a mapping to Java...