Bug Summary

File:llvm/lib/CodeGen/SafeStackLayout.cpp
Warning:line 104, column 5
Value stored to 'LastRegionEnd' is never read

Annotated Source Code

Press '?' to see keyboard shortcuts

clang -cc1 -cc1 -triple x86_64-pc-linux-gnu -analyze -disable-free -disable-llvm-verifier -discard-value-names -main-file-name SafeStackLayout.cpp -analyzer-store=region -analyzer-opt-analyze-nested-blocks -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 -mframe-pointer=none -fmath-errno -fno-rounding-math -mconstructor-aliases -munwind-tables -target-cpu x86-64 -tune-cpu generic -debugger-tuning=gdb -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/build/llvm-toolchain-snapshot-14~++20210828111110+16086d47c0d0/build-llvm/lib/CodeGen -resource-dir /usr/lib/llvm-14/lib/clang/14.0.0 -D _DEBUG -D _GNU_SOURCE -D __STDC_CONSTANT_MACROS -D __STDC_FORMAT_MACROS -D __STDC_LIMIT_MACROS -I /build/llvm-toolchain-snapshot-14~++20210828111110+16086d47c0d0/build-llvm/lib/CodeGen -I /build/llvm-toolchain-snapshot-14~++20210828111110+16086d47c0d0/llvm/lib/CodeGen -I /build/llvm-toolchain-snapshot-14~++20210828111110+16086d47c0d0/build-llvm/include -I /build/llvm-toolchain-snapshot-14~++20210828111110+16086d47c0d0/llvm/include -D NDEBUG -U NDEBUG -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/backward -internal-isystem /usr/lib/llvm-14/lib/clang/14.0.0/include -internal-isystem /usr/local/include -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/10/../../../../x86_64-linux-gnu/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -O2 -Wno-unused-parameter -Wwrite-strings -Wno-missing-field-initializers -Wno-long-long -Wno-maybe-uninitialized -Wno-class-memaccess -Wno-redundant-move -Wno-pessimizing-move -Wno-noexcept-type -Wno-comment -std=c++14 -fdeprecated-macro -fdebug-compilation-dir=/build/llvm-toolchain-snapshot-14~++20210828111110+16086d47c0d0/build-llvm/lib/CodeGen -fdebug-prefix-map=/build/llvm-toolchain-snapshot-14~++20210828111110+16086d47c0d0=. -ferror-limit 19 -fvisibility-inlines-hidden -stack-protector 2 -fgnuc-version=4.2.1 -vectorize-loops -vectorize-slp -analyzer-output=html -analyzer-config stable-report-filename=true -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o /tmp/scan-build-2021-08-28-193554-24367-1 -x c++ /build/llvm-toolchain-snapshot-14~++20210828111110+16086d47c0d0/llvm/lib/CodeGen/SafeStackLayout.cpp
1//===- SafeStackLayout.cpp - SafeStack frame layout -----------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "SafeStackLayout.h"
10#include "llvm/IR/Value.h"
11#include "llvm/Support/CommandLine.h"
12#include "llvm/Support/Compiler.h"
13#include "llvm/Support/Debug.h"
14#include "llvm/Support/MathExtras.h"
15#include "llvm/Support/raw_ostream.h"
16#include <algorithm>
17#include <cassert>
18
19using namespace llvm;
20using namespace llvm::safestack;
21
22#define DEBUG_TYPE"safestacklayout" "safestacklayout"
23
24static cl::opt<bool> ClLayout("safe-stack-layout",
25 cl::desc("enable safe stack layout"), cl::Hidden,
26 cl::init(true));
27
28LLVM_DUMP_METHOD__attribute__((noinline)) __attribute__((__used__)) void StackLayout::print(raw_ostream &OS) {
29 OS << "Stack regions:\n";
30 for (unsigned i = 0; i < Regions.size(); ++i) {
31 OS << " " << i << ": [" << Regions[i].Start << ", " << Regions[i].End
32 << "), range " << Regions[i].Range << "\n";
33 }
34 OS << "Stack objects:\n";
35 for (auto &IT : ObjectOffsets) {
36 OS << " at " << IT.getSecond() << ": " << *IT.getFirst() << "\n";
37 }
38}
39
40void StackLayout::addObject(const Value *V, unsigned Size, unsigned Alignment,
41 const StackLifetime::LiveRange &Range) {
42 StackObjects.push_back({V, Size, Alignment, Range});
43 ObjectAlignments[V] = Alignment;
44 MaxAlignment = std::max(MaxAlignment, Alignment);
45}
46
47static unsigned AdjustStackOffset(unsigned Offset, unsigned Size,
48 unsigned Alignment) {
49 return alignTo(Offset + Size, Alignment) - Size;
50}
51
52void StackLayout::layoutObject(StackObject &Obj) {
53 if (!ClLayout) {
54 // If layout is disabled, just grab the next aligned address.
55 // This effectively disables stack coloring as well.
56 unsigned LastRegionEnd = Regions.empty() ? 0 : Regions.back().End;
57 unsigned Start = AdjustStackOffset(LastRegionEnd, Obj.Size, Obj.Alignment);
58 unsigned End = Start + Obj.Size;
59 Regions.emplace_back(Start, End, Obj.Range);
60 ObjectOffsets[Obj.Handle] = End;
61 return;
62 }
63
64 LLVM_DEBUG(dbgs() << "Layout: size " << Obj.Size << ", align "do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("safestacklayout")) { dbgs() << "Layout: size " <<
Obj.Size << ", align " << Obj.Alignment <<
", range " << Obj.Range << "\n"; } } while (false
)
65 << Obj.Alignment << ", range " << Obj.Range << "\n")do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("safestacklayout")) { dbgs() << "Layout: size " <<
Obj.Size << ", align " << Obj.Alignment <<
", range " << Obj.Range << "\n"; } } while (false
)
;
66 assert(Obj.Alignment <= MaxAlignment)(static_cast <bool> (Obj.Alignment <= MaxAlignment) ?
void (0) : __assert_fail ("Obj.Alignment <= MaxAlignment"
, "/build/llvm-toolchain-snapshot-14~++20210828111110+16086d47c0d0/llvm/lib/CodeGen/SafeStackLayout.cpp"
, 66, __extension__ __PRETTY_FUNCTION__))
;
67 unsigned Start = AdjustStackOffset(0, Obj.Size, Obj.Alignment);
68 unsigned End = Start + Obj.Size;
69 LLVM_DEBUG(dbgs() << " First candidate: " << Start << " .. " << End << "\n")do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("safestacklayout")) { dbgs() << " First candidate: " <<
Start << " .. " << End << "\n"; } } while (
false)
;
70 for (const StackRegion &R : Regions) {
71 LLVM_DEBUG(dbgs() << " Examining region: " << R.Start << " .. " << R.Enddo { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("safestacklayout")) { dbgs() << " Examining region: "
<< R.Start << " .. " << R.End << ", range "
<< R.Range << "\n"; } } while (false)
72 << ", range " << R.Range << "\n")do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("safestacklayout")) { dbgs() << " Examining region: "
<< R.Start << " .. " << R.End << ", range "
<< R.Range << "\n"; } } while (false)
;
73 assert(End >= R.Start)(static_cast <bool> (End >= R.Start) ? void (0) : __assert_fail
("End >= R.Start", "/build/llvm-toolchain-snapshot-14~++20210828111110+16086d47c0d0/llvm/lib/CodeGen/SafeStackLayout.cpp"
, 73, __extension__ __PRETTY_FUNCTION__))
;
74 if (Start >= R.End) {
75 LLVM_DEBUG(dbgs() << " Does not intersect, skip.\n")do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("safestacklayout")) { dbgs() << " Does not intersect, skip.\n"
; } } while (false)
;
76 continue;
77 }
78 if (Obj.Range.overlaps(R.Range)) {
79 // Find the next appropriate location.
80 Start = AdjustStackOffset(R.End, Obj.Size, Obj.Alignment);
81 End = Start + Obj.Size;
82 LLVM_DEBUG(dbgs() << " Overlaps. Next candidate: " << Start << " .. "do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("safestacklayout")) { dbgs() << " Overlaps. Next candidate: "
<< Start << " .. " << End << "\n"; }
} while (false)
83 << End << "\n")do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("safestacklayout")) { dbgs() << " Overlaps. Next candidate: "
<< Start << " .. " << End << "\n"; }
} while (false)
;
84 continue;
85 }
86 if (End <= R.End) {
87 LLVM_DEBUG(dbgs() << " Reusing region(s).\n")do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("safestacklayout")) { dbgs() << " Reusing region(s).\n"
; } } while (false)
;
88 break;
89 }
90 }
91
92 unsigned LastRegionEnd = Regions.empty() ? 0 : Regions.back().End;
93 if (End > LastRegionEnd) {
94 // Insert a new region at the end. Maybe two.
95 if (Start > LastRegionEnd) {
96 LLVM_DEBUG(dbgs() << " Creating gap region: " << LastRegionEnd << " .. "do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("safestacklayout")) { dbgs() << " Creating gap region: "
<< LastRegionEnd << " .. " << Start <<
"\n"; } } while (false)
97 << Start << "\n")do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("safestacklayout")) { dbgs() << " Creating gap region: "
<< LastRegionEnd << " .. " << Start <<
"\n"; } } while (false)
;
98 Regions.emplace_back(LastRegionEnd, Start, StackLifetime::LiveRange(0));
99 LastRegionEnd = Start;
100 }
101 LLVM_DEBUG(dbgs() << " Creating new region: " << LastRegionEnd << " .. "do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("safestacklayout")) { dbgs() << " Creating new region: "
<< LastRegionEnd << " .. " << End <<
", range " << Obj.Range << "\n"; } } while (false
)
102 << End << ", range " << Obj.Range << "\n")do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("safestacklayout")) { dbgs() << " Creating new region: "
<< LastRegionEnd << " .. " << End <<
", range " << Obj.Range << "\n"; } } while (false
)
;
103 Regions.emplace_back(LastRegionEnd, End, Obj.Range);
104 LastRegionEnd = End;
Value stored to 'LastRegionEnd' is never read
105 }
106
107 // Split starting and ending regions if necessary.
108 for (unsigned i = 0; i < Regions.size(); ++i) {
109 StackRegion &R = Regions[i];
110 if (Start > R.Start && Start < R.End) {
111 StackRegion R0 = R;
112 R.Start = R0.End = Start;
113 Regions.insert(&R, R0);
114 continue;
115 }
116 if (End > R.Start && End < R.End) {
117 StackRegion R0 = R;
118 R0.End = R.Start = End;
119 Regions.insert(&R, R0);
120 break;
121 }
122 }
123
124 // Update live ranges for all affected regions.
125 for (StackRegion &R : Regions) {
126 if (Start < R.End && End > R.Start)
127 R.Range.join(Obj.Range);
128 if (End <= R.End)
129 break;
130 }
131
132 ObjectOffsets[Obj.Handle] = End;
133}
134
135void StackLayout::computeLayout() {
136 // Simple greedy algorithm.
137 // If this is replaced with something smarter, it must preserve the property
138 // that the first object is always at the offset 0 in the stack frame (for
139 // StackProtectorSlot), or handle stack protector in some other way.
140
141 // Sort objects by size (largest first) to reduce fragmentation.
142 if (StackObjects.size() > 2)
143 llvm::stable_sort(drop_begin(StackObjects),
144 [](const StackObject &a, const StackObject &b) {
145 return a.Size > b.Size;
146 });
147
148 for (auto &Obj : StackObjects)
149 layoutObject(Obj);
150
151 LLVM_DEBUG(print(dbgs()))do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("safestacklayout")) { print(dbgs()); } } while (false)
;
152}