Created
May 19, 2022 16:32
-
-
Save maekawatoshiki/0d9d20f42c6ef29bd2e2cdf5a956148d to your computer and use it in GitHub Desktop.
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
; ModuleID = 'c.c' | |
source_filename = "c.c" | |
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" | |
target triple = "x86_64-pc-linux-gnu" | |
%struct.termios = type { i32, i32, i32, i32, i8, [32 x i8], i32, i32 } | |
%struct.game = type { [4 x [4 x i32]] } | |
@.str = private unnamed_addr constant [28 x i8] c"--------------------------\0A\00", align 1 | |
@.str.1 = private unnamed_addr constant [2 x i8] c"|\00", align 1 | |
@.str.2 = private unnamed_addr constant [6 x i8] c"%4d \00", align 1 | |
@.str.3 = private unnamed_addr constant [7 x i8] c" \00", align 1 | |
@.str.4 = private unnamed_addr constant [3 x i8] c"|\0A\00", align 1 | |
@__const.read_move.keys = private unnamed_addr constant [4 x i8] c"kijl", align 1 | |
@backup = internal global %struct.termios zeroinitializer, align 4 | |
@current = internal global %struct.termios zeroinitializer, align 4 | |
; Function Attrs: noinline nounwind optnone uwtable | |
define dso_local i32 @random_spot(%struct.game* %0) #0 { | |
%2 = alloca %struct.game*, align 8 | |
store %struct.game* %0, %struct.game** %2, align 8 | |
%3 = call i32 @rand() #5 | |
%4 = srem i32 %3, 4 | |
ret i32 %4 | |
} | |
; Function Attrs: nounwind | |
declare dso_local i32 @rand() #1 | |
; Function Attrs: noinline nounwind optnone uwtable | |
define dso_local i32 @random_value(%struct.game* %0) #0 { | |
%2 = alloca %struct.game*, align 8 | |
store %struct.game* %0, %struct.game** %2, align 8 | |
%3 = call i32 @rand() #5 | |
%4 = srem i32 %3, 10 | |
%5 = icmp ne i32 %4, 0 | |
%6 = zext i1 %5 to i64 | |
br i1 %5, label %true, label %false | |
true: | |
ret i32 2 | |
false: | |
ret i32 4 | |
} | |
; Function Attrs: noinline nounwind optnone uwtable | |
define dso_local void @print(%struct.game* %0) #0 { | |
%2 = alloca %struct.game*, align 8 | |
%3 = alloca i32, align 4 | |
%4 = alloca i32, align 4 | |
store %struct.game* %0, %struct.game** %2, align 8 | |
%5 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([28 x i8], [28 x i8]* @.str, i64 0, i64 0)) | |
store i32 3, i32* %4, align 4 | |
br label %6 | |
6: ; preds = %44, %1 | |
%7 = load i32, i32* %4, align 4 | |
%8 = icmp sge i32 %7, 0 | |
br i1 %8, label %9, label %47 | |
9: ; preds = %6 | |
%10 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) | |
store i32 0, i32* %3, align 4 | |
br label %11 | |
11: ; preds = %39, %9 | |
%12 = load i32, i32* %3, align 4 | |
%13 = icmp slt i32 %12, 4 | |
br i1 %13, label %14, label %42 | |
14: ; preds = %11 | |
%15 = load %struct.game*, %struct.game** %2, align 8 | |
%16 = getelementptr inbounds %struct.game, %struct.game* %15, i32 0, i32 0 | |
%17 = load i32, i32* %3, align 4 | |
%18 = sext i32 %17 to i64 | |
%19 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %16, i64 0, i64 %18 | |
%20 = load i32, i32* %4, align 4 | |
%21 = sext i32 %20 to i64 | |
%22 = getelementptr inbounds [4 x i32], [4 x i32]* %19, i64 0, i64 %21 | |
%23 = load i32, i32* %22, align 4 | |
%24 = icmp ne i32 %23, 0 | |
br i1 %24, label %25, label %36 | |
25: ; preds = %14 | |
%26 = load %struct.game*, %struct.game** %2, align 8 | |
%27 = getelementptr inbounds %struct.game, %struct.game* %26, i32 0, i32 0 | |
%28 = load i32, i32* %3, align 4 | |
%29 = sext i32 %28 to i64 | |
%30 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %27, i64 0, i64 %29 | |
%31 = load i32, i32* %4, align 4 | |
%32 = sext i32 %31 to i64 | |
%33 = getelementptr inbounds [4 x i32], [4 x i32]* %30, i64 0, i64 %32 | |
%34 = load i32, i32* %33, align 4 | |
%35 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([6 x i8], [6 x i8]* @.str.2, i64 0, i64 0), i32 %34) | |
br label %38 | |
36: ; preds = %14 | |
%37 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([7 x i8], [7 x i8]* @.str.3, i64 0, i64 0)) | |
br label %38 | |
38: ; preds = %36, %25 | |
br label %39 | |
39: ; preds = %38 | |
%40 = load i32, i32* %3, align 4 | |
%41 = add nsw i32 %40, 1 | |
store i32 %41, i32* %3, align 4 | |
br label %11 | |
42: ; preds = %11 | |
%43 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([3 x i8], [3 x i8]* @.str.4, i64 0, i64 0)) | |
br label %44 | |
44: ; preds = %42 | |
%45 = load i32, i32* %4, align 4 | |
%46 = add nsw i32 %45, -1 | |
store i32 %46, i32* %4, align 4 | |
br label %6 | |
47: ; preds = %6 | |
%48 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([28 x i8], [28 x i8]* @.str, i64 0, i64 0)) | |
ret void | |
} | |
declare dso_local i32 @printf(i8*, ...) #2 | |
; Function Attrs: noinline nounwind optnone uwtable | |
define dso_local void @twist(%struct.game* %0) #0 { | |
%2 = alloca %struct.game*, align 8 | |
%3 = alloca i32, align 4 | |
%4 = alloca i32, align 4 | |
%5 = alloca %struct.game, align 4 | |
store %struct.game* %0, %struct.game** %2, align 8 | |
store i32 0, i32* %3, align 4 | |
br label %6 | |
6: ; preds = %34, %1 | |
%7 = load i32, i32* %3, align 4 | |
%8 = icmp slt i32 %7, 4 | |
br i1 %8, label %9, label %37 | |
9: ; preds = %6 | |
store i32 0, i32* %4, align 4 | |
br label %10 | |
10: ; preds = %30, %9 | |
%11 = load i32, i32* %4, align 4 | |
%12 = icmp slt i32 %11, 4 | |
br i1 %12, label %13, label %33 | |
13: ; preds = %10 | |
%14 = load %struct.game*, %struct.game** %2, align 8 | |
%15 = getelementptr inbounds %struct.game, %struct.game* %14, i32 0, i32 0 | |
%16 = load i32, i32* %4, align 4 | |
%17 = sext i32 %16 to i64 | |
%18 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %15, i64 0, i64 %17 | |
%19 = load i32, i32* %3, align 4 | |
%20 = sext i32 %19 to i64 | |
%21 = getelementptr inbounds [4 x i32], [4 x i32]* %18, i64 0, i64 %20 | |
%22 = load i32, i32* %21, align 4 | |
%23 = getelementptr inbounds %struct.game, %struct.game* %5, i32 0, i32 0 | |
%24 = load i32, i32* %3, align 4 | |
%25 = sext i32 %24 to i64 | |
%26 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %23, i64 0, i64 %25 | |
%27 = load i32, i32* %4, align 4 | |
%28 = sext i32 %27 to i64 | |
%29 = getelementptr inbounds [4 x i32], [4 x i32]* %26, i64 0, i64 %28 | |
store i32 %22, i32* %29, align 4 | |
br label %30 | |
30: ; preds = %13 | |
%31 = load i32, i32* %4, align 4 | |
%32 = add nsw i32 %31, 1 | |
store i32 %32, i32* %4, align 4 | |
br label %10 | |
33: ; preds = %10 | |
br label %34 | |
34: ; preds = %33 | |
%35 = load i32, i32* %3, align 4 | |
%36 = add nsw i32 %35, 1 | |
store i32 %36, i32* %3, align 4 | |
br label %6 | |
37: ; preds = %6 | |
%38 = load %struct.game*, %struct.game** %2, align 8 | |
%39 = bitcast %struct.game* %38 to i8* | |
%40 = bitcast %struct.game* %5 to i8* | |
call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %39, i8* align 4 %40, i64 64, i1 false) | |
ret void | |
} | |
; Function Attrs: argmemonly nounwind willreturn | |
declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #3 | |
; Function Attrs: noinline nounwind optnone uwtable | |
define dso_local void @flip(%struct.game* %0) #0 { | |
%2 = alloca %struct.game*, align 8 | |
%3 = alloca i32, align 4 | |
%4 = alloca i32, align 4 | |
%5 = alloca %struct.game, align 4 | |
store %struct.game* %0, %struct.game** %2, align 8 | |
store i32 0, i32* %3, align 4 | |
br label %6 | |
6: ; preds = %36, %1 | |
%7 = load i32, i32* %3, align 4 | |
%8 = icmp slt i32 %7, 4 | |
br i1 %8, label %9, label %39 | |
9: ; preds = %6 | |
store i32 0, i32* %4, align 4 | |
br label %10 | |
10: ; preds = %32, %9 | |
%11 = load i32, i32* %4, align 4 | |
%12 = icmp slt i32 %11, 4 | |
br i1 %12, label %13, label %35 | |
13: ; preds = %10 | |
%14 = load %struct.game*, %struct.game** %2, align 8 | |
%15 = getelementptr inbounds %struct.game, %struct.game* %14, i32 0, i32 0 | |
%16 = load i32, i32* %3, align 4 | |
%17 = sext i32 %16 to i64 | |
%18 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %15, i64 0, i64 %17 | |
%19 = load i32, i32* %4, align 4 | |
%20 = sub nsw i32 4, %19 | |
%21 = sub nsw i32 %20, 1 | |
%22 = sext i32 %21 to i64 | |
%23 = getelementptr inbounds [4 x i32], [4 x i32]* %18, i64 0, i64 %22 | |
%24 = load i32, i32* %23, align 4 | |
%25 = getelementptr inbounds %struct.game, %struct.game* %5, i32 0, i32 0 | |
%26 = load i32, i32* %3, align 4 | |
%27 = sext i32 %26 to i64 | |
%28 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %25, i64 0, i64 %27 | |
%29 = load i32, i32* %4, align 4 | |
%30 = sext i32 %29 to i64 | |
%31 = getelementptr inbounds [4 x i32], [4 x i32]* %28, i64 0, i64 %30 | |
store i32 %24, i32* %31, align 4 | |
br label %32 | |
32: ; preds = %13 | |
%33 = load i32, i32* %4, align 4 | |
%34 = add nsw i32 %33, 1 | |
store i32 %34, i32* %4, align 4 | |
br label %10 | |
35: ; preds = %10 | |
br label %36 | |
36: ; preds = %35 | |
%37 = load i32, i32* %3, align 4 | |
%38 = add nsw i32 %37, 1 | |
store i32 %38, i32* %3, align 4 | |
br label %6 | |
39: ; preds = %6 | |
%40 = load %struct.game*, %struct.game** %2, align 8 | |
%41 = bitcast %struct.game* %40 to i8* | |
%42 = bitcast %struct.game* %5 to i8* | |
call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %41, i8* align 4 %42, i64 64, i1 false) | |
ret void | |
} | |
; Function Attrs: noinline nounwind optnone uwtable | |
define dso_local void @begin(%struct.game* %0) #0 { | |
%2 = alloca %struct.game*, align 8 | |
%3 = alloca %struct.game, align 4 | |
store %struct.game* %0, %struct.game** %2, align 8 | |
%4 = load %struct.game*, %struct.game** %2, align 8 | |
%5 = bitcast %struct.game* %4 to i8* | |
%6 = bitcast %struct.game* %3 to i8* | |
call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %5, i8* align 4 %6, i64 64, i1 false) | |
%7 = load %struct.game*, %struct.game** %2, align 8 | |
%8 = call i32 @random_value(%struct.game* %7) | |
%9 = load %struct.game*, %struct.game** %2, align 8 | |
%10 = getelementptr inbounds %struct.game, %struct.game* %9, i32 0, i32 0 | |
%11 = load %struct.game*, %struct.game** %2, align 8 | |
%12 = call i32 @random_spot(%struct.game* %11) | |
%13 = sext i32 %12 to i64 | |
%14 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %10, i64 0, i64 %13 | |
%15 = load %struct.game*, %struct.game** %2, align 8 | |
%16 = call i32 @random_spot(%struct.game* %15) | |
%17 = sext i32 %16 to i64 | |
%18 = getelementptr inbounds [4 x i32], [4 x i32]* %14, i64 0, i64 %17 | |
store i32 %8, i32* %18, align 4 | |
%19 = load %struct.game*, %struct.game** %2, align 8 | |
%20 = call i32 @random_value(%struct.game* %19) | |
%21 = load %struct.game*, %struct.game** %2, align 8 | |
%22 = getelementptr inbounds %struct.game, %struct.game* %21, i32 0, i32 0 | |
%23 = load %struct.game*, %struct.game** %2, align 8 | |
%24 = call i32 @random_spot(%struct.game* %23) | |
%25 = sext i32 %24 to i64 | |
%26 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %22, i64 0, i64 %25 | |
%27 = load %struct.game*, %struct.game** %2, align 8 | |
%28 = call i32 @random_spot(%struct.game* %27) | |
%29 = sext i32 %28 to i64 | |
%30 = getelementptr inbounds [4 x i32], [4 x i32]* %26, i64 0, i64 %29 | |
store i32 %20, i32* %30, align 4 | |
ret void | |
} | |
; Function Attrs: noinline nounwind optnone uwtable | |
define dso_local void @fall_column(i32* %0, i32* %1) #0 { | |
%3 = alloca i32*, align 8 | |
%4 = alloca i32*, align 8 | |
%5 = alloca i32, align 4 | |
%6 = alloca i32, align 4 | |
%7 = alloca i32, align 4 | |
store i32* %0, i32** %3, align 8 | |
store i32* %1, i32** %4, align 8 | |
store i32 0, i32* %7, align 4 | |
store i32 0, i32* %6, align 4 | |
store i32 0, i32* %5, align 4 | |
br label %8 | |
8: ; preds = %52, %2 | |
%9 = load i32, i32* %5, align 4 | |
%10 = icmp slt i32 %9, 4 | |
br i1 %10, label %11, label %55 | |
11: ; preds = %8 | |
%12 = load i32*, i32** %3, align 8 | |
%13 = load i32, i32* %5, align 4 | |
%14 = sext i32 %13 to i64 | |
%15 = getelementptr inbounds i32, i32* %12, i64 %14 | |
%16 = load i32, i32* %15, align 4 | |
%17 = icmp ne i32 %16, 0 | |
br i1 %17, label %18, label %51 | |
18: ; preds = %11 | |
%19 = load i32*, i32** %3, align 8 | |
%20 = load i32, i32* %5, align 4 | |
%21 = sext i32 %20 to i64 | |
%22 = getelementptr inbounds i32, i32* %19, i64 %21 | |
%23 = load i32, i32* %22, align 4 | |
%24 = load i32, i32* %7, align 4 | |
%25 = icmp eq i32 %23, %24 | |
br i1 %25, label %26, label %34 | |
26: ; preds = %18 | |
%27 = load i32*, i32** %4, align 8 | |
%28 = load i32, i32* %6, align 4 | |
%29 = sub nsw i32 %28, 1 | |
%30 = sext i32 %29 to i64 | |
%31 = getelementptr inbounds i32, i32* %27, i64 %30 | |
%32 = load i32, i32* %31, align 4 | |
%33 = mul nsw i32 %32, 2 | |
store i32 %33, i32* %31, align 4 | |
store i32 0, i32* %7, align 4 | |
br label %50 | |
34: ; preds = %18 | |
%35 = load i32*, i32** %3, align 8 | |
%36 = load i32, i32* %5, align 4 | |
%37 = sext i32 %36 to i64 | |
%38 = getelementptr inbounds i32, i32* %35, i64 %37 | |
%39 = load i32, i32* %38, align 4 | |
%40 = load i32*, i32** %4, align 8 | |
%41 = load i32, i32* %6, align 4 | |
%42 = add nsw i32 %41, 1 | |
store i32 %42, i32* %6, align 4 | |
%43 = sext i32 %41 to i64 | |
%44 = getelementptr inbounds i32, i32* %40, i64 %43 | |
store i32 %39, i32* %44, align 4 | |
%45 = load i32*, i32** %3, align 8 | |
%46 = load i32, i32* %5, align 4 | |
%47 = sext i32 %46 to i64 | |
%48 = getelementptr inbounds i32, i32* %45, i64 %47 | |
%49 = load i32, i32* %48, align 4 | |
store i32 %49, i32* %7, align 4 | |
br label %50 | |
50: ; preds = %34, %26 | |
br label %51 | |
51: ; preds = %50, %11 | |
br label %52 | |
52: ; preds = %51 | |
%53 = load i32, i32* %5, align 4 | |
%54 = add nsw i32 %53, 1 | |
store i32 %54, i32* %5, align 4 | |
br label %8 | |
55: ; preds = %8 | |
ret void | |
} | |
; Function Attrs: noinline nounwind optnone uwtable | |
define dso_local void @fall(%struct.game* %0) #0 { | |
%2 = alloca %struct.game*, align 8 | |
%3 = alloca %struct.game, align 4 | |
%4 = alloca i32, align 4 | |
store %struct.game* %0, %struct.game** %2, align 8 | |
%5 = bitcast %struct.game* %3 to i8* | |
call void @llvm.memset.p0i8.i64(i8* align 4 %5, i8 0, i64 64, i1 false) | |
store i32 0, i32* %4, align 4 | |
br label %6 | |
6: ; preds = %21, %1 | |
%7 = load i32, i32* %4, align 4 | |
%8 = icmp slt i32 %7, 4 | |
br i1 %8, label %9, label %24 | |
9: ; preds = %6 | |
%10 = load %struct.game*, %struct.game** %2, align 8 | |
%11 = getelementptr inbounds %struct.game, %struct.game* %10, i32 0, i32 0 | |
%12 = load i32, i32* %4, align 4 | |
%13 = sext i32 %12 to i64 | |
%14 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %11, i64 0, i64 %13 | |
%15 = getelementptr inbounds [4 x i32], [4 x i32]* %14, i64 0, i64 0 | |
%16 = getelementptr inbounds %struct.game, %struct.game* %3, i32 0, i32 0 | |
%17 = load i32, i32* %4, align 4 | |
%18 = sext i32 %17 to i64 | |
%19 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %16, i64 0, i64 %18 | |
%20 = getelementptr inbounds [4 x i32], [4 x i32]* %19, i64 0, i64 0 | |
call void @fall_column(i32* %15, i32* %20) | |
br label %21 | |
21: ; preds = %9 | |
%22 = load i32, i32* %4, align 4 | |
%23 = add nsw i32 %22, 1 | |
store i32 %23, i32* %4, align 4 | |
br label %6 | |
24: ; preds = %6 | |
%25 = load %struct.game*, %struct.game** %2, align 8 | |
%26 = bitcast %struct.game* %25 to i8* | |
%27 = bitcast %struct.game* %3 to i8* | |
call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %26, i8* align 4 %27, i64 64, i1 false) | |
ret void | |
} | |
; Function Attrs: argmemonly nounwind willreturn | |
declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #3 | |
; Function Attrs: noinline nounwind optnone uwtable | |
define dso_local i32 @same(%struct.game* %0, %struct.game* %1) #0 { | |
%3 = alloca i32, align 4 | |
%4 = alloca %struct.game*, align 8 | |
%5 = alloca %struct.game*, align 8 | |
%6 = alloca i32, align 4 | |
%7 = alloca i32, align 4 | |
store %struct.game* %0, %struct.game** %4, align 8 | |
store %struct.game* %1, %struct.game** %5, align 8 | |
store i32 0, i32* %6, align 4 | |
br label %8 | |
8: ; preds = %41, %2 | |
%9 = load i32, i32* %6, align 4 | |
%10 = icmp slt i32 %9, 4 | |
br i1 %10, label %11, label %44 | |
11: ; preds = %8 | |
store i32 0, i32* %7, align 4 | |
br label %12 | |
12: ; preds = %37, %11 | |
%13 = load i32, i32* %7, align 4 | |
%14 = icmp slt i32 %13, 4 | |
br i1 %14, label %15, label %40 | |
15: ; preds = %12 | |
%16 = load %struct.game*, %struct.game** %4, align 8 | |
%17 = getelementptr inbounds %struct.game, %struct.game* %16, i32 0, i32 0 | |
%18 = load i32, i32* %6, align 4 | |
%19 = sext i32 %18 to i64 | |
%20 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %17, i64 0, i64 %19 | |
%21 = load i32, i32* %7, align 4 | |
%22 = sext i32 %21 to i64 | |
%23 = getelementptr inbounds [4 x i32], [4 x i32]* %20, i64 0, i64 %22 | |
%24 = load i32, i32* %23, align 4 | |
%25 = load %struct.game*, %struct.game** %5, align 8 | |
%26 = getelementptr inbounds %struct.game, %struct.game* %25, i32 0, i32 0 | |
%27 = load i32, i32* %6, align 4 | |
%28 = sext i32 %27 to i64 | |
%29 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %26, i64 0, i64 %28 | |
%30 = load i32, i32* %7, align 4 | |
%31 = sext i32 %30 to i64 | |
%32 = getelementptr inbounds [4 x i32], [4 x i32]* %29, i64 0, i64 %31 | |
%33 = load i32, i32* %32, align 4 | |
%34 = icmp ne i32 %24, %33 | |
br i1 %34, label %35, label %36 | |
35: ; preds = %15 | |
store i32 0, i32* %3, align 4 | |
br label %45 | |
36: ; preds = %15 | |
br label %37 | |
37: ; preds = %36 | |
%38 = load i32, i32* %7, align 4 | |
%39 = add nsw i32 %38, 1 | |
store i32 %39, i32* %7, align 4 | |
br label %12 | |
40: ; preds = %12 | |
br label %41 | |
41: ; preds = %40 | |
%42 = load i32, i32* %6, align 4 | |
%43 = add nsw i32 %42, 1 | |
store i32 %43, i32* %6, align 4 | |
br label %8 | |
44: ; preds = %8 | |
store i32 1, i32* %3, align 4 | |
br label %45 | |
45: ; preds = %44, %35 | |
%46 = load i32, i32* %3, align 4 | |
ret i32 %46 | |
} | |
; Function Attrs: noinline nounwind optnone uwtable | |
define dso_local i32 @tryfalling(%struct.game* %0) #0 { | |
%2 = alloca i32, align 4 | |
%3 = alloca %struct.game*, align 8 | |
%4 = alloca %struct.game, align 4 | |
store %struct.game* %0, %struct.game** %3, align 8 | |
%5 = load %struct.game*, %struct.game** %3, align 8 | |
%6 = bitcast %struct.game* %4 to i8* | |
%7 = bitcast %struct.game* %5 to i8* | |
call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %6, i8* align 4 %7, i64 64, i1 false) | |
%8 = load %struct.game*, %struct.game** %3, align 8 | |
call void @fall(%struct.game* %8) | |
%9 = load %struct.game*, %struct.game** %3, align 8 | |
%10 = call i32 @same(%struct.game* %9, %struct.game* %4) | |
%11 = icmp ne i32 %10, 0 | |
br i1 %11, label %12, label %13 | |
12: ; preds = %1 | |
store i32 0, i32* %2, align 4 | |
br label %14 | |
13: ; preds = %1 | |
store i32 1, i32* %2, align 4 | |
br label %14 | |
14: ; preds = %13, %12 | |
%15 = load i32, i32* %2, align 4 | |
ret i32 %15 | |
} | |
; Function Attrs: noinline nounwind optnone uwtable | |
define dso_local void @popup(%struct.game* %0) #0 { | |
%2 = alloca %struct.game*, align 8 | |
%3 = alloca i32, align 4 | |
%4 = alloca i32, align 4 | |
store %struct.game* %0, %struct.game** %2, align 8 | |
br label %5 | |
5: ; preds = %1, %31 | |
%6 = load %struct.game*, %struct.game** %2, align 8 | |
%7 = call i32 @random_spot(%struct.game* %6) | |
store i32 %7, i32* %3, align 4 | |
%8 = load %struct.game*, %struct.game** %2, align 8 | |
%9 = call i32 @random_spot(%struct.game* %8) | |
store i32 %9, i32* %4, align 4 | |
%10 = load %struct.game*, %struct.game** %2, align 8 | |
%11 = getelementptr inbounds %struct.game, %struct.game* %10, i32 0, i32 0 | |
%12 = load i32, i32* %3, align 4 | |
%13 = sext i32 %12 to i64 | |
%14 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %11, i64 0, i64 %13 | |
%15 = load i32, i32* %4, align 4 | |
%16 = sext i32 %15 to i64 | |
%17 = getelementptr inbounds [4 x i32], [4 x i32]* %14, i64 0, i64 %16 | |
%18 = load i32, i32* %17, align 4 | |
%19 = icmp ne i32 %18, 0 | |
br i1 %19, label %31, label %20 | |
20: ; preds = %5 | |
%21 = load %struct.game*, %struct.game** %2, align 8 | |
%22 = call i32 @random_value(%struct.game* %21) | |
%23 = load %struct.game*, %struct.game** %2, align 8 | |
%24 = getelementptr inbounds %struct.game, %struct.game* %23, i32 0, i32 0 | |
%25 = load i32, i32* %3, align 4 | |
%26 = sext i32 %25 to i64 | |
%27 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %24, i64 0, i64 %26 | |
%28 = load i32, i32* %4, align 4 | |
%29 = sext i32 %28 to i64 | |
%30 = getelementptr inbounds [4 x i32], [4 x i32]* %27, i64 0, i64 %29 | |
store i32 %22, i32* %30, align 4 | |
ret void | |
31: ; preds = %5 | |
br label %5 | |
} | |
; Function Attrs: noinline nounwind optnone uwtable | |
define dso_local void @move(%struct.game* %0, i32 %1) #0 { | |
%3 = alloca %struct.game*, align 8 | |
%4 = alloca i32, align 4 | |
store %struct.game* %0, %struct.game** %3, align 8 | |
store i32 %1, i32* %4, align 4 | |
%5 = load i32, i32* %4, align 4 | |
%6 = sdiv i32 %5, 2 | |
%7 = icmp ne i32 %6, 0 | |
br i1 %7, label %8, label %10 | |
8: ; preds = %2 | |
%9 = load %struct.game*, %struct.game** %3, align 8 | |
call void @twist(%struct.game* %9) | |
br label %10 | |
10: ; preds = %8, %2 | |
%11 = load i32, i32* %4, align 4 | |
%12 = srem i32 %11, 2 | |
%13 = icmp ne i32 %12, 0 | |
br i1 %13, label %14, label %16 | |
14: ; preds = %10 | |
%15 = load %struct.game*, %struct.game** %3, align 8 | |
call void @flip(%struct.game* %15) | |
br label %16 | |
16: ; preds = %14, %10 | |
%17 = load %struct.game*, %struct.game** %3, align 8 | |
%18 = call i32 @tryfalling(%struct.game* %17) | |
%19 = icmp ne i32 %18, 0 | |
br i1 %19, label %20, label %22 | |
20: ; preds = %16 | |
%21 = load %struct.game*, %struct.game** %3, align 8 | |
call void @popup(%struct.game* %21) | |
br label %22 | |
22: ; preds = %20, %16 | |
%23 = load i32, i32* %4, align 4 | |
%24 = srem i32 %23, 2 | |
%25 = icmp ne i32 %24, 0 | |
br i1 %25, label %26, label %28 | |
26: ; preds = %22 | |
%27 = load %struct.game*, %struct.game** %3, align 8 | |
call void @flip(%struct.game* %27) | |
br label %28 | |
28: ; preds = %26, %22 | |
%29 = load i32, i32* %4, align 4 | |
%30 = sdiv i32 %29, 2 | |
%31 = icmp ne i32 %30, 0 | |
br i1 %31, label %32, label %34 | |
32: ; preds = %28 | |
%33 = load %struct.game*, %struct.game** %3, align 8 | |
call void @twist(%struct.game* %33) | |
br label %34 | |
34: ; preds = %32, %28 | |
ret void | |
} | |
; Function Attrs: noinline nounwind optnone uwtable | |
define dso_local i32 @read_move() #0 { | |
%1 = alloca i32, align 4 | |
%2 = alloca [4 x i8], align 1 | |
%3 = alloca i32, align 4 | |
%4 = alloca i32, align 4 | |
%5 = bitcast [4 x i8]* %2 to i8* | |
call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %5, i8* align 1 getelementptr inbounds ([4 x i8], [4 x i8]* @__const.read_move.keys, i32 0, i32 0), i64 4, i1 false) | |
br label %6 | |
6: ; preds = %16, %0 | |
%7 = call i16** @__ctype_b_loc() #6 | |
%8 = load i16*, i16** %7, align 8 | |
%9 = call i32 @getchar() | |
store i32 %9, i32* %3, align 4 | |
%10 = sext i32 %9 to i64 | |
%11 = getelementptr inbounds i16, i16* %8, i64 %10 | |
%12 = load i16, i16* %11, align 2 | |
%13 = zext i16 %12 to i32 | |
%14 = and i32 %13, 8192 | |
%15 = icmp ne i32 %14, 0 | |
br i1 %15, label %16, label %17 | |
16: ; preds = %6 | |
br label %6 | |
17: ; preds = %6 | |
%18 = load i32, i32* %3, align 4 | |
%19 = icmp eq i32 %18, -1 | |
br i1 %19, label %20, label %22 | |
20: ; preds = %17 | |
%21 = load i32, i32* %3, align 4 | |
store i32 %21, i32* %1, align 4 | |
br label %41 | |
22: ; preds = %17 | |
store i32 0, i32* %4, align 4 | |
br label %23 | |
23: ; preds = %37, %22 | |
%24 = load i32, i32* %4, align 4 | |
%25 = icmp slt i32 %24, 4 | |
br i1 %25, label %26, label %40 | |
26: ; preds = %23 | |
%27 = load i32, i32* %3, align 4 | |
%28 = load i32, i32* %4, align 4 | |
%29 = sext i32 %28 to i64 | |
%30 = getelementptr inbounds [4 x i8], [4 x i8]* %2, i64 0, i64 %29 | |
%31 = load i8, i8* %30, align 1 | |
%32 = sext i8 %31 to i32 | |
%33 = icmp eq i32 %27, %32 | |
br i1 %33, label %34, label %36 | |
34: ; preds = %26 | |
%35 = load i32, i32* %4, align 4 | |
store i32 %35, i32* %1, align 4 | |
br label %41 | |
36: ; preds = %26 | |
br label %37 | |
37: ; preds = %36 | |
%38 = load i32, i32* %4, align 4 | |
%39 = add nsw i32 %38, 1 | |
store i32 %39, i32* %4, align 4 | |
br label %23 | |
40: ; preds = %23 | |
store i32 -1, i32* %1, align 4 | |
br label %41 | |
41: ; preds = %40, %34, %20 | |
%42 = load i32, i32* %1, align 4 | |
ret i32 %42 | |
} | |
; Function Attrs: nounwind readnone | |
declare dso_local i16** @__ctype_b_loc() #4 | |
declare dso_local i32 @getchar() #2 | |
; Function Attrs: noinline nounwind optnone uwtable | |
define dso_local void @take_stdin() #0 { | |
%1 = call i32 @tcgetattr(i32 0, %struct.termios* @backup) #5 | |
call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 bitcast (%struct.termios* @current to i8*), i8* align 4 bitcast (%struct.termios* @backup to i8*), i64 60, i1 false) | |
%2 = load i32, i32* getelementptr inbounds (%struct.termios, %struct.termios* @current, i32 0, i32 3), align 4 | |
%3 = and i32 %2, -11 | |
store i32 %3, i32* getelementptr inbounds (%struct.termios, %struct.termios* @current, i32 0, i32 3), align 4 | |
%4 = call i32 @tcsetattr(i32 0, i32 0, %struct.termios* @current) #5 | |
ret void | |
} | |
; Function Attrs: nounwind | |
declare dso_local i32 @tcgetattr(i32, %struct.termios*) #1 | |
; Function Attrs: nounwind | |
declare dso_local i32 @tcsetattr(i32, i32, %struct.termios*) #1 | |
; Function Attrs: noinline nounwind optnone uwtable | |
define dso_local void @give_stdin() #0 { | |
%1 = call i32 @tcsetattr(i32 0, i32 0, %struct.termios* @backup) #5 | |
ret void | |
} | |
; Function Attrs: noinline nounwind optnone uwtable | |
define dso_local i32 @main() #0 { | |
%1 = alloca i32, align 4 | |
%2 = alloca i32, align 4 | |
%3 = alloca %struct.game, align 4 | |
store i32 0, i32* %1, align 4 | |
call void @begin(%struct.game* %3) | |
call void @print(%struct.game* %3) | |
call void @take_stdin() | |
br label %4 | |
4: ; preds = %7, %0 | |
%5 = call i32 @read_move() | |
store i32 %5, i32* %2, align 4 | |
%6 = icmp ne i32 %5, -1 | |
br i1 %6, label %7, label %9 | |
7: ; preds = %4 | |
%8 = load i32, i32* %2, align 4 | |
call void @move(%struct.game* %3, i32 %8) | |
call void @print(%struct.game* %3) | |
br label %4 | |
9: ; preds = %4 | |
call void @give_stdin() | |
ret i32 0 | |
} | |
attributes #0 = { noinline nounwind optnone uwtable "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "unsafe-fp-math"="false" "use-soft-float"="false" } | |
attributes #1 = { nounwind "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "unsafe-fp-math"="false" "use-soft-float"="false" } | |
attributes #2 = { "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "unsafe-fp-math"="false" "use-soft-float"="false" } | |
attributes #3 = { argmemonly nounwind willreturn } | |
attributes #4 = { nounwind readnone "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "unsafe-fp-math"="false" "use-soft-float"="false" } | |
attributes #5 = { nounwind } | |
attributes #6 = { nounwind readnone } | |
!llvm.module.flags = !{!0} | |
!llvm.ident = !{!1} | |
!0 = !{i32 1, !"wchar_size", i32 4} | |
!1 = !{!"clang version 10.0.0-4ubuntu1 "} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment