-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #550 from luoliwoshang/env/correct-parse
env:fix incorrect extra line breaks & subcmd match
- Loading branch information
Showing
4 changed files
with
88 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package main | ||
|
||
import ( | ||
"github.com/goplus/llgo/c" | ||
"github.com/goplus/llgo/cpp/llvm" | ||
) | ||
|
||
func main() { | ||
mangledName := "__ZNK9INIReader10ParseErrorEv" | ||
if name := llvm.ItaniumDemangle(mangledName, true); name != nil { | ||
c.Printf(c.Str("%s\n"), name) | ||
} else { | ||
println("Failed to demangle") | ||
} | ||
} |
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,69 @@ | ||
; ModuleID = 'main' | ||
source_filename = "main" | ||
|
||
%"github.com/goplus/llgo/internal/runtime.String" = type { ptr, i64 } | ||
|
||
@"main.init$guard" = global i1 false, align 1 | ||
@__llgo_argc = global i32 0, align 4 | ||
@__llgo_argv = global ptr null, align 8 | ||
@0 = private unnamed_addr constant [29 x i8] c"__ZNK9INIReader10ParseErrorEv", align 1 | ||
@1 = private unnamed_addr constant [4 x i8] c"%s\0A\00", align 1 | ||
@2 = private unnamed_addr constant [18 x i8] c"Failed to demangle", align 1 | ||
|
||
define void @main.init() { | ||
_llgo_0: | ||
%0 = load i1, ptr @"main.init$guard", align 1 | ||
br i1 %0, label %_llgo_2, label %_llgo_1 | ||
|
||
_llgo_1: ; preds = %_llgo_0 | ||
store i1 true, ptr @"main.init$guard", align 1 | ||
br label %_llgo_2 | ||
|
||
_llgo_2: ; preds = %_llgo_1, %_llgo_0 | ||
ret void | ||
} | ||
|
||
define i32 @main(i32 %0, ptr %1) { | ||
_llgo_0: | ||
store i32 %0, ptr @__llgo_argc, align 4 | ||
store ptr %1, ptr @__llgo_argv, align 8 | ||
call void @"github.com/goplus/llgo/internal/runtime.init"() | ||
call void @main.init() | ||
%2 = alloca %"github.com/goplus/llgo/internal/runtime.String", align 8 | ||
%3 = getelementptr inbounds %"github.com/goplus/llgo/internal/runtime.String", ptr %2, i32 0, i32 0 | ||
store ptr @0, ptr %3, align 8 | ||
%4 = getelementptr inbounds %"github.com/goplus/llgo/internal/runtime.String", ptr %2, i32 0, i32 1 | ||
store i64 29, ptr %4, align 4 | ||
%5 = load %"github.com/goplus/llgo/internal/runtime.String", ptr %2, align 8 | ||
%6 = call ptr @_ZN4llvm15itaniumDemangleENSt3__117basic_string_viewIcNS0_11char_traitsIcEEEEb(%"github.com/goplus/llgo/internal/runtime.String" %5, i1 true) | ||
%7 = icmp ne ptr %6, null | ||
br i1 %7, label %_llgo_1, label %_llgo_3 | ||
|
||
_llgo_1: ; preds = %_llgo_0 | ||
%8 = call i32 (ptr, ...) @printf(ptr @1, ptr %6) | ||
br label %_llgo_2 | ||
|
||
_llgo_2: ; preds = %_llgo_3, %_llgo_1 | ||
ret i32 0 | ||
|
||
_llgo_3: ; preds = %_llgo_0 | ||
%9 = alloca %"github.com/goplus/llgo/internal/runtime.String", align 8 | ||
%10 = getelementptr inbounds %"github.com/goplus/llgo/internal/runtime.String", ptr %9, i32 0, i32 0 | ||
store ptr @2, ptr %10, align 8 | ||
%11 = getelementptr inbounds %"github.com/goplus/llgo/internal/runtime.String", ptr %9, i32 0, i32 1 | ||
store i64 18, ptr %11, align 4 | ||
%12 = load %"github.com/goplus/llgo/internal/runtime.String", ptr %9, align 8 | ||
call void @"github.com/goplus/llgo/internal/runtime.PrintString"(%"github.com/goplus/llgo/internal/runtime.String" %12) | ||
call void @"github.com/goplus/llgo/internal/runtime.PrintByte"(i8 10) | ||
br label %_llgo_2 | ||
} | ||
|
||
declare void @"github.com/goplus/llgo/internal/runtime.init"() | ||
|
||
declare ptr @_ZN4llvm15itaniumDemangleENSt3__117basic_string_viewIcNS0_11char_traitsIcEEEEb(%"github.com/goplus/llgo/internal/runtime.String", i1) | ||
|
||
declare i32 @printf(ptr, ...) | ||
|
||
declare void @"github.com/goplus/llgo/internal/runtime.PrintString"(%"github.com/goplus/llgo/internal/runtime.String") | ||
|
||
declare void @"github.com/goplus/llgo/internal/runtime.PrintByte"(i8) |
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