Home
last modified time | relevance | path

Searched refs:checked (Results 1 – 25 of 286) sorted by relevance

12345678910>>...12

/llvm-project-15.0.7/polly/lib/External/isl/cpp/
H A Dcpp-checked.h.top21 namespace checked {
36 /* Class used to check that isl::checked::boolean,
37 * isl::checked::stat and isl::checked::size values are checked for errors.
40 bool checked = false;
66 check->checked = true;
131 check->checked = true;
136 check->checked = true;
140 check->checked = true;
165 check->checked = true;
170 check->checked = true;
[all …]
H A Dcpp-checked-conversion.h.top2 /// the default and the checked C++ bindings for isl.
13 #include <isl/cpp-checked.h>
/llvm-project-15.0.7/clang/tools/scan-build-py/lib/libscanbuild/resources/
H A Dselectable.js15 Inputs[i].checked = SummaryCheckButton.checked;
35 if (CheckButton.checked) {
38 returnObjById("AllBugsCheck").checked = true;
43 returnObjById("AllBugsCheck").checked = false;
/llvm-project-15.0.7/polly/lib/External/isl/
H A Disl_test_cpp-checked-conversion.cc22 isl::checked::set checked_set; in check_conversion_null()
38 static void f_checked(isl::checked::set set) in f_checked()
54 isl::checked::set checked_set(ctx, "{ S[i] : 0 <= i < 10 }"); in check_conversion_call()
69 isl::checked::set checked_set; in check_conversion_equal()
/llvm-project-15.0.7/libunwind/src/
H A Dlibunwind.cpp350 static bool checked = false; in logAPIs() local
352 if (!checked) { in logAPIs()
354 checked = true; in logAPIs()
362 static bool checked = false; in logUnwinding() local
364 if (!checked) { in logUnwinding()
366 checked = true; in logUnwinding()
374 static bool checked = false; in logDWARF() local
376 if (!checked) { in logDWARF()
378 checked = true; in logDWARF()
/llvm-project-15.0.7/llvm/test/LTO/Resolution/X86/
H A Dtype-checked-load.ll6 ; the llvm.type.checked.load call.
12 %pair = call {i8*, i1} @llvm.type.checked.load(i8* %ptr, i32 16, metadata !"foo")
16 declare {i8*, i1} @llvm.type.checked.load(i8* %ptr, i32 %offset, metadata %type)
/llvm-project-15.0.7/polly/lib/External/isl/interface/
H A Dplain_cpp.cc113 bool checked) : in plain_cpp_generator() argument
116 checked(checked) in plain_cpp_generator()
136 if (checked) in generate()
145 if (checked) in generate()
700 if (checked) in print_invalid()
753 if (generator.checked) in print_check_ptr()
767 if (generator.checked) in print_check_ptr_start()
784 if (generator.checked) in print_check_ptr_end()
1132 if (generator.checked) in print_downcast()
1150 if (generator.checked) in print_downcast()
[all …]
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/
H A Dtsan_sync.cpp141 for (uptr checked = 0; sz > 0; checked += kPageSize) { in ResetRange() local
145 if (!has_something && checked > (128 << 10)) in ResetRange()
149 for (uptr checked = 0; sz > 0; checked += kPageSize) { in ResetRange() local
155 if (!has_something && checked > (512 << 10)) in ResetRange()
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/
H A Dtsan_sync.cpp152 for (uptr checked = 0; sz > 0; checked += kPageSize) { in ResetRange() local
156 if (!has_something && checked > (128 << 10)) in ResetRange()
160 for (uptr checked = 0; sz > 0; checked += kPageSize) { in ResetRange() local
166 if (!has_something && checked > (512 << 10)) in ResetRange()
/llvm-project-15.0.7/llvm/test/Transforms/WholeProgramDevirt/
H A Dexpand-check.ll3 ; Test that we correctly expand the llvm.type.checked.load intrinsic in cases
25 %pair = call {i8*, i1} @llvm.type.checked.load(i8* %vtablei8, i32 0, metadata !"typeid")
55 %pair = call {i8*, i1} @llvm.type.checked.load(i8* %vtablei8, i32 1, metadata !"typeid")
60 declare {i8*, i1} @llvm.type.checked.load(i8*, i32, metadata)
H A Ddevirt-single-impl-check.ll22 %pair = call {i8*, i1} @llvm.type.checked.load(i8* %vtablei8, i32 0, metadata !"typeid")
39 declare {i8*, i1} @llvm.type.checked.load(i8*, i32, metadata)
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Dpr30715.ll19 br i1 %min.iters.check, label %for.body.preheader, label %min.iters.checked
21 for.body.preheader: ; preds = %middle.block, %min.iters.checked, %for…
22 …%indvars.iv.ph = phi i64 [ 0, %min.iters.checked ], [ 0, %for.body.lr.ph ], [ %n.vec, %middle.bloc…
25 min.iters.checked: ; preds = %for.body.lr.ph
32 vector.body.preheader: ; preds = %min.iters.checked
/llvm-project-15.0.7/llvm/test/Transforms/ThinLTOBitcodeWriter/
H A Dsplit-internal-typeid.ll24 ; M0: llvm.type.checked.load{{.*}}metadata !"2.f50b51a12bb012bebbeff978335e34cf"
25 %q = call {i8*, i1} @llvm.type.checked.load(i8* null, i32 0, metadata !3)
30 declare {i8*, i1} @llvm.type.checked.load(i8*, i32, metadata)
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/
H A Dredundant-branch-condition.rst6 Finds condition variables in nested ``if`` statements that were also checked in
19 Here `onFire` is checked both in the outer ``if`` and the inner ``if`` statement
84 The ``else`` branch is not checked currently for negated condition variable:
98 variables. More complex expressions are not checked:
H A Dunused-return-value.rst6 Warns on unused function return values. The checked functions can be configured.
13 Semicolon-separated list of functions to check. The function is checked if
15 By default the following functions are checked:
/llvm-project-15.0.7/llvm/test/Transforms/GlobalDCE/
H A Dvirtual-functions-null.ll5 declare { i8*, i1 } @llvm.type.checked.load(i8*, i32, metadata)
38 %3 = tail call { i8*, i1 } @llvm.type.checked.load(i8* null, i32 0, metadata !"vfunc1.type")
39 %4 = tail call { i8*, i1 } @llvm.type.checked.load(i8* null, i32 0, metadata !"vfunc2.type")
H A Dvirtual-functions-nonptr.ll5 declare { i8*, i1 } @llvm.type.checked.load(i8*, i32, metadata)
38 %3 = tail call { i8*, i1 } @llvm.type.checked.load(i8* null, i32 0, metadata !"vfunc1.type")
39 %4 = tail call { i8*, i1 } @llvm.type.checked.load(i8* null, i32 0, metadata !"vfunc2.type")
H A Dvirtual-functions.ll6 declare { i8*, i1 } @llvm.type.checked.load(i8*, i32, metadata)
10 ; calls through this vtable are visible and use the @llvm.type.checked.load
44 …%2 = tail call { i8*, i1 } @llvm.type.checked.load(i8* bitcast (i8** getelementptr inbounds ({ [4 …
/llvm-project-15.0.7/lldb/examples/test/
H A Dusage-config5 # The config file is checked in as .lldbtest-config and the redirected stderr
6 # and stdout are checked in as lldbtest-stderr and lldbtest-stdout, all in the
/llvm-project-15.0.7/llvm/test/ThinLTO/X86/Inputs/
H A Dcfi-unsat.ll17 %1 = tail call { i8*, i1 } @llvm.type.checked.load(i8* %vtable5, i32 8, metadata !"_ZTS1A")
39 %1 = tail call { i8*, i1 } @llvm.type.checked.load(i8* %vtable5, i32 0, metadata !"_ZTS1A")
56 declare { i8*, i1 } @llvm.type.checked.load(i8*, i32, metadata)
/llvm-project-15.0.7/llvm/test/CodeGen/Hexagon/
H A DNVJumpCmp.ll31 br i1 undef, label %for.body42.preheader6, label %min.iters.checked
33 …reheader6: ; preds = %vector.body.preheader, %min.iters.checked, %if.end
36 min.iters.checked: ; preds = %if.end
39 vector.body.preheader: ; preds = %min.iters.checked
/llvm-project-15.0.7/llvm/test/Analysis/CostModel/SystemZ/
H A Dhuge-immediates.ll5 ; Cost of a load which is checked for folding into a compare w/ memory.
13 ; Cost of a compare which is checked for elimination by Load and Test.
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dhoist-spill.ll57 br i1 undef, label %for.body6, label %min.iters.checked
59 min.iters.checked: ; preds = %for.body6.preheader
62 vector.memcheck: ; preds = %min.iters.checked
103 … ; preds = %for.body6, %middle.block, %vector.memcheck, %min.iters.checked, %for.body6.prehe…
104 … undef, %for.body6 ], [ %tmp12, %vector.memcheck ], [ %tmp12, %min.iters.checked ], [ %tmp12, %for…
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/cert/
H A Derr33-c.rst9 functions are checked:
195 The list of checked functions is taken from the rule, with following exception:
198 argument. Therefore the following functions are not checked:
/llvm-project-15.0.7/llvm/test/Transforms/IndVarSimplify/
H A Deliminate-comparison.ll951 ; CHECK: checked.1:
953 ; CHECK: checked.2:
973 checked.1:
977 checked.2:
1001 ; CHECK: checked.1:
1023 checked.1:
1027 checked.2:
1077 checked.1:
1080 checked.2:
1127 checked.1:
[all …]

12345678910>>...12