Home
last modified time | relevance | path

Searched refs:TypeStr (Results 1 – 25 of 37) sorted by relevance

12

/external/llvm-project/llvm/lib/Target/Mips/
DMicroMipsInstrFPU.td293 multiclass C_COND_MM<string TypeStr, RegisterOperand RC, bits<2> fmt,
295 def C_F_#NAME#_MM : MMRel, C_COND_FT<"f", TypeStr, RC, itin>,
300 def C_UN_#NAME#_MM : MMRel, C_COND_FT<"un", TypeStr, RC, itin>,
305 def C_EQ_#NAME#_MM : MMRel, C_COND_FT<"eq", TypeStr, RC, itin>,
310 def C_UEQ_#NAME#_MM : MMRel, C_COND_FT<"ueq", TypeStr, RC, itin>,
315 def C_OLT_#NAME#_MM : MMRel, C_COND_FT<"olt", TypeStr, RC, itin>,
319 def C_ULT_#NAME#_MM : MMRel, C_COND_FT<"ult", TypeStr, RC, itin>,
323 def C_OLE_#NAME#_MM : MMRel, C_COND_FT<"ole", TypeStr, RC, itin>,
327 def C_ULE_#NAME#_MM : MMRel, C_COND_FT<"ule", TypeStr, RC, itin>,
331 def C_SF_#NAME#_MM : MMRel, C_COND_FT<"sf", TypeStr, RC, itin>,
[all …]
DMipsInstrFPU.td284 multiclass C_COND_M<string TypeStr, RegisterOperand RC, bits<5> fmt,
286 def C_F_#NAME : MMRel, C_COND_FT<"f", TypeStr, RC, itin>,
291 def C_UN_#NAME : MMRel, C_COND_FT<"un", TypeStr, RC, itin>,
296 def C_EQ_#NAME : MMRel, C_COND_FT<"eq", TypeStr, RC, itin>,
301 def C_UEQ_#NAME : MMRel, C_COND_FT<"ueq", TypeStr, RC, itin>,
306 def C_OLT_#NAME : MMRel, C_COND_FT<"olt", TypeStr, RC, itin>,
310 def C_ULT_#NAME : MMRel, C_COND_FT<"ult", TypeStr, RC, itin>,
314 def C_OLE_#NAME : MMRel, C_COND_FT<"ole", TypeStr, RC, itin>,
318 def C_ULE_#NAME : MMRel, C_COND_FT<"ule", TypeStr, RC, itin>,
322 def C_SF_#NAME : MMRel, C_COND_FT<"sf", TypeStr, RC, itin>,
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMicroMipsInstrFPU.td293 multiclass C_COND_MM<string TypeStr, RegisterOperand RC, bits<2> fmt,
295 def C_F_#NAME#_MM : MMRel, C_COND_FT<"f", TypeStr, RC, itin>,
300 def C_UN_#NAME#_MM : MMRel, C_COND_FT<"un", TypeStr, RC, itin>,
305 def C_EQ_#NAME#_MM : MMRel, C_COND_FT<"eq", TypeStr, RC, itin>,
310 def C_UEQ_#NAME#_MM : MMRel, C_COND_FT<"ueq", TypeStr, RC, itin>,
315 def C_OLT_#NAME#_MM : MMRel, C_COND_FT<"olt", TypeStr, RC, itin>,
319 def C_ULT_#NAME#_MM : MMRel, C_COND_FT<"ult", TypeStr, RC, itin>,
323 def C_OLE_#NAME#_MM : MMRel, C_COND_FT<"ole", TypeStr, RC, itin>,
327 def C_ULE_#NAME#_MM : MMRel, C_COND_FT<"ule", TypeStr, RC, itin>,
331 def C_SF_#NAME#_MM : MMRel, C_COND_FT<"sf", TypeStr, RC, itin>,
[all …]
DMipsInstrFPU.td281 multiclass C_COND_M<string TypeStr, RegisterOperand RC, bits<5> fmt,
283 def C_F_#NAME : MMRel, C_COND_FT<"f", TypeStr, RC, itin>,
288 def C_UN_#NAME : MMRel, C_COND_FT<"un", TypeStr, RC, itin>,
293 def C_EQ_#NAME : MMRel, C_COND_FT<"eq", TypeStr, RC, itin>,
298 def C_UEQ_#NAME : MMRel, C_COND_FT<"ueq", TypeStr, RC, itin>,
303 def C_OLT_#NAME : MMRel, C_COND_FT<"olt", TypeStr, RC, itin>,
307 def C_ULT_#NAME : MMRel, C_COND_FT<"ult", TypeStr, RC, itin>,
311 def C_OLE_#NAME : MMRel, C_COND_FT<"ole", TypeStr, RC, itin>,
315 def C_ULE_#NAME : MMRel, C_COND_FT<"ule", TypeStr, RC, itin>,
319 def C_SF_#NAME : MMRel, C_COND_FT<"sf", TypeStr, RC, itin>,
[all …]
/external/clang/lib/CodeGen/
DCGObjCGNU.cpp241 std::string TypeStr; in MakePropertyEncodingString() local
242 CGM.getContext().getObjCEncodingForPropertyDecl(PD, Container, TypeStr); in MakePropertyEncodingString()
244 NameAndAttributes += TypeStr.length() + 3; in MakePropertyEncodingString()
245 NameAndAttributes += TypeStr; in MakePropertyEncodingString()
1811 std::string TypeStr; in GenerateProtocol() local
1812 Context.getObjCEncodingForMethodDecl(I, TypeStr); in GenerateProtocol()
1816 OptionalInstanceMethodTypes.push_back(MakeConstantString(TypeStr)); in GenerateProtocol()
1820 InstanceMethodTypes.push_back(MakeConstantString(TypeStr)); in GenerateProtocol()
1829 std::string TypeStr; in GenerateProtocol() local
1830 Context.getObjCEncodingForMethodDecl(I,TypeStr); in GenerateProtocol()
[all …]
DCGObjCMac.cpp5084 std::string TypeStr; in GetMethodVarType() local
5085 CGM.getContext().getObjCEncodingForType(Field->getType(), TypeStr, Field); in GetMethodVarType()
5087 llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr]; in GetMethodVarType()
5092 llvm::ConstantDataArray::getString(VMContext, TypeStr), in GetMethodVarType()
5102 std::string TypeStr; in GetMethodVarType() local
5103 if (CGM.getContext().getObjCEncodingForMethodDecl(D, TypeStr, Extended)) in GetMethodVarType()
5106 llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr]; in GetMethodVarType()
5111 llvm::ConstantDataArray::getString(VMContext, TypeStr), in GetMethodVarType()
5137 std::string TypeStr; in GetPropertyTypeString() local
5138 CGM.getContext().getObjCEncodingForPropertyDecl(PD, Container, TypeStr); in GetPropertyTypeString()
[all …]
/external/llvm/lib/Target/Mips/
DMipsInstrFPU.td240 multiclass C_COND_M<string TypeStr, RegisterOperand RC, bits<5> fmt,
242 def C_F_#NAME : C_COND_FT<"f", TypeStr, RC, itin>, C_COND_FM<fmt, 0>;
243 def C_UN_#NAME : C_COND_FT<"un", TypeStr, RC, itin>, C_COND_FM<fmt, 1>;
244 def C_EQ_#NAME : C_COND_FT<"eq", TypeStr, RC, itin>, C_COND_FM<fmt, 2>;
245 def C_UEQ_#NAME : C_COND_FT<"ueq", TypeStr, RC, itin>, C_COND_FM<fmt, 3>;
246 def C_OLT_#NAME : C_COND_FT<"olt", TypeStr, RC, itin>, C_COND_FM<fmt, 4>;
247 def C_ULT_#NAME : C_COND_FT<"ult", TypeStr, RC, itin>, C_COND_FM<fmt, 5>;
248 def C_OLE_#NAME : C_COND_FT<"ole", TypeStr, RC, itin>, C_COND_FM<fmt, 6>;
249 def C_ULE_#NAME : C_COND_FT<"ule", TypeStr, RC, itin>, C_COND_FM<fmt, 7>;
250 def C_SF_#NAME : C_COND_FT<"sf", TypeStr, RC, itin>, C_COND_FM<fmt, 8>;
[all …]
/external/llvm-project/llvm/lib/Transforms/Instrumentation/
DMemProfiler.cpp534 const std::string TypeStr = AccessIsWrite ? "store" : "load"; in initializeCallbacks() local
539 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + TypeStr + "N", in initializeCallbacks()
543 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + TypeStr, in initializeCallbacks()
DHWAddressSanitizer.cpp551 const std::string TypeStr = AccessIsWrite ? "store" : "load"; in initializeCallbacks() local
555 ClMemoryAccessCallbackPrefix + TypeStr + "N" + EndingStr, in initializeCallbacks()
562 ClMemoryAccessCallbackPrefix + TypeStr + in initializeCallbacks()
DAddressSanitizer.cpp2532 const std::string TypeStr = AccessIsWrite ? "store" : "load"; in initializeCallbacks() local
2544 kAsanReportErrorTemplate + ExpStr + TypeStr + "_n" + EndingStr, in initializeCallbacks()
2548 ClMemoryAccessCallbackPrefix + ExpStr + TypeStr + "N" + EndingStr, in initializeCallbacks()
2553 const std::string Suffix = TypeStr + itostr(1ULL << AccessSizeIndex); in initializeCallbacks()
/external/llvm-project/clang/lib/CodeGen/
DCGObjCGNU.cpp230 std::string TypeStr = in MakePropertyEncodingString() local
233 NameAndAttributes += TypeStr.length() + 3; in MakePropertyEncodingString()
234 NameAndAttributes += TypeStr; in MakePropertyEncodingString()
299 std::string TypeStr = Context.getObjCEncodingForMethodDecl(accessor); in PushProperty() local
300 llvm::Constant *TypeEncoding = MakeConstantString(TypeStr); in PushProperty()
1132 std::string TypeStr = in PushProperty() local
1134 Fields.add(MakeConstantString(TypeStr)); in PushProperty()
1140 std::string TypeStr = Context.getObjCEncodingForMethodDecl(accessor); in PushProperty() local
1141 Fields.add(GetConstantSelector(accessor->getSelector(), TypeStr)); in PushProperty()
1839 std::string TypeStr; in GenerateClass() local
[all …]
/external/llvm/lib/Target/NVPTX/
DNVPTXInstrInfo.td1259 multiclass SETP<string TypeStr, RegisterClass RC, Operand ImmCls> {
1262 !strconcat("setp${cmp:base}${cmp:ftz}.", TypeStr,
1266 !strconcat("setp${cmp:base}${cmp:ftz}.", TypeStr,
1270 !strconcat("setp${cmp:base}${cmp:ftz}.", TypeStr,
1292 multiclass SET<string TypeStr, RegisterClass RC, Operand ImmCls> {
1295 !strconcat("set$cmp.", TypeStr, "\t$dst, $a, $b;"), []>;
1298 !strconcat("set$cmp.", TypeStr, "\t$dst, $a, $b;"), []>;
1301 !strconcat("set$cmp.", TypeStr, "\t$dst, $a, $b;"), []>;
1326 multiclass SELP<string TypeStr, RegisterClass RC, Operand ImmCls> {
1329 !strconcat("selp.", TypeStr, "\t$dst, $a, $b, $p;"), []>;
[all …]
DNVPTXIntrinsics.td882 string SpaceStr, string TypeStr, string OpcStr, PatFrag IntOp,
888 !strconcat(TypeStr,
896 !strconcat(TypeStr,
901 multiclass F_ATOMIC_2<NVPTXRegClass regclass, string SpaceStr, string TypeStr,
903 defm p32 : F_ATOMIC_2_imp<Int32Regs, regclass, SpaceStr, TypeStr, OpcStr,
905 defm p64 : F_ATOMIC_2_imp<Int64Regs, regclass, SpaceStr, TypeStr, OpcStr,
911 string SpaceStr, string TypeStr, string OpcStr, PatFrag IntOp,
916 !strconcat(TypeStr,
919 !strconcat(TypeStr,
925 !strconcat(TypeStr,
[all …]
/external/llvm-project/llvm/lib/Target/NVPTX/
DNVPTXInstrInfo.td1385 multiclass SETP<string TypeStr, RegisterClass RC, Operand ImmCls> {
1388 !strconcat("setp${cmp:base}${cmp:ftz}.", TypeStr,
1392 !strconcat("setp${cmp:base}${cmp:ftz}.", TypeStr,
1396 !strconcat("setp${cmp:base}${cmp:ftz}.", TypeStr,
1431 multiclass SET<string TypeStr, RegisterClass RC, Operand ImmCls> {
1434 !strconcat("set$cmp.", TypeStr, " \t$dst, $a, $b;"), []>;
1437 !strconcat("set$cmp.", TypeStr, " \t$dst, $a, $b;"), []>;
1440 !strconcat("set$cmp.", TypeStr, " \t$dst, $a, $b;"), []>;
1466 multiclass SELP<string TypeStr, RegisterClass RC, Operand ImmCls> {
1469 !strconcat("selp.", TypeStr, " \t$dst, $a, $b, $p;"), []>;
[all …]
DNVPTXIntrinsics.td991 string SpaceStr, string TypeStr, string OpcStr, PatFrag IntOp,
994 !strconcat("atom", SpaceStr, OpcStr, TypeStr, " \t$dst, [$addr], $b;"),
998 !strconcat("atom", SpaceStr, OpcStr, TypeStr, " \t$dst, [$addr], $b;", ""),
1002 multiclass F_ATOMIC_2<NVPTXRegClass regclass, string SpaceStr, string TypeStr,
1005 defm p32 : F_ATOMIC_2_imp<Int32Regs, regclass, SpaceStr, TypeStr, OpcStr,
1007 defm p64 : F_ATOMIC_2_imp<Int64Regs, regclass, SpaceStr, TypeStr, OpcStr,
1013 string SpaceStr, string TypeStr, string OpcStr, PatFrag IntOp,
1018 ".reg \t.s", TypeStr, " temp; \n\t",
1019 "neg.s", TypeStr, " \ttemp, $b; \n\t",
1020 "atom", SpaceStr, OpcStr, ".u", TypeStr, " \t$dst, [$addr], temp; \n\t",
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTXInstrInfo.td1385 multiclass SETP<string TypeStr, RegisterClass RC, Operand ImmCls> {
1388 !strconcat("setp${cmp:base}${cmp:ftz}.", TypeStr,
1392 !strconcat("setp${cmp:base}${cmp:ftz}.", TypeStr,
1396 !strconcat("setp${cmp:base}${cmp:ftz}.", TypeStr,
1431 multiclass SET<string TypeStr, RegisterClass RC, Operand ImmCls> {
1434 !strconcat("set$cmp.", TypeStr, " \t$dst, $a, $b;"), []>;
1437 !strconcat("set$cmp.", TypeStr, " \t$dst, $a, $b;"), []>;
1440 !strconcat("set$cmp.", TypeStr, " \t$dst, $a, $b;"), []>;
1466 multiclass SELP<string TypeStr, RegisterClass RC, Operand ImmCls> {
1469 !strconcat("selp.", TypeStr, " \t$dst, $a, $b, $p;"), []>;
[all …]
DNVPTXIntrinsics.td991 string SpaceStr, string TypeStr, string OpcStr, PatFrag IntOp,
994 !strconcat("atom", SpaceStr, OpcStr, TypeStr, " \t$dst, [$addr], $b;"),
998 !strconcat("atom", SpaceStr, OpcStr, TypeStr, " \t$dst, [$addr], $b;", ""),
1002 multiclass F_ATOMIC_2<NVPTXRegClass regclass, string SpaceStr, string TypeStr,
1005 defm p32 : F_ATOMIC_2_imp<Int32Regs, regclass, SpaceStr, TypeStr, OpcStr,
1007 defm p64 : F_ATOMIC_2_imp<Int64Regs, regclass, SpaceStr, TypeStr, OpcStr,
1013 string SpaceStr, string TypeStr, string OpcStr, PatFrag IntOp,
1018 ".reg \t.s", TypeStr, " temp; \n\t",
1019 "neg.s", TypeStr, " \ttemp, $b; \n\t",
1020 "atom", SpaceStr, OpcStr, ".u", TypeStr, " \t$dst, [$addr], temp; \n\t",
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DHWAddressSanitizer.cpp437 const std::string TypeStr = AccessIsWrite ? "store" : "load"; in initializeCallbacks() local
441 ClMemoryAccessCallbackPrefix + TypeStr + "N" + EndingStr, in initializeCallbacks()
448 ClMemoryAccessCallbackPrefix + TypeStr + in initializeCallbacks()
DAddressSanitizer.cpp2478 const std::string TypeStr = AccessIsWrite ? "store" : "load"; in initializeCallbacks() local
2490 kAsanReportErrorTemplate + ExpStr + TypeStr + "_n" + EndingStr, in initializeCallbacks()
2494 ClMemoryAccessCallbackPrefix + ExpStr + TypeStr + "N" + EndingStr, in initializeCallbacks()
2499 const std::string Suffix = TypeStr + itostr(1ULL << AccessSizeIndex); in initializeCallbacks()
/external/llvm-project/clang/lib/AST/
DDeclPrinter.cpp1538 std::string TypeStr = PDecl->getASTContext().getUnqualifiedObjCPointerType(T). in VisitObjCPropertyDecl() local
1540 Out << ' ' << TypeStr; in VisitObjCPropertyDecl()
1541 if (!StringRef(TypeStr).endswith("*")) in VisitObjCPropertyDecl()
/external/llvm/lib/Transforms/Instrumentation/
DAddressSanitizer.cpp1644 const std::string TypeStr = AccessIsWrite ? "store" : "load"; in initializeCallbacks() local
1651 kAsanReportErrorTemplate + ExpStr + TypeStr + SuffixStr + EndingStr, in initializeCallbacks()
1655 ClMemoryAccessCallbackPrefix + ExpStr + TypeStr + "N" + EndingStr, in initializeCallbacks()
1659 const std::string Suffix = TypeStr + itostr(1ULL << AccessSizeIndex); in initializeCallbacks()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/
DMIParser.cpp1684 StringRef TypeStr = Token.range(); in parseTypedImmediateOperand() local
1685 if (TypeStr.front() != 'i' && TypeStr.front() != 's' && in parseTypedImmediateOperand()
1686 TypeStr.front() != 'p') in parseTypedImmediateOperand()
/external/clang/lib/Sema/
DSemaOverload.cpp5363 std::string TypeStr; in diagnoseNoViableConversion() local
5364 ConvTy.getAsStringInternal(TypeStr, SemaRef.getPrintingPolicy()); in diagnoseNoViableConversion()
5368 "static_cast<" + TypeStr + ">(") in diagnoseNoViableConversion()
9794 std::string TypeStr("operator"); in NoteBuiltinOperatorCandidate() local
9795 TypeStr += Opc; in NoteBuiltinOperatorCandidate()
9796 TypeStr += "("; in NoteBuiltinOperatorCandidate()
9797 TypeStr += Cand->BuiltinTypes.ParamTypes[0].getAsString(); in NoteBuiltinOperatorCandidate()
9799 TypeStr += ")"; in NoteBuiltinOperatorCandidate()
9800 S.Diag(OpLoc, diag::note_ovl_builtin_unary_candidate) << TypeStr; in NoteBuiltinOperatorCandidate()
9802 TypeStr += ", "; in NoteBuiltinOperatorCandidate()
[all …]
/external/llvm-project/llvm/lib/CodeGen/MIRParser/
DMIParser.cpp1738 StringRef TypeStr = Token.range(); in parseTypedImmediateOperand() local
1739 if (TypeStr.front() != 'i' && TypeStr.front() != 's' && in parseTypedImmediateOperand()
1740 TypeStr.front() != 'p') in parseTypedImmediateOperand()
/external/llvm-project/llvm/bindings/ocaml/llvm/
Dllvm_ocaml.c352 CAMLlocal1(TypeStr); in llvm_string_of_lltype()
356 TypeStr = caml_copy_string(TypeCStr); in llvm_string_of_lltype()
359 CAMLreturn(TypeStr); in llvm_string_of_lltype()

12