Changeset 0d070ca for src


Ignore:
Timestamp:
Aug 11, 2020, 5:07:56 PM (4 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
343d10e
Parents:
22f94a4
Message:

disabled new heaptrace feature

Location:
src
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Pass.proto.hpp

    r22f94a4 r0d070ca  
    248248        template< typename pass_t >
    249249        static inline auto beginTrace(pass_t &, int) -> decltype( pass_t::traceId, void() ) {
    250                 Stats::Heap::stacktrace_push(pass_t::traceId);
     250                // Stats::Heap::stacktrace_push(pass_t::traceId);
    251251        }
    252252
    253253        template< typename pass_t >
    254254        static inline auto endTrace(pass_t &, int) -> decltype( pass_t::traceId, void() ) {
    255                 Stats::Heap::stacktrace_pop();
     255                // Stats::Heap::stacktrace_pop();
    256256        }
    257257
  • src/AST/TypeSubstitution.cpp

    r22f94a4 r0d070ca  
    2020
    2121
    22 size_t TypeSubstitution::Substituter::traceId = Stats::Heap::new_stacktrace_id("TypeSubstitution");
     22// size_t TypeSubstitution::Substituter::traceId = Stats::Heap::new_stacktrace_id("TypeSubstitution");
    2323
    2424TypeSubstitution::TypeSubstitution() {
  • src/ResolvExpr/CandidateFinder.cpp

    r22f94a4 r0d070ca  
    15081508        };
    15091509
    1510         size_t Finder::traceId = Stats::Heap::new_stacktrace_id("Finder");
     1510        // size_t Finder::traceId = Stats::Heap::new_stacktrace_id("Finder");
    15111511        /// Prunes a list of candidates down to those that have the minimum conversion cost for a given
    15121512        /// return type. Skips ambiguous candidates.
  • src/ResolvExpr/CommonType.cc

    r22f94a4 r0d070ca  
    894894        };
    895895
    896         size_t CommonType_new::traceId = Stats::Heap::new_stacktrace_id("CommonType_new");
     896        // size_t CommonType_new::traceId = Stats::Heap::new_stacktrace_id("CommonType_new");
    897897        namespace {
    898898                ast::ptr< ast::Type > handleReference(
  • src/ResolvExpr/ConversionCost.cc

    r22f94a4 r0d070ca  
    761761        }
    762762}
    763 size_t ConversionCost_new::traceId = Stats::Heap::new_stacktrace_id("ConversionCost");
     763// size_t ConversionCost_new::traceId = Stats::Heap::new_stacktrace_id("ConversionCost");
    764764
    765765} // namespace ResolvExpr
  • src/ResolvExpr/Resolver.cc

    r22f94a4 r0d070ca  
    12671267                const ast::ConstructorInit * previsit( const ast::ConstructorInit * );
    12681268        };
    1269         size_t Resolver_new::traceId = Stats::Heap::new_stacktrace_id("Resolver");
     1269        // size_t Resolver_new::traceId = Stats::Heap::new_stacktrace_id("Resolver");
    12701270
    12711271        void resolve( std::list< ast::ptr< ast::Decl > >& translationUnit ) {
  • src/ResolvExpr/Unify.cc

    r22f94a4 r0d070ca  
    11361136        };
    11371137
    1138         size_t Unify_new::traceId = Stats::Heap::new_stacktrace_id("Unify_new");
     1138        // size_t Unify_new::traceId = Stats::Heap::new_stacktrace_id("Unify_new");
    11391139        bool unify(
    11401140                        const ast::ptr<ast::Type> & type1, const ast::ptr<ast::Type> & type2,
Note: See TracChangeset for help on using the changeset viewer.