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

  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
LexicalScopes.h 33 class LexicalScope;
61 bool isCurrentFunctionScope(const LexicalScope *LS) {
66 LexicalScope *getCurrentFunctionScope() const { return CurrentFnLexicalScope;}
80 LexicalScope *findLexicalScope(DebugLoc DL);
83 ArrayRef<LexicalScope *> getAbstractScopesList() const {
88 LexicalScope *findAbstractScope(const MDNode *N) {
94 LexicalScope *findInlinedScope(DebugLoc DL) {
99 LexicalScope *findLexicalScope(const MDNode *N) {
110 LexicalScope *getOrCreateLexicalScope(DebugLoc DL);
113 LexicalScope *getOrCreateRegularScope(MDNode *Scope)
    [all...]
  /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 DILocalScope *D, const DILocation *I,
59 LexicalScope *getParent() const { return Parent; }
64 SmallVectorImpl<LexicalScope *> &getChildren() { return Children; }
68 void addChild(LexicalScope *S) { Children.push_back(S); }
91 void closeInsnRange(LexicalScope *NewScope = nullptr) {
103 bool dominates(const LexicalScope *S) const {
111 // Depth First Search support to walk and manipulate LexicalScope hierarchy
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.h 534 class LexicalScope : public RunCleanupsScope {
537 LexicalScope *ParentScope;
539 LexicalScope(const LexicalScope &) = delete;
540 void operator=(const LexicalScope &) = delete;
544 explicit LexicalScope(CodeGenFunction &CGF, SourceRange Range)
558 ~LexicalScope() {
    [all...]

Completed in 161 milliseconds