HomeSort by relevance Sort by last modified time
    Searched refs:NewScope (Results 1 - 8 of 8) sorted by null

  /external/llvm/lib/Transforms/Utils/
AddDiscriminators.cpp 195 Metadata *&NewScope = R.first->second;
202 NewScope = Builder.createLexicalBlockFile(
206 NewScope, DIL->getInlinedAt()));
209 << dyn_cast<DILexicalBlockFile>(NewScope)->getDiscriminator()
233 auto *NewScope = Builder.createLexicalBlockFile(
236 Ctx, CurrentDIL->getLine(), CurrentDIL->getColumn(), NewScope,
InlineFunction.cpp 549 MDNode *NewScope = MDB.createAnonymousAliasScope(NewDomain, Name);
550 NewScopes.insert(std::make_pair(A, NewScope));
    [all...]
  /external/llvm/include/llvm/CodeGen/
LexicalScopes.h 91 void closeInsnRange(LexicalScope *NewScope = nullptr) {
96 // If Parent dominates NewScope then do not close Parent's instruction
98 if (Parent && (!NewScope || !Parent->dominates(NewScope)))
99 Parent->closeInsnRange(NewScope);
  /external/v8/src/parsing/
preparser.cc 112 Scope* top_scope = NewScope(scope_, SCRIPT_SCOPE);
117 Scope* function_scope = NewScope(scope_, FUNCTION_SCOPE, kind);
295 Scope* body_scope = NewScope(scope_, BLOCK_SCOPE);
466 Scope* block_scope = NewScope(scope_, BLOCK_SCOPE);
780 Scope* with_scope = NewScope(scope_, WITH_SCOPE);
796 Scope* cases_scope = NewScope(scope_, BLOCK_SCOPE);
857 Scope* for_scope = NewScope(scope_, BLOCK_SCOPE);
    [all...]
parser.cc 192 Scope* function_scope = NewScope(scope, FUNCTION_SCOPE, kind);
    [all...]
preparser.h     [all...]
parser.h 544 V8_INLINE Scope* NewScope(Scope* parent_scope, ScopeType scope_type,
    [all...]
parser-base.h 584 Scope* NewScope(Scope* parent, ScopeType scope_type) {
587 return NewScope(parent, scope_type, kNormalFunction);
590 Scope* NewScope(Scope* parent, ScopeType scope_type, FunctionKind kind) {
    [all...]

Completed in 115 milliseconds