Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Android/art/art/compiler/utils/x86_64/   (Android Betriebssystem Version 17©)  Datei vom 26.5.2026 mit Größe 4 kB image not shown  

Quelle  constants_x86_64.h

  Sprache: C
 

/*
 * Copyright (C) 2014 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */


#ifndef ART_COMPILER_UTILS_X86_64_CONSTANTS_X86_64_H_
#define ART_COMPILER_UTILS_X86_64_CONSTANTS_X86_64_H_

#include <iosfwd>

#include <android-base/logging.h>

#include "arch/x86_64/registers_x86_64.h"
#include "base/globals.h"
#include "base/macros.h"

namespace art HIDDEN {
namespace x86_64 {

class CpuRegister {
 public:
  explicit constexpr CpuRegister(Register r) : reg_(r) {}
  explicit constexpr CpuRegister(int r) : reg_(Register(r)) {}
  constexpr Register AsRegister() const {
    return reg_;
  }
  bool operator==(const CpuRegister& other) const {
    return reg_ == other.reg_;
  }
  constexpr uint8_t LowBits() const {
    return reg_ & 7;
  }
  constexpr bool NeedsRex() const {
    return reg_ > 7;
  }
 private:
  const Register reg_;
};
std::ostream& operator<<(std::ostream& os, const CpuRegister& reg);

class XmmRegister {
 public:
  constexpr XmmRegister(FloatRegister r, size_t vector_length)
      : reg_(r), vector_length_(vector_length) {}
  constexpr XmmRegister(int r, size_t vector_length)
      : XmmRegister(FloatRegister(r), vector_length) {}
  explicit constexpr XmmRegister(FloatRegister r) : XmmRegister(r, 0) {}
  explicit constexpr XmmRegister(int r) : XmmRegister(FloatRegister(r), 0) {}
  constexpr FloatRegister AsFloatRegister() const {
    return reg_;
  }
  constexpr uint8_t LowBits() const {
    return reg_ & 7;
  }
  constexpr bool NeedsRex() const {
    return reg_ > 7;
  }
  bool operator==(const XmmRegister& other) const {
    return reg_ == other.reg_;
  }
  size_t GetVecLen() const { return vector_length_; }
  bool IsYMM() const {
    return vector_length_ == 32;  // 256-bit
  }

 private:
  const FloatRegister reg_;
  // TODO: Since the valid values for vector_length is a limited set 16/32,
  //       consider using an enum. This enum may have to be arch agnostic
  //       and visible to Locations, as the register object will eventually be
  //       created there.
  const size_t vector_length_;
};
std::ostream& operator<<(std::ostream& os, const XmmRegister& reg);

enum X87Register {
  ST0 = 0,
  ST1 = 1,
  ST2 = 2,
  ST3 = 3,
  ST4 = 4,
  ST5 = 5,
  ST6 = 6,
  ST7 = 7,
  kNumberOfX87Registers = 8,
  kNoX87Register = -1  // Signals an illegal register.
};
std::ostream& operator<<(std::ostream& os, const X87Register& reg);

enum Condition {
  kOverflow     =  0,
  kNoOverflow   =  1,
  kBelow        =  2,
  kAboveEqual   =  3,
  kEqual        =  4,
  kNotEqual     =  5,
  kBelowEqual   =  6,
  kAbove        =  7,
  kSign         =  8,
  kNotSign      =  9,
  kParityEven   = 10,
  kParityOdd    = 11,
  kLess         = 12,
  kGreaterEqual = 13,
  kLessEqual    = 14,
  kGreater      = 15,

  kZero         = kEqual,
  kNotZero      = kNotEqual,
  kNegative     = kSign,
  kPositive     = kNotSign,
  kCarrySet     = kBelow,
  kCarryClear   = kAboveEqual,
  kUnordered    = kParityEven
};


class Instr {
 public:
  static const uint8_t kHltInstruction = 0xF4;
  // We prefer not to use the int3 instruction since it conflicts with gdb.
  static const uint8_t kBreakPointInstruction = kHltInstruction;

  bool IsBreakPoint() {
    return (*reinterpret_cast<const uint8_t*>(this)) == kBreakPointInstruction;
  }

  // Instructions are read out of a code stream. The only way to get a
  // reference to an instruction is to convert a pointer. There is no way
  // to allocate or create instances of class Instr.
  // Use the At(pc) function to create references to Instr.
  static Instr* At(uintptr_t pc) { return reinterpret_cast<Instr*>(pc); }

 private:
  DISALLOW_IMPLICIT_CONSTRUCTORS(Instr);
};

}  // namespace x86_64
}  // namespace art

#endif  // ART_COMPILER_UTILS_X86_64_CONSTANTS_X86_64_H_

Messung V0.5 in Prozent
C=92 H=100 G=95

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet am  2026-06-29) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.