HomeSort by: relevance | last modified time | path
    Searched refs:Repr (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Integral.h 41 template <unsigned Bits, bool Signed> struct Repr;
42 template <> struct Repr<8, false> { using Type = uint8_t; };
43 template <> struct Repr<16, false> { using Type = uint16_t; };
44 template <> struct Repr<32, false> { using Type = uint32_t; };
45 template <> struct Repr<64, false> { using Type = uint64_t; };
46 template <> struct Repr<8, true> { using Type = int8_t; };
47 template <> struct Repr<16, true> { using Type = int16_t; };
48 template <> struct Repr<32, true> { using Type = int32_t; };
49 template <> struct Repr<64, true> { using Type = int64_t; };
61 using T = typename Repr<Bits, Signed>::Type
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCVSXSwapRemoval.cpp 643 int Repr = EC->getLeaderValue(SwapVector[EntryIdx].VSEId);
646 if (SwapVector[Repr].WebRejected)
656 SwapVector[Repr].WebRejected = 1;
661 Repr));
683 SwapVector[Repr].WebRejected = 1;
686 "Web %d rejected for load not feeding swap\n", Repr));
704 SwapVector[Repr].WebRejected = 1;
707 "Web %d rejected for load/swap feeding a store\n", Repr));
730 SwapVector[Repr].WebRejected = 1;
733 "Web %d rejected for store not fed by swap\n", Repr));
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
FastISelEmitter.cpp 90 char Repr;
93 OpKind() : Repr(OK_Invalid) {}
95 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; }
96 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; }
98 static OpKind getReg() { OpKind K; K.Repr = OK_Reg; return K; }
99 static OpKind getFP() { OpKind K; K.Repr = OK_FP; return K; }
102 "Too many integer predicates for the 'Repr' char");
103 OpKind K; K.Repr = OK_Imm+V; return K
    [all...]
SearchableTableEmitter.cpp 353 std::string Repr = primaryRepresentation(
356 Repr = StringRef(Repr).upper();
357 OS << LS << Repr;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/Utils/
AArch64BaseInfo.h 434 const char *Repr;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64InstPrinter.cpp 1638 O << "#" << (Val ? Imm1Desc->Repr : Imm0Desc->Repr);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 1283 RealVal.convertFromString(Desc->Repr, APFloat::rmTowardZero);

Completed in 97 milliseconds