Bug Summary

File:root/firefox-clang/third_party/llama.cpp/src/models/neo-bert.cpp
Warning:line 61, 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 neo-bert.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/neo-bert.cpp
1#include "models.h"
2
3void llama_model_neo_bert::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() == 28) {
7 type = LLM_TYPE_250M;
8 }
9}
10
11void llama_model_neo_bert::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 cls = create_tensor(tn(LLM_TENSOR_CLS, "weight"), {n_embd, n_embd}, TENSOR_NOT_REQUIRED);
17 cls_b = create_tensor(tn(LLM_TENSOR_CLS, "bias"), {n_embd}, TENSOR_NOT_REQUIRED);
18
19 cls_out = create_tensor(tn(LLM_TENSOR_CLS_OUT, "weight"), {n_embd, hparams.n_cls_out}, TENSOR_NOT_REQUIRED);
20 cls_out_b = create_tensor(tn(LLM_TENSOR_CLS_OUT, "bias"), {hparams.n_cls_out}, TENSOR_NOT_REQUIRED);
21
22 output_norm_enc = create_tensor(tn(LLM_TENSOR_ENC_OUTPUT_NORM, "weight"), {n_embd}, 0);
23
24 for (int i = 0; i < n_layer; ++i) {
25 auto & layer = layers[i];
26
27 layer.attn_norm = create_tensor(tn(LLM_TENSOR_ATTN_NORM, "weight", i), {n_embd}, 0);
28
29 layer.wqkv = create_tensor(tn(LLM_TENSOR_ATTN_QKV, "weight", i), {n_embd, n_embd + 2*n_embd_gqa}, 0);
30 layer.wo = create_tensor(tn(LLM_TENSOR_ATTN_OUT, "weight", i), {n_embd, n_embd}, 0);
31
32 layer.ffn_norm = create_tensor(tn(LLM_TENSOR_FFN_NORM, "weight", i), {n_embd}, 0);
33
34 layer.ffn_up = create_tensor(tn(LLM_TENSOR_FFN_UP, "weight", i), {n_embd, n_ff*2}, 0);
35 layer.ffn_down = create_tensor(tn(LLM_TENSOR_FFN_DOWN, "weight", i), {n_ff, n_embd}, 0);
36 }
37}
38
39std::unique_ptr<llm_graph_context> llama_model_neo_bert::build_arch_graph(const llm_graph_params & params) const {
40 return std::make_unique<graph>(*this, params);
41}
42
43llama_model_neo_bert::graph::graph(const llama_model & model, const llm_graph_params & params) : llm_graph_context(params) {
44 const int64_t n_embd_head = hparams.n_embd_head_v();
45
46 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/neo-bert.cpp"
, 46, "GGML_ASSERT(%s) failed", "n_embd_head == hparams.n_embd_head_k()"
)
;
47
48 ggml_tensor * cur;
49 ggml_tensor * inpL;
50 ggml_tensor * inp_pos = build_inp_pos();
51
52 // construct input embeddings (token, type, position)
53 inpL = build_inp_embd(model.tok_embd);
54 cb(inpL, "inp_embd", -1);
55
56 auto * inp_attn = build_attn_inp_no_cache();
57
58 ggml_tensor * inp_out_ids = build_inp_out_ids();
59
60 for (int il = 0; il < n_layer; ++il) {
61 ggml_tensor * cur = inpL;
Value stored to 'cur' during its initialization is never read
62
63 // pre-norm
64 cur = build_norm(inpL,
65 model.layers[il].attn_norm, NULL__null,
66 LLM_NORM_RMS, il);
67
68 {
69 auto [Qcur, Kcur, Vcur] = build_qkv(model.layers[il], cur,
70 n_embd_head, n_head, n_head_kv, il);
71
72 // RoPE
73 Qcur = ggml_rope_ext(
74 ctx0, Qcur, inp_pos, nullptr,
75 n_rot, rope_type, n_ctx_orig, freq_base, freq_scale,
76 ext_factor, attn_factor, beta_fast, beta_slow
77 );
78
79 Kcur = ggml_rope_ext(
80 ctx0, Kcur, inp_pos, nullptr,
81 n_rot, rope_type, n_ctx_orig, freq_base, freq_scale,
82 ext_factor, attn_factor, beta_fast, beta_slow
83 );
84
85 cb(Qcur, "Qcur", il);
86 cb(Kcur, "Kcur", il);
87 cb(Vcur, "Vcur", il);
88
89 cur = build_attn(inp_attn,
90 model.layers[il].wo, nullptr, model.layers[il].wo_s,
91 Qcur, Kcur, Vcur, nullptr, nullptr, nullptr, 1.0f/sqrtf(float(n_embd_head)), il);
92 cb(cur, "kqv_out", il);
93 }
94 if (il == n_layer - 1 && inp_out_ids) {
95 cur = ggml_get_rows(ctx0, cur, inp_out_ids);
96 inpL = ggml_get_rows(ctx0, inpL, inp_out_ids);
97 }
98 // re-add the layer input
99 cur = ggml_add(ctx0, cur, inpL);
100
101 ggml_tensor * ffn_inp = cur;
102 cb(ffn_inp, "ffn_inp", il);
103
104 // pre-norm
105 cur = build_norm(ffn_inp,
106 model.layers[il].ffn_norm, NULL__null,
107 LLM_NORM_RMS, il);
108 cb(cur, "ffn_norm", il);
109
110 // feed-forward network
111 cur = build_ffn(cur,
112 model.layers[il].ffn_up,
113 NULL__null, NULL__null, NULL__null, NULL__null, NULL__null,
114 model.layers[il].ffn_down,
115 NULL__null, NULL__null, NULL__null,
116 LLM_FFN_SWIGLU, LLM_FFN_SEQ, il);
117
118 // attentions bypass the intermediate layer
119 cur = ggml_add(ctx0, cur, ffn_inp);
120
121 // input for next layer
122 inpL = cur;
123 }
124 cur = inpL;
125
126 cur = build_norm(cur,
127 model.output_norm_enc, NULL__null,
128 LLM_NORM_RMS, -1);
129
130 cb(cur, "result_embd", -1);
131 res->t_embd = cur;
132
133 ggml_build_forward_expand(gf, cur);
134}