Searched refs:Repr (Results 1 – 11 of 11) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | Integral.h | 35 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 D | PPCVSXSwapRemoval.cpp | 645 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 D | FastISelEmitter.cpp | 94 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 D | SearchableTableEmitter.cpp | 354 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 D | PythonDataObjects.h | 276 PythonString Repr() const;
|
| H A D | PythonDataObjects.cpp | 184 PythonString PythonObject::Repr() const { in Repr() function in PythonObject
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/ |
| H A D | AArch64BaseInfo.h | 558 const char *Repr; member
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
| H A D | AArch64InstPrinter.cpp | 2105 << "#" << (Val ? Imm1Desc->Repr : Imm0Desc->Repr); in printExactFPImm()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64RegisterInfo.td | 1466 class ZPRExtendRegisterOperand<bit SignExtend, bit IsLSL, string Repr, 1470 !cast<AsmOperandClass>("ZPR" # RegWidth # "AsmOpndExt" # Repr # Scale # Suffix);
|
| H A D | AArch64SystemOperands.td | 388 let SearchableFields = ["Enum", "Repr"]; 393 string Repr = repr;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/ |
| H A D | AArch64AsmParser.cpp | 1491 RealVal.convertFromString(Desc->Repr, APFloat::rmTowardZero); in isExactFPImm()
|