Home
last modified time | relevance | path

Searched refs:MayThrow (Results 1 – 25 of 67) sorted by relevance

123

/dports/devel/folly/folly-2021.12.27.00/folly/detail/test/
H A DStaticSingletonManagerTest.cpp29 struct MayThrow { struct
30 FOLLY_NOINLINE MayThrow() noexcept(Noexcept) { check_doit(); } in MayThrow() function
31 FOLLY_NOINLINE ~MayThrow() { check_doit(); } in ~MayThrow() argument
40 return &createGlobal<MayThrow<false>, void>(); in check_throw()
44 return &createGlobal<MayThrow<true>, void>(); in check_nothrow()
/dports/devel/llvm90/llvm-9.0.1.src/lib/Analysis/
H A DMustExecute.cpp41 return MayThrow; in anyBlockMayThrow()
49 MayThrow = HeaderMayThrow; in computeLoopSafetyInfo()
57 (BB != BBE) && !MayThrow; ++BB) in computeLoopSafetyInfo()
58 MayThrow |= !isGuaranteedToTransferExecutionToSuccessor(*BB); in computeLoopSafetyInfo()
68 return MayThrow; in anyBlockMayThrow()
75 MayThrow = false; in computeLoopSafetyInfo()
79 MayThrow = true; in computeLoopSafetyInfo()
/dports/devel/llvm80/llvm-8.0.1.src/lib/Analysis/
H A DMustExecute.cpp42 return MayThrow; in anyBlockMayThrow()
50 MayThrow = HeaderMayThrow; in computeLoopSafetyInfo()
58 (BB != BBE) && !MayThrow; ++BB) in computeLoopSafetyInfo()
59 MayThrow |= !isGuaranteedToTransferExecutionToSuccessor(*BB); in computeLoopSafetyInfo()
69 return MayThrow; in anyBlockMayThrow()
76 MayThrow = false; in computeLoopSafetyInfo()
80 MayThrow = true; in computeLoopSafetyInfo()
/dports/devel/llvm70/llvm-7.0.1.src/lib/Analysis/
H A DMustExecute.cpp32 SafetyInfo->MayThrow = false;
38 SafetyInfo->MayThrow = SafetyInfo->HeaderMayThrow;
46 (BB != BBE) && !SafetyInfo->MayThrow; ++BB)
47 SafetyInfo->MayThrow |=
124 if (SafetyInfo->MayThrow)
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/ci/
H A DciMethodBlocks.hpp80 MayThrow = (1 << 2), enumerator
109 bool may_throw() const { return (_flags & MayThrow) != 0; } in may_throw()
117 void set_may_throw() { _flags |= MayThrow; } in set_may_throw()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/ci/
H A DciMethodBlocks.hpp80 MayThrow = (1 << 2), enumerator
109 bool may_throw() const { return (_flags & MayThrow) != 0; } in may_throw()
117 void set_may_throw() { _flags |= MayThrow; } in set_may_throw()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/ci/
H A DciMethodBlocks.hpp80 MayThrow = (1 << 2), enumerator
109 bool may_throw() const { return (_flags & MayThrow) != 0; } in may_throw()
117 void set_may_throw() { _flags |= MayThrow; } in set_may_throw()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/share/ci/
H A DciMethodBlocks.hpp78 MayThrow = (1 << 2), enumerator
107 bool may_throw() const { return (_flags & MayThrow) != 0; } in may_throw()
115 void set_may_throw() { _flags |= MayThrow; } in set_may_throw()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/share/ci/
H A DciMethodBlocks.hpp78 MayThrow = (1 << 2), enumerator
107 bool may_throw() const { return (_flags & MayThrow) != 0; } in may_throw()
115 void set_may_throw() { _flags |= MayThrow; } in set_may_throw()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/share/ci/
H A DciMethodBlocks.hpp80 MayThrow = (1 << 2), enumerator
109 bool may_throw() const { return (_flags & MayThrow) != 0; } in may_throw()
117 void set_may_throw() { _flags |= MayThrow; } in set_may_throw()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/ci/
H A DciMethodBlocks.hpp80 MayThrow = (1 << 2), enumerator
109 bool may_throw() const { return (_flags & MayThrow) != 0; } in may_throw()
117 void set_may_throw() { _flags |= MayThrow; } in set_may_throw()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/share/ci/
H A DciMethodBlocks.hpp80 MayThrow = (1 << 2), enumerator
109 bool may_throw() const { return (_flags & MayThrow) != 0; } in may_throw()
117 void set_may_throw() { _flags |= MayThrow; } in set_may_throw()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/ci/
H A DciMethodBlocks.hpp80 MayThrow = (1 << 2), enumerator
109 bool may_throw() const { return (_flags & MayThrow) != 0; } in may_throw()
117 void set_may_throw() { _flags |= MayThrow; } in set_may_throw()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/ci/
H A DciMethodBlocks.hpp80 MayThrow = (1 << 2), enumerator
109 bool may_throw() const { return (_flags & MayThrow) != 0; } in may_throw()
117 void set_may_throw() { _flags |= MayThrow; } in set_may_throw()
/dports/devel/llvm10/llvm-10.0.1.src/lib/Analysis/
H A DMustExecute.cpp48 return MayThrow; in anyBlockMayThrow()
56 MayThrow = HeaderMayThrow; in computeLoopSafetyInfo()
64 (BB != BBE) && !MayThrow; ++BB) in computeLoopSafetyInfo()
65 MayThrow |= !isGuaranteedToTransferExecutionToSuccessor(*BB); in computeLoopSafetyInfo()
75 return MayThrow; in anyBlockMayThrow()
82 MayThrow = false; in computeLoopSafetyInfo()
86 MayThrow = true; in computeLoopSafetyInfo()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DMustExecute.cpp48 return MayThrow; in anyBlockMayThrow()
56 MayThrow = HeaderMayThrow; in computeLoopSafetyInfo()
64 (BB != BBE) && !MayThrow; ++BB) in computeLoopSafetyInfo()
65 MayThrow |= !isGuaranteedToTransferExecutionToSuccessor(*BB); in computeLoopSafetyInfo()
75 return MayThrow; in anyBlockMayThrow()
82 MayThrow = false; in computeLoopSafetyInfo()
86 MayThrow = true; in computeLoopSafetyInfo()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/lib/Analysis/
H A DMustExecute.cpp48 return MayThrow; in anyBlockMayThrow()
56 MayThrow = HeaderMayThrow; in computeLoopSafetyInfo()
64 (BB != BBE) && !MayThrow; ++BB) in computeLoopSafetyInfo()
65 MayThrow |= !isGuaranteedToTransferExecutionToSuccessor(*BB); in computeLoopSafetyInfo()
75 return MayThrow; in anyBlockMayThrow()
82 MayThrow = false; in computeLoopSafetyInfo()
86 MayThrow = true; in computeLoopSafetyInfo()
/dports/devel/llvm90/llvm-9.0.1.src/include/llvm/Analysis/
H A DMustExecute.h98 bool MayThrow = false; // The current loop contains an instruction which variable
124 bool MayThrow = false; // The current loop contains an instruction which variable
/dports/devel/llvm80/llvm-8.0.1.src/include/llvm/Analysis/
H A DMustExecute.h99 bool MayThrow = false; // The current loop contains an instruction which variable
125 bool MayThrow = false; // The current loop contains an instruction which variable
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/lib/Analysis/
H A DMustExecute.cpp48 return MayThrow; in anyBlockMayThrow()
56 MayThrow = HeaderMayThrow; in computeLoopSafetyInfo()
64 (BB != BBE) && !MayThrow; ++BB) in computeLoopSafetyInfo()
65 MayThrow |= !isGuaranteedToTransferExecutionToSuccessor(*BB); in computeLoopSafetyInfo()
75 return MayThrow; in anyBlockMayThrow()
82 MayThrow = false; in computeLoopSafetyInfo()
86 MayThrow = true; in computeLoopSafetyInfo()
/dports/devel/llvm11/llvm-11.0.1.src/lib/Analysis/
H A DMustExecute.cpp48 return MayThrow; in anyBlockMayThrow()
56 MayThrow = HeaderMayThrow; in computeLoopSafetyInfo()
64 (BB != BBE) && !MayThrow; ++BB) in computeLoopSafetyInfo()
65 MayThrow |= !isGuaranteedToTransferExecutionToSuccessor(*BB); in computeLoopSafetyInfo()
75 return MayThrow; in anyBlockMayThrow()
82 MayThrow = false; in computeLoopSafetyInfo()
86 MayThrow = true; in computeLoopSafetyInfo()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/lib/Analysis/
H A DMustExecute.cpp50 return MayThrow; in anyBlockMayThrow()
58 MayThrow = HeaderMayThrow; in computeLoopSafetyInfo()
66 (BB != BBE) && !MayThrow; ++BB) in computeLoopSafetyInfo()
67 MayThrow |= !isGuaranteedToTransferExecutionToSuccessor(*BB); in computeLoopSafetyInfo()
77 return MayThrow; in anyBlockMayThrow()
84 MayThrow = false; in computeLoopSafetyInfo()
88 MayThrow = true; in computeLoopSafetyInfo()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/lib/Analysis/
H A DMustExecute.cpp51 return MayThrow; in anyBlockMayThrow()
59 MayThrow = HeaderMayThrow; in computeLoopSafetyInfo()
67 (BB != BBE) && !MayThrow; ++BB) in computeLoopSafetyInfo()
68 MayThrow |= !isGuaranteedToTransferExecutionToSuccessor(*BB); in computeLoopSafetyInfo()
78 return MayThrow; in anyBlockMayThrow()
85 MayThrow = false; in computeLoopSafetyInfo()
89 MayThrow = true; in computeLoopSafetyInfo()
/dports/graphics/llvm-mesa/llvm-13.0.1.src/lib/Analysis/
H A DMustExecute.cpp51 return MayThrow; in anyBlockMayThrow()
59 MayThrow = HeaderMayThrow; in computeLoopSafetyInfo()
67 (BB != BBE) && !MayThrow; ++BB) in computeLoopSafetyInfo()
68 MayThrow |= !isGuaranteedToTransferExecutionToSuccessor(*BB); in computeLoopSafetyInfo()
78 return MayThrow; in anyBlockMayThrow()
85 MayThrow = false; in computeLoopSafetyInfo()
89 MayThrow = true; in computeLoopSafetyInfo()
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/lib/Analysis/
H A DMustExecute.cpp50 return MayThrow; in anyBlockMayThrow()
58 MayThrow = HeaderMayThrow; in computeLoopSafetyInfo()
66 (BB != BBE) && !MayThrow; ++BB) in computeLoopSafetyInfo()
67 MayThrow |= !isGuaranteedToTransferExecutionToSuccessor(*BB); in computeLoopSafetyInfo()
77 return MayThrow; in anyBlockMayThrow()
84 MayThrow = false; in computeLoopSafetyInfo()
88 MayThrow = true; in computeLoopSafetyInfo()

123