hotspot/src/share/vm/shark/sharkContext.hpp
changeset 10260 b7007c4de557
parent 7397 5b173b4ca846
child 13728 882756847a04
equal deleted inserted replaced
10259:fc6e02d351c4 10260:b7007c4de557
   169  private:
   169  private:
   170   const llvm::Type* map_type(const llvm::Type* const* table,
   170   const llvm::Type* map_type(const llvm::Type* const* table,
   171                              BasicType                type) const {
   171                              BasicType                type) const {
   172     assert(type >= 0 && type < T_CONFLICT, "unhandled type");
   172     assert(type >= 0 && type < T_CONFLICT, "unhandled type");
   173     const llvm::Type* result = table[type];
   173     const llvm::Type* result = table[type];
   174     assert(type != NULL, "unhandled type");
   174     assert(result != NULL, "unhandled type");
   175     return result;
   175     return result;
   176   }
   176   }
   177 
   177 
   178  public:
   178  public:
   179   const llvm::Type* to_stackType(BasicType type) const {
   179   const llvm::Type* to_stackType(BasicType type) const {