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

  /external/llvm/include/llvm/CodeGen/
LexicalScopes.h 43 /// LexicalScope - This class is used to track scope information.
45 class LexicalScope {
48 LexicalScope(LexicalScope *P, const MDNode *D, const MDNode *I, bool A)
56 LexicalScope *getParent() const { return Parent; }
61 SmallVectorImpl<LexicalScope *> &getChildren() { return Children; }
65 void addChild(LexicalScope *S) { Children.push_back(S); }
88 void closeInsnRange(LexicalScope *NewScope = nullptr) {
100 bool dominates(const LexicalScope *S) const {
108 // Depth First Search support to walk and manipulate LexicalScope hierarchy
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.h 510 class LexicalScope: protected RunCleanupsScope {
513 LexicalScope *ParentScope;
515 LexicalScope(const LexicalScope &) LLVM_DELETED_FUNCTION;
516 void operator=(const LexicalScope &) LLVM_DELETED_FUNCTION;
520 explicit LexicalScope(CodeGenFunction &CGF, SourceRange Range)
534 ~LexicalScope() {
    [all...]

Completed in 50 milliseconds