Bug Summary

File:root/firefox-clang/third_party/llama.cpp/src/models/eurobert.cpp
Warning:line 55, column 23
Value stored to 'cur' during its initialization is never read

Annotated Source Code

Press '?' to see keyboard shortcuts

clang -cc1 -cc1 -triple x86_64-pc-linux-gnu -O2 -analyze -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name eurobert.cpp -analyzer-checker=core -analyzer-checker=apiModeling -analyzer-checker=unix -analyzer-checker=deadcode -analyzer-checker=cplusplus -analyzer-checker=security.insecureAPI.UncheckedReturn -analyzer-checker=security.insecureAPI.getpw -analyzer-checker=security.insecureAPI.gets -analyzer-checker=security.insecureAPI.mktemp -analyzer-checker=security.insecureAPI.mkstemp -analyzer-checker=security.insecureAPI.vfork -analyzer-checker=nullability.NullPassedToNonnull -analyzer-checker=nullability.NullReturnedFromNonnull -analyzer-output plist -w -setup-static-analyzer -analyzer-config-compatibility-mode=true -mrelocation-model pic -pic-level 2 -fhalf-no-semantic-interposition -mframe-pointer=all -relaxed-aliasing -ffp-contract=off -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +avx -target-feature +avx2 -target-feature +bmi2 -target-feature +f16c -target-feature +fma -target-feature +sse4.2 -tune-cpu generic -debugger-tuning=gdb -fdebug-compilation-dir=/root/firefox-clang/obj-x86_64-pc-linux-gnu/third_party/llama.cpp -fcoverage-compilation-dir=/root/firefox-clang/obj-x86_64-pc-linux-gnu/third_party/llama.cpp -resource-dir /usr/lib/llvm-23/lib/clang/23 -include /root/firefox-clang/config/gcc_hidden.h -include /root/firefox-clang/obj-x86_64-pc-linux-gnu/mozilla-config.h -I /root/firefox-clang/obj-x86_64-pc-linux-gnu/dist/stl_wrappers -D _GLIBCXX_ASSERTIONS=1 -I /root/firefox-clang/obj-x86_64-pc-linux-gnu/dist/system_wrappers -U _FORTIFY_SOURCE -D _FORTIFY_SOURCE=2 -D DEBUG=1 -D _GNU_SOURCE=1 -D GGML_USE_CPU=1 -D GGML_VERSION="GGML_VERSION" -D GGML_COMMIT="GGML_COMMIT" -D GGML_SHARED=1 -D LLAMA_SHARED=1 -D GGML_BUILD=1 -D LLAMA_BUILD=1 -D GGML_BACKEND_SHARED=1 -D GGML_BACKEND_BUILD=1 -D MOZ_HAS_MOZGLUE -I /root/firefox-clang/third_party/llama.cpp -I /root/firefox-clang/obj-x86_64-pc-linux-gnu/third_party/llama.cpp -I /root/firefox-clang/third_party/llama.cpp/ggml -I /root/firefox-clang/third_party/llama.cpp/ggml/include -I /root/firefox-clang/third_party/llama.cpp/ggml/src -I /root/firefox-clang/third_party/llama.cpp/ggml/src/ggml-cpu -I /root/firefox-clang/third_party/llama.cpp/include -I /root/firefox-clang/third_party/llama.cpp/src -I /root/firefox-clang/obj-x86_64-pc-linux-gnu/dist/include -I /root/firefox-clang/obj-x86_64-pc-linux-gnu/dist/include/nspr -I /root/firefox-clang/obj-x86_64-pc-linux-gnu/dist/include/nss -D MOZILLA_CLIENT -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/16/../../../../include/c++/16 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/16/../../../../include/x86_64-linux-gnu/c++/16 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/16/../../../../include/c++/16/backward -internal-isystem /usr/lib/llvm-23/lib/clang/23/include -internal-isystem /usr/local/include -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/16/../../../../x86_64-linux-gnu/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -Wno-error=pessimizing-move -Wno-error=large-by-value-copy=128 -Wno-error=implicit-int-float-conversion -Wno-error=thread-safety-analysis -Wno-error=tautological-type-limit-compare -Wno-invalid-offsetof -Wno-range-loop-analysis -Wno-deprecated-anon-enum-enum-conversion -Wno-deprecated-enum-enum-conversion -Wno-inline-new-delete -Wno-error=deprecated-declarations -Wno-error=array-bounds -Wno-error=free-nonheap-object -Wno-error=atomic-alignment -Wno-error=deprecated-builtins -Wno-psabi -Wno-error=builtin-macro-redefined -Wno-vla-cxx-extension -Wno-unknown-warning-option -Wno-character-conversion -Wno-sign-compare -Wno-unused-function -Wno-tautological-unsigned-enum-zero-compare -Wno-implicit-fallthrough -Wno-unreachable-code -std=gnu++20 -fdeprecated-macro -ferror-limit 19 -fstrict-flex-arrays=1 -stack-protector 2 -fstack-clash-protection -ftrivial-auto-var-init=pattern -fno-rtti -fgnuc-version=4.2.1 -fno-implicit-modules -fskip-odr-check-in-gmf -fno-sized-deallocation -fno-aligned-allocation -fdiagnostics-absolute-paths -vectorize-loops -vectorize-slp -analyzer-checker optin.performance.Padding -analyzer-output=html -analyzer-config stable-report-filename=true -mllvm -dwarf-linkage-names=Abstract -faddrsig -fdwarf2-cfi-asm -o /tmp/scan-build-2026-09-01-224014-2642839-1 -x c++ /root/firefox-clang/third_party/llama.cpp/src/models/eurobert.cpp
1#include "models.h"
2
3void llama_model_eurobert::load_arch_hparams(llama_model_loader & ml) {
4 ml.get_key(LLM_KV_ATTENTION_LAYERNORM_RMS_EPS, hparams.f_norm_rms_eps);
5
6 if (hparams.n_layer() == 12) {
7 type = LLM_TYPE_SMALL; // 0.2B
8 }
9}
10
11void llama_model_eurobert::load_arch_tensors(llama_model_loader &) {
12 LLAMA_LOAD_LOCALSconst int n_layer = hparams.n_layer(); (void)(n_layer); const
int n_layer_all = hparams.n_layer_all; (void)(n_layer_all); const
int n_layer_nextn = hparams.n_layer_nextn; (void)(n_layer_nextn
); const int64_t n_head = hparams.n_head(); (void)(n_head); const
int64_t n_head_kv = hparams.n_head_kv(); (void)(n_head_kv); const
int64_t n_embd = hparams.n_embd; (void)(n_embd); const int64_t
n_embd_k_gqa = hparams.n_embd_k_gqa(); (void)(n_embd_k_gqa);
const int64_t n_embd_v_gqa = hparams.n_embd_v_gqa(); (void)(
n_embd_v_gqa); const int64_t n_embd_head_k = hparams.n_embd_head_k
(); (void)(n_embd_head_k); const int64_t n_embd_head_v = hparams
.n_embd_head_v(); (void)(n_embd_head_v); const int64_t n_ff =
hparams.n_ff(); (void)(n_ff); const int64_t n_embd_gqa = n_embd_v_gqa
; (void)(n_embd_gqa); const int64_t n_vocab = vocab.n_tokens(
); (void)(n_vocab); const int64_t n_token_types = vocab.n_token_types
(); (void)(n_token_types); const int64_t n_rot = hparams.n_rot
(); (void)(n_rot); const int64_t n_expert = hparams.n_expert;
(void)(n_expert); const int64_t n_expert_used = hparams.n_expert_used
; (void)(n_expert_used); const int64_t n_ctx_train = hparams.
n_ctx_train; (void)(n_ctx_train);
;
13
14 tok_embd = create_tensor(tn(LLM_TENSOR_TOKEN_EMBD, "weight"), {n_embd, n_vocab}, 0);
15
16 output_norm = create_tensor(tn(LLM_TENSOR_OUTPUT_NORM, "weight"), {n_embd}, 0);
17
18 for (int i = 0; i < n_layer; ++i) {
19 auto & layer = layers[i];
20
21 layer.attn_norm = create_tensor(tn(LLM_TENSOR_ATTN_NORM, "weight", i), {n_embd}, 0);
22
23 create_tensor_qkv(layer, i, n_embd, n_embd, n_embd_gqa, n_embd_gqa, 0);
24 layer.wo = create_tensor(tn(LLM_TENSOR_ATTN_OUT, "weight", i), {n_embd, n_embd}, 0);
25
26 layer.ffn_norm = create_tensor(tn(LLM_TENSOR_FFN_NORM, "weight", i), {n_embd}, 0);
27
28 layer.ffn_gate = create_tensor(tn(LLM_TENSOR_FFN_GATE, "weight", i), {n_embd, n_ff}, 0);
29 layer.ffn_up = create_tensor(tn(LLM_TENSOR_FFN_UP, "weight", i), {n_embd, n_ff}, 0);
30 layer.ffn_down = create_tensor(tn(LLM_TENSOR_FFN_DOWN, "weight", i), {n_ff, n_embd}, 0);
31 }
32}
33
34std::unique_ptr<llm_graph_context> llama_model_eurobert::build_arch_graph(const llm_graph_params & params) const {
35 return std::make_unique<graph>(*this, params);
36}
37
38llama_model_eurobert::graph::graph(const llama_model & model, const llm_graph_params & params) : llm_graph_context(params) {
39 const int64_t n_embd_head = hparams.n_embd_head_v();
40
41 GGML_ASSERT(n_embd_head == hparams.n_embd_head_k())if (!(n_embd_head == hparams.n_embd_head_k())) ggml_abort("/root/firefox-clang/third_party/llama.cpp/src/models/eurobert.cpp"
, 41, "GGML_ASSERT(%s) failed", "n_embd_head == hparams.n_embd_head_k()"
)
;
42
43 ggml_tensor * cur;
44 ggml_tensor * inpL;
45 ggml_tensor * inp_pos = build_inp_pos();
46
47 inpL = build_inp_embd(model.tok_embd);
48 cb(inpL, "inp_embd", -1);
49
50 auto * inp_attn = build_attn_inp_no_cache();
51
52 ggml_tensor * inp_out_ids = build_inp_out_ids();
53
54 for (int il = 0; il < n_layer; ++il) {
55 ggml_tensor * cur = inpL;
Value stored to 'cur' during its initialization is never read
56
57 cur = build_norm(inpL,
58 model.layers[il].attn_norm, NULL__null,
59 LLM_NORM_RMS, il);
60
61 {
62 auto [Qcur, Kcur, Vcur] = build_qkv(model.layers[il], cur,
63 n_embd_head, n_head, n_head_kv, il);
64
65 Qcur = ggml_rope_ext(
66 ctx0, Qcur, inp_pos, nullptr,
67 n_rot, rope_type, n_ctx_orig, freq_base, freq_scale,
68 ext_factor, attn_factor, beta_fast, beta_slow
69 );
70
71 Kcur = ggml_rope_ext(
72 ctx0, Kcur, inp_pos, nullptr,
73 n_rot, rope_type, n_ctx_orig, freq_base, freq_scale,
74 ext_factor, attn_factor, beta_fast, beta_slow
75 );
76
77 cb(Qcur, "Qcur", il);
78 cb(Kcur, "Kcur", il);
79 cb(Vcur, "Vcur", il);
80
81 cur = build_attn(inp_attn,
82 model.layers[il].wo, nullptr, model.layers[il].wo_s,
83 Qcur, Kcur, Vcur, nullptr, nullptr, nullptr, 1.0f/sqrtf(float(n_embd_head)), il);
84 cb(cur, "kqv_out", il);
85 }
86
87 if (il == n_layer - 1 && inp_out_ids) {
88 cur = ggml_get_rows(ctx0, cur, inp_out_ids);
89 inpL = ggml_get_rows(ctx0, inpL, inp_out_ids);
90 }
91
92 cur = ggml_add(ctx0, cur, inpL);
93
94 ggml_tensor * ffn_inp = cur;
95 cb(ffn_inp, "ffn_inp", il);
96
97 cur = build_norm(ffn_inp,
98 model.layers[il].ffn_norm, NULL__null,
99 LLM_NORM_RMS, il);
100 cb(cur, "ffn_norm", il);
101
102 cur = build_ffn(cur,
103 model.layers[il].ffn_up, NULL__null, NULL__null,
104 model.layers[il].ffn_gate, NULL__null, NULL__null,
105 model.layers[il].ffn_down, NULL__null, NULL__null,
106 NULL__null, LLM_FFN_SILU, LLM_FFN_PAR, il);
107 cb(cur, "ffn_out", il);
108
109 cur = ggml_add(ctx0, cur, ffn_inp);
110
111 // input for next layer
112 inpL = cur;
113 }
114 cur = inpL;
115
116 cur = build_norm(cur,
117 model.output_norm, NULL__null,
118 LLM_NORM_RMS, -1);
119
120 cb(cur, "result_embd", -1);
121 res->t_embd = cur;
122
123 ggml_build_forward_expand(gf, cur);
124}