HomeSort by relevance Sort by last modified time
    Searched defs:Personality (Results 1 - 7 of 7) sorted by null

  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMELFStreamer.cpp 44 assert(Index < NUM_PERSONALITY_INDEX && "Invalid personality index");
222 const MCSymbol *Personality;
285 Personality = NULL;
354 "Compact model must use __aeabi_cpp_unwind_pr0 as personality");
407 // Emit personality
408 if (Personality) {
410 MCSymbolRefExpr::Create(Personality,
428 if (NoHandlerData && !Personality)
437 Personality = Per;
  /external/llvm/include/llvm/CodeGen/
MachineModuleInfo.h 70 const Function *Personality; // Personality function.
74 : LandingPadBlock(MBB), LandingPadLabel(0), Personality(0) {}
143 /// Personalities - Vector of all personality functions ever seen. Used to
287 /// addPersonality - Provide the personality function for the exception
290 const Function *Personality);
292 /// getPersonalityIndex - Get index of the current personality function inside
296 /// getPersonalities - Return array of personality functions ever seen.
395 /// getPersonality - Return a personality function if available. The presence
  /external/llvm/lib/CodeGen/
MachineModuleInfo.cpp 278 // Always emit some info, by default "no personality" info.
409 /// addPersonality - Provide the personality function for the exception
412 const Function *Personality) {
414 LP.Personality = Personality;
417 if (Personalities[i] == Personality)
420 // If this is the first personality we're adding go
423 Personalities[0] = Personality;
425 Personalities.push_back(Personality);
549 /// getPersonality - Return the personality function for the current function
    [all...]
  /external/llvm/include/llvm/MC/
MCDwarf.h 393 MCDwarfFrameInfo() : Begin(0), End(0), Personality(0), Lsda(0),
399 const MCSymbol *Personality;
  /external/llvm/lib/MC/
MCDwarf.cpp     [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 146 /// The exceptions personality for a function.
150 // If this is non-null, this personality requires a non-standard
211 /// Determines the personality function to use when both C++
215 // The ObjC personality defers to the C++ personality for non-ObjC
216 // handlers. Unlike the C++ case, we use the same personality
227 // The GCC runtime's personality function inherently doesn't support
228 // mixed EH. Use the C++ personality just to avoid returning null.
250 const EHPersonality &Personality) {
253 Personality.PersonalityFn)
775 const EHPersonality &personality = EHPersonality::get(getLangOpts()); local
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]

Completed in 2606 milliseconds