1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
| %String = type { i8*, i32, i32, i32 }
define fastcc void @String_Create_Default(%String* %this) nounwind { %1 = getelementptr %String* %this, i32 0, i32 0 store i8* null, i8** %1
%2 = getelementptr %String* %this, i32 0, i32 1 store i32 0, i32* %2
%3 = getelementptr %String* %this, i32 0, i32 2 store i32 0, i32* %3
%4 = getelementptr %String* %this, i32 0, i32 3 store i32 16, i32* %4
ret void }
declare i8* @malloc(i32) declare void @free(i8*) declare i8* @memcpy(i8*, i8*, i32)
define fastcc void @String_Delete(%String* %this) nounwind { %1 = getelementptr %String* %this, i32 0, i32 0 %2 = load i8** %1 %3 = icmp ne i8* %2, null br i1 %3, label %free_begin, label %free_close
free_begin: call void @free(i8* %2) br label %free_close
free_close: ret void }
define fastcc void @String_Resize(%String* %this, i32 %value) { %output = call i8* @malloc(i32 %value)
%1 = getelementptr %String* %this, i32 0, i32 0 %buffer = load i8** %1
%2 = getelementptr %String* %this, i32 0, i32 1 %length = load i32* %2
%3 = call i8* @memcpy(i8* %output, i8* %buffer, i32 %length)
call void @free(i8* %buffer)
store i8* %output, i8** %1
%4 = getelementptr %String* this, i32 0, i32 2 store i32 %value, i32* %4 ret void }
define fastcc void @String_Add_Char(%String* %this, i8 %value) { %1 = getelementptr %String* %this, i32 0, i32 1 %length = load i32* %1 %2 = getelementptr %String* %this, i32 0, i32 2 %maxlen = load i32* %2 %3 = icmp eq i32 %length, %maxlen br i1 %3, label %grow_begin, label %grow_close
grow_begin: %4 = getelementptr %String* %this, i32 0, i32 3 %factor = load i32* %4 %5 = add i32 %maxlen, %factor call void @String_Resize(%String* %this, i32 %5) br label %grow_close
grow_close: %6 = getelementptr %String* %this, i32 0, i32 0 %buffer = load i8** %6 %7 = getelementptr i8* %buffer, i32 %length store i8 %value, i8* %7 %8 = add i32 %length, 1 store i32 %8, i32* %1
ret void }
|