Home | History | Annotate | Download | only in gc
      1 /*
      2  * Copyright (C) 2014 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 #include "gc_cause.h"
     18 #include "globals.h"
     19 #include "base/logging.h"
     20 
     21 #include <ostream>
     22 
     23 namespace art {
     24 namespace gc {
     25 
     26 const char* PrettyCause(GcCause cause) {
     27   switch (cause) {
     28     case kGcCauseNone: return "None";
     29     case kGcCauseForAlloc: return "Alloc";
     30     case kGcCauseBackground: return "Background";
     31     case kGcCauseExplicit: return "Explicit";
     32     case kGcCauseForNativeAlloc: return "NativeAlloc";
     33     case kGcCauseForNativeAllocBlocking: return "NativeAllocBlocking";
     34     case kGcCauseCollectorTransition: return "CollectorTransition";
     35     case kGcCauseDisableMovingGc: return "DisableMovingGc";
     36     case kGcCauseHomogeneousSpaceCompact: return "HomogeneousSpaceCompact";
     37     case kGcCauseTrim: return "HeapTrim";
     38     case kGcCauseInstrumentation: return "Instrumentation";
     39     case kGcCauseAddRemoveAppImageSpace: return "AddRemoveAppImageSpace";
     40     case kGcCauseDebugger: return "Debugger";
     41     case kGcCauseClassLinker: return "ClassLinker";
     42     case kGcCauseJitCodeCache: return "JitCodeCache";
     43     case kGcCauseAddRemoveSystemWeakHolder: return "SystemWeakHolder";
     44     case kGcCauseHprof: return "Hprof";
     45     case kGcCauseGetObjectsAllocated: return "ObjectsAllocated";
     46     case kGcCauseProfileSaver: return "ProfileSaver";
     47   }
     48   LOG(FATAL) << "Unreachable";
     49   UNREACHABLE();
     50 }
     51 
     52 std::ostream& operator<<(std::ostream& os, const GcCause& gc_cause) {
     53   os << PrettyCause(gc_cause);
     54   return os;
     55 }
     56 
     57 }  // namespace gc
     58 }  // namespace art
     59