OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Personality
(Results
1 - 10
of
10
) sorted by null
/external/llvm/lib/Analysis/
EHPersonalities.cpp
20
/// See if the given exception handling
personality
function is one that we
41
EHPersonality
Personality
= classifyEHPersonality(F->getPersonalityFn());
42
// We can't simplify any invokes to nounwind functions if the
personality
45
return !isAsynchronousEHPersonality(
Personality
);
/external/llvm/lib/Target/X86/
X86WinEHState.cpp
10
// All functions using an MSVC EH
personality
use an explicitly updated state
92
EHPersonality
Personality
= EHPersonality::Unknown;
144
// Check the
personality
. Do nothing if this
personality
doesn't use funclets.
151
Personality
= classifyEHPersonality(PersonalityFn);
152
if (!isFuncletEHPersonality(
Personality
))
184
Personality
= EHPersonality::Unknown;
253
// fs:00) and the
personality
function for the current frame. The data before
254
// and after that is
personality
function specific.
256
assert(
Personality
== EHPersonality::MSVC_CXX |
[
all
...]
X86ISelLowering.cpp
[
all
...]
/external/llvm/include/llvm/MC/
MCDwarf.h
494
: Begin(nullptr), End(nullptr),
Personality
(nullptr), Lsda(nullptr),
500
const MCSymbol *
Personality
;
/external/llvm/lib/CodeGen/
WinEHPrepare.cpp
11
// backend wants for functions using a
personality
function from a runtime
12
// provided by MSVC. Functions with other
personality
functions are left alone
14
//
personality
functions require cleanup code to be outlined, and the C++
15
//
personality
requires catch handler code to be outlined.
82
EHPersonality
Personality
= EHPersonality::Unknown;
102
// Classify the
personality
to see what kind of preparation we need.
103
Personality
= classifyEHPersonality(Fn.getPersonalityFn());
105
// Do nothing if this is not a funclet-based
personality
.
106
if (!isFuncletEHPersonality(
Personality
))
284
report_fatal_error("Cleanup funclets for the MSVC++
personality
cannot
[
all
...]
/external/llvm/lib/MC/
MCDwarf.cpp
[
all
...]
/external/llvm/lib/Transforms/Utils/
InlineFunction.cpp
[
all
...]
/external/clang/lib/CodeGen/
CGException.cpp
110
/// On Win64, use libgcc's SEH
personality
function. We fall back to dwarf on
154
/// Determines the
personality
function to use when both C++
159
// The ObjC
personality
defers to the C++
personality
for non-ObjC
160
// handlers. Unlike the C++ case, we use the same
personality
172
// The GCC runtime's
personality
function inherently doesn't support
173
// mixed EH. Use the C++
personality
just to avoid returning null.
194
// Functions using SEH get an SEH
personality
.
198
// Try to pick a
personality
function that is compatible with MSVC if we're
200
// the GCC-style
personality
function
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp
[
all
...]
/external/llvm/tools/llvm-objdump/
MachODump.cpp
[
all
...]
Completed in 335 milliseconds