Home
last modified time | relevance | path

Searched refs:Repr (Results 1 – 11 of 11) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/
H A DIntegral.h35 template <unsigned Bits, bool Signed> struct Repr;
36 template <> struct Repr<8, false> { using Type = uint8_t; };
37 template <> struct Repr<16, false> { using Type = uint16_t; };
38 template <> struct Repr<32, false> { using Type = uint32_t; };
39 template <> struct Repr<64, false> { using Type = uint64_t; };
40 template <> struct Repr<8, true> { using Type = int8_t; };
41 template <> struct Repr<16, true> { using Type = int16_t; };
42 template <> struct Repr<32, true> { using Type = int32_t; };
43 template <> struct Repr<64, true> { using Type = int64_t; };
55 using ReprT = typename Repr<Bits, Signed>::Type;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCVSXSwapRemoval.cpp645 int Repr = EC->getLeaderValue(SwapVector[EntryIdx].VSEId); in recordUnoptimizableWebs() local
648 if (SwapVector[Repr].WebRejected) in recordUnoptimizableWebs()
658 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs()
663 Repr)); in recordUnoptimizableWebs()
685 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs()
706 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs()
732 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs()
749 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs()
783 if (!SwapVector[Repr].WebRejected) { in markSwapsForRemoval()
799 if (!SwapVector[Repr].WebRejected) { in markSwapsForRemoval()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DFastISelEmitter.cpp94 char Repr; member in __anon5fcc75e60311::OperandsSignature::OpKind
97 OpKind() : Repr(OK_Invalid) {} in OpKind()
99 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; } in operator <()
100 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; } in operator ==()
102 static OpKind getReg() { OpKind K; K.Repr = OK_Reg; return K; } in getReg()
103 static OpKind getFP() { OpKind K; K.Repr = OK_FP; return K; } in getFP()
107 OpKind K; K.Repr = OK_Imm+V; return K; in getImm()
110 bool isReg() const { return Repr == OK_Reg; } in isReg()
111 bool isFP() const { return Repr == OK_FP; } in isFP()
112 bool isImm() const { return Repr >= OK_Imm; } in isImm()
[all …]
H A DSearchableTableEmitter.cpp354 std::string Repr = primaryRepresentation( in emitLookupFunction() local
357 Repr = StringRef(Repr).upper(); in emitLookupFunction()
358 OS << LS << Repr; in emitLookupFunction()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h276 PythonString Repr() const;
H A DPythonDataObjects.cpp184 PythonString PythonObject::Repr() const { in Repr() function in PythonObject
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.h558 const char *Repr; member
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64InstPrinter.cpp2105 << "#" << (Val ? Imm1Desc->Repr : Imm0Desc->Repr); in printExactFPImm()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64RegisterInfo.td1466 class ZPRExtendRegisterOperand<bit SignExtend, bit IsLSL, string Repr,
1470 !cast<AsmOperandClass>("ZPR" # RegWidth # "AsmOpndExt" # Repr # Scale # Suffix);
H A DAArch64SystemOperands.td388 let SearchableFields = ["Enum", "Repr"];
393 string Repr = repr;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp1491 RealVal.convertFromString(Desc->Repr, APFloat::rmTowardZero); in isExactFPImm()