Searched refs:Repr (Results 1 – 11 of 11) sorted by relevance
/freebsd/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/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() 688 "Web %d rejected for load not feeding swap\n", Repr)); in recordUnoptimizableWebs() 706 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs() 709 "Web %d rejected for load/swap feeding a store\n", Repr)); in recordUnoptimizableWebs() 732 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs() 735 "Web %d rejected for store not fed by swap\n", Repr)); in recordUnoptimizableWebs() [all …]
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | FastISelEmitter.cpp | 92 char Repr; member in __anon3cd78fb00311::OperandsSignature::OpKind 95 OpKind() : Repr(OK_Invalid) {} in OpKind() 97 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; } in operator <() 98 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; } in operator ==() 102 K.Repr = OK_Reg; in getReg() 107 K.Repr = OK_FP; in getFP() 114 K.Repr = OK_Imm + V; in getImm() 118 bool isReg() const { return Repr == OK_Reg; } in isReg() 119 bool isFP() const { return Repr == OK_FP; } in isFP() 120 bool isImm() const { return Repr >= OK_Imm; } in isImm() [all …]
|
H A D | SearchableTableEmitter.cpp | 367 std::string Repr = primaryRepresentation( in emitLookupFunction() local 370 Repr = StringRef(Repr).upper(); in emitLookupFunction() 371 OS << LS << Repr; in emitLookupFunction()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
H A D | PythonDataObjects.h | 278 PythonString Repr() const;
|
H A D | PythonDataObjects.cpp | 184 PythonString PythonObject::Repr() const { in Repr() function in PythonObject
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/ |
H A D | AArch64BaseInfo.h | 558 const char *Repr; member
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
H A D | AArch64InstPrinter.cpp | 2105 << "#" << (Val ? Imm1Desc->Repr : Imm0Desc->Repr); in printGPR64x8()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64RegisterInfo.td | 1534 class ZPRExtendRegisterOperand<bit SignExtend, bit IsLSL, string Repr, 1538 !cast<AsmOperandClass>("ZPR" # RegWidth # "AsmOpndExt" # Repr # Scale # Suffix);
|
H A D | AArch64SystemOperands.td | 388 let SearchableFields = ["Enum", "Repr"]; 393 string Repr = repr;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/ |
H A D | AArch64AsmParser.cpp | 1511 RealVal.convertFromString(Desc->Repr, APFloat::rmTowardZero); in isExactFPImm()
|