mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-08 14:49:38 +00:00
1d59f99f5c
The lowering looks a lot like normal EH lowering, with the exception that the exceptions are caught by executing filter expression code instead of matching typeinfo globals. The filter expressions are outlined into functions which are used in landingpad clauses where typeinfo would normally go. Major aspects that still need work: - Non-call exceptions in __try bodies won't work yet. The plan is to outline the __try block in the frontend to keep things simple. - Filter expressions cannot use local variables until capturing is implemented. - __finally blocks will not run after exceptions. Fixing this requires work in the LLVM SEH preparation pass. The IR lowering looks like this: // C code: bool safe_div(int n, int d, int *r) { __try { *r = normal_div(n, d); } __except(_exception_code() == EXCEPTION_INT_DIVIDE_BY_ZERO) { return false; } return true; } ; LLVM IR: define i32 @filter(i8* %e, i8* %fp) { %ehptrs = bitcast i8* %e to i32** %ehrec = load i32** %ehptrs %code = load i32* %ehrec %matches = icmp eq i32 %code, i32 u0xC0000094 %matches.i32 = zext i1 %matches to i32 ret i32 %matches.i32 } define i1 zeroext @safe_div(i32 %n, i32 %d, i32* %r) { %rr = invoke i32 @normal_div(i32 %n, i32 %d) to label %normal unwind to label %lpad normal: store i32 %rr, i32* %r ret i1 1 lpad: %ehvals = landingpad {i8*, i32} personality i32 (...)* @__C_specific_handler catch i8* bitcast (i32 (i8*, i8*)* @filter to i8*) %ehptr = extractvalue {i8*, i32} %ehvals, i32 0 %sel = extractvalue {i8*, i32} %ehvals, i32 1 %filter_sel = call i32 @llvm.eh.seh.typeid.for(i8* bitcast (i32 (i8*, i8*)* @filter to i8*)) %matches = icmp eq i32 %sel, %filter_sel br i1 %matches, label %eh.except, label %eh.resume eh.except: ret i1 false eh.resume: resume } Reviewers: rjmccall, rsmith, majnemer Differential Revision: http://reviews.llvm.org/D5607 llvm-svn: 226760
221 lines
6.7 KiB
C++
221 lines
6.7 KiB
C++
//===- Scope.cpp - Lexical scope information --------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file implements the Scope class, which is used for recording
|
|
// information about a lexical scope.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "clang/Sema/Scope.h"
|
|
#include "clang/AST/Decl.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
using namespace clang;
|
|
|
|
void Scope::Init(Scope *parent, unsigned flags) {
|
|
AnyParent = parent;
|
|
Flags = flags;
|
|
|
|
if (parent && !(flags & FnScope)) {
|
|
BreakParent = parent->BreakParent;
|
|
ContinueParent = parent->ContinueParent;
|
|
} else {
|
|
// Control scopes do not contain the contents of nested function scopes for
|
|
// control flow purposes.
|
|
BreakParent = ContinueParent = nullptr;
|
|
}
|
|
|
|
if (parent) {
|
|
Depth = parent->Depth + 1;
|
|
PrototypeDepth = parent->PrototypeDepth;
|
|
PrototypeIndex = 0;
|
|
FnParent = parent->FnParent;
|
|
BlockParent = parent->BlockParent;
|
|
TemplateParamParent = parent->TemplateParamParent;
|
|
MSLocalManglingParent = parent->MSLocalManglingParent;
|
|
if ((Flags & (FnScope | ClassScope | BlockScope | TemplateParamScope |
|
|
FunctionPrototypeScope | AtCatchScope | ObjCMethodScope)) ==
|
|
0)
|
|
Flags |= parent->getFlags() & OpenMPSimdDirectiveScope;
|
|
} else {
|
|
Depth = 0;
|
|
PrototypeDepth = 0;
|
|
PrototypeIndex = 0;
|
|
MSLocalManglingParent = FnParent = BlockParent = nullptr;
|
|
TemplateParamParent = nullptr;
|
|
MSLocalManglingNumber = 1;
|
|
}
|
|
|
|
// If this scope is a function or contains breaks/continues, remember it.
|
|
if (flags & FnScope) FnParent = this;
|
|
// The MS mangler uses the number of scopes that can hold declarations as
|
|
// part of an external name.
|
|
if (Flags & (ClassScope | FnScope)) {
|
|
MSLocalManglingNumber = getMSLocalManglingNumber();
|
|
MSLocalManglingParent = this;
|
|
}
|
|
if (flags & BreakScope) BreakParent = this;
|
|
if (flags & ContinueScope) ContinueParent = this;
|
|
if (flags & BlockScope) BlockParent = this;
|
|
if (flags & TemplateParamScope) TemplateParamParent = this;
|
|
|
|
// If this is a prototype scope, record that.
|
|
if (flags & FunctionPrototypeScope) PrototypeDepth++;
|
|
|
|
if (flags & DeclScope) {
|
|
if (flags & FunctionPrototypeScope)
|
|
; // Prototype scopes are uninteresting.
|
|
else if ((flags & ClassScope) && getParent()->isClassScope())
|
|
; // Nested class scopes aren't ambiguous.
|
|
else if ((flags & ClassScope) && getParent()->getFlags() == DeclScope)
|
|
; // Classes inside of namespaces aren't ambiguous.
|
|
else if ((flags & EnumScope))
|
|
; // Don't increment for enum scopes.
|
|
else
|
|
incrementMSLocalManglingNumber();
|
|
}
|
|
|
|
DeclsInScope.clear();
|
|
UsingDirectives.clear();
|
|
Entity = nullptr;
|
|
ErrorTrap.reset();
|
|
NRVO.setPointerAndInt(nullptr, 0);
|
|
}
|
|
|
|
bool Scope::containedInPrototypeScope() const {
|
|
const Scope *S = this;
|
|
while (S) {
|
|
if (S->isFunctionPrototypeScope())
|
|
return true;
|
|
S = S->getParent();
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void Scope::AddFlags(unsigned FlagsToSet) {
|
|
assert((FlagsToSet & ~(BreakScope | ContinueScope)) == 0 &&
|
|
"Unsupported scope flags");
|
|
if (FlagsToSet & BreakScope) {
|
|
assert((Flags & BreakScope) == 0 && "Already set");
|
|
BreakParent = this;
|
|
}
|
|
if (FlagsToSet & ContinueScope) {
|
|
assert((Flags & ContinueScope) == 0 && "Already set");
|
|
ContinueParent = this;
|
|
}
|
|
Flags |= FlagsToSet;
|
|
}
|
|
|
|
void Scope::mergeNRVOIntoParent() {
|
|
if (VarDecl *Candidate = NRVO.getPointer()) {
|
|
if (isDeclScope(Candidate))
|
|
Candidate->setNRVOVariable(true);
|
|
}
|
|
|
|
if (getEntity())
|
|
return;
|
|
|
|
if (NRVO.getInt())
|
|
getParent()->setNoNRVO();
|
|
else if (NRVO.getPointer())
|
|
getParent()->addNRVOCandidate(NRVO.getPointer());
|
|
}
|
|
|
|
void Scope::dump() const { dumpImpl(llvm::errs()); }
|
|
|
|
void Scope::dumpImpl(raw_ostream &OS) const {
|
|
unsigned Flags = getFlags();
|
|
bool HasFlags = Flags != 0;
|
|
|
|
if (HasFlags)
|
|
OS << "Flags: ";
|
|
|
|
while (Flags) {
|
|
if (Flags & FnScope) {
|
|
OS << "FnScope";
|
|
Flags &= ~FnScope;
|
|
} else if (Flags & BreakScope) {
|
|
OS << "BreakScope";
|
|
Flags &= ~BreakScope;
|
|
} else if (Flags & ContinueScope) {
|
|
OS << "ContinueScope";
|
|
Flags &= ~ContinueScope;
|
|
} else if (Flags & DeclScope) {
|
|
OS << "DeclScope";
|
|
Flags &= ~DeclScope;
|
|
} else if (Flags & ControlScope) {
|
|
OS << "ControlScope";
|
|
Flags &= ~ControlScope;
|
|
} else if (Flags & ClassScope) {
|
|
OS << "ClassScope";
|
|
Flags &= ~ClassScope;
|
|
} else if (Flags & BlockScope) {
|
|
OS << "BlockScope";
|
|
Flags &= ~BlockScope;
|
|
} else if (Flags & TemplateParamScope) {
|
|
OS << "TemplateParamScope";
|
|
Flags &= ~TemplateParamScope;
|
|
} else if (Flags & FunctionPrototypeScope) {
|
|
OS << "FunctionPrototypeScope";
|
|
Flags &= ~FunctionPrototypeScope;
|
|
} else if (Flags & FunctionDeclarationScope) {
|
|
OS << "FunctionDeclarationScope";
|
|
Flags &= ~FunctionDeclarationScope;
|
|
} else if (Flags & AtCatchScope) {
|
|
OS << "AtCatchScope";
|
|
Flags &= ~AtCatchScope;
|
|
} else if (Flags & ObjCMethodScope) {
|
|
OS << "ObjCMethodScope";
|
|
Flags &= ~ObjCMethodScope;
|
|
} else if (Flags & SwitchScope) {
|
|
OS << "SwitchScope";
|
|
Flags &= ~SwitchScope;
|
|
} else if (Flags & TryScope) {
|
|
OS << "TryScope";
|
|
Flags &= ~TryScope;
|
|
} else if (Flags & FnTryCatchScope) {
|
|
OS << "FnTryCatchScope";
|
|
Flags &= ~FnTryCatchScope;
|
|
} else if (Flags & SEHTryScope) {
|
|
OS << "SEHTryScope";
|
|
Flags &= ~SEHTryScope;
|
|
} else if (Flags & SEHExceptScope) {
|
|
OS << "SEHExceptScope";
|
|
Flags &= ~SEHExceptScope;
|
|
} else if (Flags & OpenMPDirectiveScope) {
|
|
OS << "OpenMPDirectiveScope";
|
|
Flags &= ~OpenMPDirectiveScope;
|
|
} else if (Flags & OpenMPLoopDirectiveScope) {
|
|
OS << "OpenMPLoopDirectiveScope";
|
|
Flags &= ~OpenMPLoopDirectiveScope;
|
|
} else if (Flags & OpenMPSimdDirectiveScope) {
|
|
OS << "OpenMPSimdDirectiveScope";
|
|
Flags &= ~OpenMPSimdDirectiveScope;
|
|
}
|
|
|
|
if (Flags)
|
|
OS << " | ";
|
|
}
|
|
if (HasFlags)
|
|
OS << '\n';
|
|
|
|
if (const Scope *Parent = getParent())
|
|
OS << "Parent: (clang::Scope*)" << Parent << '\n';
|
|
|
|
OS << "Depth: " << Depth << '\n';
|
|
OS << "MSLocalManglingNumber: " << getMSLocalManglingNumber() << '\n';
|
|
if (const DeclContext *DC = getEntity())
|
|
OS << "Entity : (clang::DeclContext*)" << DC << '\n';
|
|
|
|
if (NRVO.getInt())
|
|
OS << "NRVO not allowed";
|
|
else if (NRVO.getPointer())
|
|
OS << "NRVO candidate : (clang::VarDecl*)" << NRVO.getPointer() << '\n';
|
|
}
|