Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-15 10:19:04

0001 // Copyright 2020 the V8 project authors. All rights reserved.
0002 // Use of this source code is governed by a BSD-style license that can be
0003 // found in the LICENSE file.
0004 
0005 #ifndef INCLUDE_CPPGC_COMMON_H_
0006 #define INCLUDE_CPPGC_COMMON_H_
0007 
0008 #include "v8config.h"  // NOLINT(build/include_directory)
0009 
0010 namespace cppgc {
0011 
0012 /**
0013  *  Indicator for the stack state of the embedder.
0014  */
0015 enum class EmbedderStackState {
0016   /**
0017    * Stack may contain interesting heap pointers.
0018    */
0019   kMayContainHeapPointers,
0020   /**
0021    * Stack does not contain any interesting heap pointers.
0022    */
0023   kNoHeapPointers,
0024 };
0025 
0026 }  // namespace cppgc
0027 
0028 #endif  // INCLUDE_CPPGC_COMMON_H_