aboutsummaryrefslogtreecommitdiff
path: root/src/compiler.cpp
blob: 6c477a1506fa2939cc94bc6edecb41bec5b3a75b (plain)
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
#include "cache_hash.hpp"
#include "os.hpp"
#include "compiler.hpp"

#include <stdio.h>

Error get_compiler_id(Buf **result) {
    static Buf saved_compiler_id = BUF_INIT;

    if (saved_compiler_id.list.length != 0) {
        *result = &saved_compiler_id;
        return ErrorNone;
    }

    Error err;
    Buf *manifest_dir = buf_alloc();
    os_path_join(get_global_cache_dir(), buf_create_from_str("exe"), manifest_dir);

    CacheHash cache_hash;
    CacheHash *ch = &cache_hash;
    cache_init(ch, manifest_dir);
    Buf self_exe_path = BUF_INIT;
    if ((err = os_self_exe_path(&self_exe_path)))
        return err;

    cache_file(ch, &self_exe_path);

    buf_resize(&saved_compiler_id, 0);
    if ((err = cache_hit(ch, &saved_compiler_id))) {
        if (err != ErrorInvalidFormat)
            return err;
    }
    if (buf_len(&saved_compiler_id) != 0) {
        cache_release(ch);
        *result = &saved_compiler_id;
        return ErrorNone;
    }
    ZigList<Buf *> lib_paths = {};
    if ((err = os_self_exe_shared_libs(lib_paths)))
        return err;
    #if defined(ZIG_OS_DARWIN)
    // only add the self exe path on mac os
    Buf *lib_path = lib_paths.at(0);
    if ((err = cache_add_file(ch, lib_path)))
        return err;
    #else 
    for (size_t i = 0; i < lib_paths.length; i += 1) {
        Buf *lib_path = lib_paths.at(i);
        if ((err = cache_add_file(ch, lib_path)))
            return err;
    }
    #endif

    if ((err = cache_final(ch, &saved_compiler_id)))
        return err;

    cache_release(ch);

    *result = &saved_compiler_id;
    return ErrorNone;
}

static bool test_zig_install_prefix(Buf *test_path, Buf *out_zig_lib_dir) {
    {
        Buf *test_zig_dir = buf_sprintf("%s" OS_SEP "lib" OS_SEP "zig", buf_ptr(test_path));
        Buf *test_index_file = buf_sprintf("%s" OS_SEP "std" OS_SEP "std.zig", buf_ptr(test_zig_dir));
        int err;
        bool exists;
        if ((err = os_file_exists(test_index_file, &exists))) {
            exists = false;
        }
        if (exists) {
            buf_init_from_buf(out_zig_lib_dir, test_zig_dir);
            return true;
        }
    }

    // Also try without "zig"
    {
        Buf *test_zig_dir = buf_sprintf("%s" OS_SEP "lib", buf_ptr(test_path));
        Buf *test_index_file = buf_sprintf("%s" OS_SEP "std" OS_SEP "std.zig", buf_ptr(test_zig_dir));
        int err;
        bool exists;
        if ((err = os_file_exists(test_index_file, &exists))) {
            exists = false;
        }
        if (exists) {
            buf_init_from_buf(out_zig_lib_dir, test_zig_dir);
            return true;
        }
    }

    return false;
}

static int find_zig_lib_dir(Buf *out_path) {
    int err;

    Buf self_exe_path = BUF_INIT;
    buf_resize(&self_exe_path, 0);
    if (!(err = os_self_exe_path(&self_exe_path))) {
        Buf *cur_path = &self_exe_path;

        for (;;) {
            Buf *test_dir = buf_alloc();
            os_path_dirname(cur_path, test_dir);

            if (buf_eql_buf(test_dir, cur_path)) {
                break;
            }

            if (test_zig_install_prefix(test_dir, out_path)) {
                return 0;
            }

            cur_path = test_dir;
        }
    }

    return ErrorFileNotFound;
}

Buf *get_zig_lib_dir(void) {
    static Buf saved_lib_dir = BUF_INIT;
    if (saved_lib_dir.list.length != 0)
        return &saved_lib_dir;
    buf_resize(&saved_lib_dir, 0);

    int err;
    if ((err = find_zig_lib_dir(&saved_lib_dir))) {
        fprintf(stderr, "Unable to find zig lib directory\n");
        exit(EXIT_FAILURE);
    }
    return &saved_lib_dir;
}

Buf *get_zig_std_dir(Buf *zig_lib_dir) {
    static Buf saved_std_dir = BUF_INIT;
    if (saved_std_dir.list.length != 0)
        return &saved_std_dir;
    buf_resize(&saved_std_dir, 0);

    os_path_join(zig_lib_dir, buf_create_from_str("std"), &saved_std_dir);

    return &saved_std_dir;
}

Buf *get_zig_special_dir(Buf *zig_lib_dir) {
    static Buf saved_special_dir = BUF_INIT;
    if (saved_special_dir.list.length != 0)
        return &saved_special_dir;
    buf_resize(&saved_special_dir, 0);

    os_path_join(get_zig_std_dir(zig_lib_dir), buf_sprintf("special"), &saved_special_dir);

    return &saved_special_dir;
}

Buf *get_global_cache_dir(void) {
    static Buf saved_global_cache_dir = BUF_INIT;
    if (saved_global_cache_dir.list.length != 0)
        return &saved_global_cache_dir;
    buf_resize(&saved_global_cache_dir, 0);

    Buf app_data_dir = BUF_INIT;
    Error err;
    if ((err = os_get_app_data_dir(&app_data_dir, "zig"))) {
        fprintf(stderr, "Unable to get application data dir: %s\n", err_str(err));
        exit(1);
    }
    os_path_join(&app_data_dir, buf_create_from_str("stage1"), &saved_global_cache_dir);
    buf_deinit(&app_data_dir);
    return &saved_global_cache_dir;
}

FileExt classify_file_ext(const char *filename_ptr, size_t filename_len) {
    if (mem_ends_with_str(filename_ptr, filename_len, ".c")) {
        return FileExtC;
    } else if (mem_ends_with_str(filename_ptr, filename_len, ".C") ||
        mem_ends_with_str(filename_ptr, filename_len, ".cc") ||
        mem_ends_with_str(filename_ptr, filename_len, ".cpp") ||
        mem_ends_with_str(filename_ptr, filename_len, ".cxx"))
    {
        return FileExtCpp;
    } else if (mem_ends_with_str(filename_ptr, filename_len, ".ll")) {
        return FileExtLLVMIr;
    } else if (mem_ends_with_str(filename_ptr, filename_len, ".bc")) {
        return FileExtLLVMBitCode;
    } else if (mem_ends_with_str(filename_ptr, filename_len, ".s") ||
        mem_ends_with_str(filename_ptr, filename_len, ".S"))
    {
        return FileExtAsm;
    }
    // TODO look for .so, .so.X, .so.X.Y, .so.X.Y.Z
    return FileExtUnknown;
}