Home
last modified time | relevance | path

Searched refs:_ (Results 1 – 25 of 5662) sorted by relevance

12345678910>>...227

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCCodeEmitter.cpp49 #define _ fixup_Invalid macro
53 { _, _, _, _,
54 _, _, P(_DTPREL_16_X), P(_DTPREL_11_X),
55 P(_DTPREL_11_X), P(_9_X), _, P(_DTPREL_11_X),
56 P(_DTPREL_16_X), _, _, _,
57 P(_DTPREL_16_X), _, _, _,
58 _, _, _, _,
59 _, _, _, _,
60 _, _, _, _,
63 { _, _, _, _,
[all …]
/external/harfbuzz_ng/src/
Dhb-ot-shape-complex-indic-table.cc73 #define _(S,M) INDIC_COMBINE_CATEGORIES (ISC_##S, IMC_##M) macro
84 /* 0028 */ _(x,x), _(x,x), _(x,x), _(x,x), _(x,x), _(CP,x), _(x,x), _(x,x),
85 /* 0030 */ _(Nd,x), _(Nd,x), _(Nd,x), _(Nd,x), _(Nd,x), _(Nd,x), _(Nd,x), _(Nd,x),
86 /* 0038 */ _(Nd,x), _(Nd,x), _(x,x), _(x,x), _(x,x), _(x,x), _(x,x), _(x,x),
93 /* 00B0 */ _(x,x), _(x,x), _(SM,x), _(SM,x), _(x,x), _(x,x), _(x,x), _(x,x),
94 /* 00B8 */ _(x,x), _(x,x), _(x,x), _(x,x), _(x,x), _(x,x), _(x,x), _(x,x),
95 /* 00C0 */ _(x,x), _(x,x), _(x,x), _(x,x), _(x,x), _(x,x), _(x,x), _(x,x),
96 /* 00C8 */ _(x,x), _(x,x), _(x,x), _(x,x), _(x,x), _(x,x), _(x,x), _(x,x),
97 /* 00D0 */ _(x,x), _(x,x), _(x,x), _(x,x), _(x,x), _(x,x), _(x,x), _(CP,x),
104 /* 0900 */ _(Bi,T), _(Bi,T), _(Bi,T), _(Vs,R), _(VI,x), _(VI,x), _(VI,x), _(VI,x),
[all …]
/external/ImageMagick/PerlMagick/t/reference/cgm/
Dread.miff13_'��g��VƎr��r��n����������������������������ԘΏ�ɠ�Ѭ�׸�������������阑�������������ᜢ����������������…
14_a�_c��������������k-�+1�.�,�<�,�����:�+�:������2�+�,���9�=���+���������������l����n_ e�k�d…
16 ��������l�_�d_`�n�k�o�k�c�_d����a��+������+�,�+�1������<�+�9�����+�����+���=�9�������������…
/external/ImageMagick/PerlMagick/t/reference/write/cgm/
Dread.miff13_'��g��VƎr��r��n����������������������������ԘΏ�ɠ�Ѭ�׸�������������阑�������������ᜢ����������������…
14_a�_c��������������k-�+1�.�,�<�,�����:�+�:������2�+�,���9�=���+���������������l����n_ e�k�d…
16 ��������l�_�d_`�n�k�o�k�c�_d����a��+������+�,�+�1������<�+�9�����+�����+���=�9�������������…
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors_ioctl.inc40 #define _(rq, tp, sz) \
50 _(FIOASYNC, READ, sizeof(int));
51 _(FIOCLEX, NONE, 0);
52 _(FIOGETOWN, WRITE, sizeof(int));
53 _(FIONBIO, READ, sizeof(int));
54 _(FIONCLEX, NONE, 0);
55 _(FIOSETOWN, READ, sizeof(int));
56 _(SIOCATMARK, WRITE, sizeof(int));
57 _(SIOCGIFCONF, CUSTOM, 0);
58 _(SIOCGPGRP, WRITE, sizeof(int));
[all …]
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_extensions.cpp37 uint32_t GetSizeTBitWidth(const ValidationState_t& _) { in GetSizeTBitWidth() argument
38 if (_.addressing_model() == SpvAddressingModelPhysical32) return 32; in GetSizeTBitWidth()
40 if (_.addressing_model() == SpvAddressingModelPhysical64) return 64; in GetSizeTBitWidth()
47 spv_result_t ValidateExtension(ValidationState_t& _, const Instruction* inst) { in ValidateExtension() argument
48 if (spvIsWebGPUEnv(_.context()->target_env)) { in ValidateExtension()
52 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ValidateExtension()
62 spv_result_t ValidateExtInstImport(ValidationState_t& _, in ValidateExtInstImport() argument
64 if (spvIsWebGPUEnv(_.context()->target_env)) { in ValidateExtInstImport()
69 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ValidateExtInstImport()
78 spv_result_t ValidateExtInst(ValidationState_t& _, const Instruction* inst) { in ValidateExtInst() argument
[all …]
Dvalidate_conversion.cpp28 spv_result_t ConversionPass(ValidationState_t& _, const Instruction* inst) { in ConversionPass() argument
34 if (!_.IsUnsignedIntScalarType(result_type) && in ConversionPass()
35 !_.IsUnsignedIntVectorType(result_type)) in ConversionPass()
36 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ConversionPass()
40 const uint32_t input_type = _.GetOperandTypeId(inst, 2); in ConversionPass()
41 if (!input_type || (!_.IsFloatScalarType(input_type) && in ConversionPass()
42 !_.IsFloatVectorType(input_type))) in ConversionPass()
43 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ConversionPass()
47 if (_.GetDimension(result_type) != _.GetDimension(input_type)) in ConversionPass()
48 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ConversionPass()
[all …]
Dvalidate_image.cpp86 bool GetImageTypeInfo(const ValidationState_t& _, uint32_t id, in GetImageTypeInfo() argument
90 const Instruction* inst = _.FindDef(id); in GetImageTypeInfo()
94 inst = _.FindDef(inst->word(2)); in GetImageTypeInfo()
211 spv_result_t ValidateImageOperands(ValidationState_t& _, in ValidateImageOperands() argument
233 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ValidateImageOperands()
240 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ValidateImageOperands()
252 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ValidateImageOperands()
256 const uint32_t type_id = _.GetTypeId(inst->word(word_index++)); in ValidateImageOperands()
257 if (!_.IsFloatScalarType(type_id)) { in ValidateImageOperands()
258 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ValidateImageOperands()
[all …]
Dvalidate_arithmetics.cpp30 spv_result_t ArithmeticsPass(ValidationState_t& _, const Instruction* inst) { in ArithmeticsPass() argument
42 if (!_.IsFloatScalarType(result_type) && in ArithmeticsPass()
43 !_.IsFloatVectorType(result_type)) in ArithmeticsPass()
44 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ArithmeticsPass()
50 if (_.GetOperandTypeId(inst, operand_index) != result_type) in ArithmeticsPass()
51 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ArithmeticsPass()
61 if (!_.IsUnsignedIntScalarType(result_type) && in ArithmeticsPass()
62 !_.IsUnsignedIntVectorType(result_type)) in ArithmeticsPass()
63 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ArithmeticsPass()
69 if (_.GetOperandTypeId(inst, operand_index) != result_type) in ArithmeticsPass()
[all …]
Dvalidate_logicals.cpp28 spv_result_t LogicalsPass(ValidationState_t& _, const Instruction* inst) { in LogicalsPass() argument
35 if (!_.IsBoolScalarType(result_type)) in LogicalsPass()
36 return _.diag(SPV_ERROR_INVALID_DATA, inst) in LogicalsPass()
40 const uint32_t vector_type = _.GetOperandTypeId(inst, 2); in LogicalsPass()
41 if (!vector_type || !_.IsBoolVectorType(vector_type)) in LogicalsPass()
42 return _.diag(SPV_ERROR_INVALID_DATA, inst) in LogicalsPass()
54 if (!_.IsBoolScalarType(result_type) && !_.IsBoolVectorType(result_type)) in LogicalsPass()
55 return _.diag(SPV_ERROR_INVALID_DATA, inst) in LogicalsPass()
59 const uint32_t operand_type = _.GetOperandTypeId(inst, 2); in LogicalsPass()
60 if (!operand_type || (!_.IsFloatScalarType(operand_type) && in LogicalsPass()
[all …]
/external/deqp-deps/SPIRV-Tools/source/val/
Dvalidate_extensions.cpp37 uint32_t GetSizeTBitWidth(const ValidationState_t& _) { in GetSizeTBitWidth() argument
38 if (_.addressing_model() == SpvAddressingModelPhysical32) return 32; in GetSizeTBitWidth()
40 if (_.addressing_model() == SpvAddressingModelPhysical64) return 64; in GetSizeTBitWidth()
47 spv_result_t ValidateExtension(ValidationState_t& _, const Instruction* inst) { in ValidateExtension() argument
48 if (spvIsWebGPUEnv(_.context()->target_env)) { in ValidateExtension()
52 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ValidateExtension()
62 spv_result_t ValidateExtInstImport(ValidationState_t& _, in ValidateExtInstImport() argument
64 if (spvIsWebGPUEnv(_.context()->target_env)) { in ValidateExtInstImport()
69 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ValidateExtInstImport()
78 spv_result_t ValidateExtInst(ValidationState_t& _, const Instruction* inst) { in ValidateExtInst() argument
[all …]
Dvalidate_conversion.cpp28 spv_result_t ConversionPass(ValidationState_t& _, const Instruction* inst) { in ConversionPass() argument
34 if (!_.IsUnsignedIntScalarType(result_type) && in ConversionPass()
35 !_.IsUnsignedIntVectorType(result_type)) in ConversionPass()
36 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ConversionPass()
40 const uint32_t input_type = _.GetOperandTypeId(inst, 2); in ConversionPass()
41 if (!input_type || (!_.IsFloatScalarType(input_type) && in ConversionPass()
42 !_.IsFloatVectorType(input_type))) in ConversionPass()
43 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ConversionPass()
47 if (_.GetDimension(result_type) != _.GetDimension(input_type)) in ConversionPass()
48 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ConversionPass()
[all …]
Dvalidate_image.cpp86 bool GetImageTypeInfo(const ValidationState_t& _, uint32_t id, in GetImageTypeInfo() argument
90 const Instruction* inst = _.FindDef(id); in GetImageTypeInfo()
94 inst = _.FindDef(inst->word(2)); in GetImageTypeInfo()
211 spv_result_t ValidateImageOperands(ValidationState_t& _, in ValidateImageOperands() argument
233 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ValidateImageOperands()
240 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ValidateImageOperands()
252 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ValidateImageOperands()
256 const uint32_t type_id = _.GetTypeId(inst->word(word_index++)); in ValidateImageOperands()
257 if (!_.IsFloatScalarType(type_id)) { in ValidateImageOperands()
258 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ValidateImageOperands()
[all …]
Dvalidate_arithmetics.cpp30 spv_result_t ArithmeticsPass(ValidationState_t& _, const Instruction* inst) { in ArithmeticsPass() argument
42 if (!_.IsFloatScalarType(result_type) && in ArithmeticsPass()
43 !_.IsFloatVectorType(result_type)) in ArithmeticsPass()
44 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ArithmeticsPass()
50 if (_.GetOperandTypeId(inst, operand_index) != result_type) in ArithmeticsPass()
51 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ArithmeticsPass()
61 if (!_.IsUnsignedIntScalarType(result_type) && in ArithmeticsPass()
62 !_.IsUnsignedIntVectorType(result_type)) in ArithmeticsPass()
63 return _.diag(SPV_ERROR_INVALID_DATA, inst) in ArithmeticsPass()
69 if (_.GetOperandTypeId(inst, operand_index) != result_type) in ArithmeticsPass()
[all …]
Dvalidate_logicals.cpp28 spv_result_t LogicalsPass(ValidationState_t& _, const Instruction* inst) { in LogicalsPass() argument
35 if (!_.IsBoolScalarType(result_type)) in LogicalsPass()
36 return _.diag(SPV_ERROR_INVALID_DATA, inst) in LogicalsPass()
40 const uint32_t vector_type = _.GetOperandTypeId(inst, 2); in LogicalsPass()
41 if (!vector_type || !_.IsBoolVectorType(vector_type)) in LogicalsPass()
42 return _.diag(SPV_ERROR_INVALID_DATA, inst) in LogicalsPass()
54 if (!_.IsBoolScalarType(result_type) && !_.IsBoolVectorType(result_type)) in LogicalsPass()
55 return _.diag(SPV_ERROR_INVALID_DATA, inst) in LogicalsPass()
59 const uint32_t operand_type = _.GetOperandTypeId(inst, 2); in LogicalsPass()
60 if (!operand_type || (!_.IsFloatScalarType(operand_type) && in LogicalsPass()
[all …]
/external/snakeyaml/src/test/resources/pyyaml/
Dspec-02-27.tokens3 ? _ : _
4 ? _ : _
5 ? _ : &
7 ? _ : _
8 ? _ : _
9 ? _ : {{ ? _ : _ ? _ : _ ? _ : _ ? _ : _ ]}
11 ? _ : *
12 ? _ :
14 , {{ ? _ : _ ? _ : _ ? _ : _ ? _ : _ ]}
15 , {{ ? _ : _ ? _ : _ ? _ : _ ? _ : _ ]}
[all …]
/external/swiftshader/third_party/llvm-7.0/configs/common/include/llvm/IR/
DIntrinsicImpl.inc16005 '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'd', 'j', 'u', 's',
16006 't', '_', 't', 'r', 'a', 'm', 'p', 'o', 'l', 'i', 'n', 'e', '\000', '_', '_',
16007 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'd', 'e', 'b', 'u', 'g', 't', 'r',
16008 'a', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'u', 'n',
16009 'w', 'i', 'n', 'd', '_', 'i', 'n', 'i', 't', '\000', '_', '_', 'b', 'u', 'i',
16010 'l', 't', 'i', 'n', '_', 'f', 'l', 't', '_', 'r', 'o', 'u', 'n', 'd', 's',
16011 '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'n', 'i', 't',
16012 '_', 't', 'r', 'a', 'm', 'p', 'o', 'l', 'i', 'n', 'e', '\000', '_', '_', 'b',
16013 'u', 'i', 'l', 't', 'i', 'n', '_', 'o', 'b', 'j', 'e', 'c', 't', '_', 's',
16014 'i', 'z', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
[all …]
/external/mesa3d/src/gallium/drivers/nouveau/nv30/
Dnv30_format.c62 #define _(a,b) [PIPE_FORMAT_##a] = { \ macro
67 _(L8_UNORM , S___),
68 _(L8_SNORM , S___),
69 _(L8_SRGB , S___),
70 _(I8_UNORM , S___),
71 _(I8_SNORM , S___),
72 _(A8_UNORM , S___),
73 _(A8_SNORM , S___),
74 _(R8_UNORM , S_V_),
75 _(R8_SNORM , S___),
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Transforms/Scalar/
DLoopPassManagerTest.cpp46 using testing::_;
106 run(_, _, testing::Matcher<ExtraArgTs>(_)...)) in setDefaults()
108 ON_CALL(static_cast<DerivedT &>(*this), invalidate(_, _, _)) in setDefaults()
189 run(_, _, testing::Matcher<ExtraArgTs>(_)...)) in setDefaults()
326 EXPECT_CALL(MLPHandle, run(HasName("loop.0.0"), _, _, _)) in TEST_F()
328 EXPECT_CALL(MLAHandle, run(HasName("loop.0.0"), _, _)); in TEST_F()
329 EXPECT_CALL(MLPHandle, run(HasName("loop.0.1"), _, _, _)) in TEST_F()
331 EXPECT_CALL(MLAHandle, run(HasName("loop.0.1"), _, _)); in TEST_F()
332 EXPECT_CALL(MLPHandle, run(HasName("loop.0"), _, _, _)) in TEST_F()
334 EXPECT_CALL(MLAHandle, run(HasName("loop.0"), _, _)); in TEST_F()
[all …]
/external/swiftshader/third_party/llvm-subzero/build/Windows/include/llvm/IR/
DIntrinsics.gen20312 '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'd', 'j', 'u', 's',
20313 't', '_', 't', 'r', 'a', 'm', 'p', 'o', 'l', 'i', 'n', 'e', '\000', '_', '_',
20314 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'd', 'e', 'b', 'u', 'g', 't', 'r',
20315 'a', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'u', 'n',
20316 'w', 'i', 'n', 'd', '_', 'i', 'n', 'i', 't', '\000', '_', '_', 'b', 'u', 'i',
20317 'l', 't', 'i', 'n', '_', 'f', 'l', 't', '_', 'r', 'o', 'u', 'n', 'd', 's',
20318 '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'n', 'i', 't',
20319 '_', 't', 'r', 'a', 'm', 'p', 'o', 'l', 'i', 'n', 'e', '\000', '_', '_', 'b',
20320 'u', 'i', 'l', 't', 'i', 'n', '_', 'o', 'b', 'j', 'e', 'c', 't', '_', 's',
20321 'i', 'z', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
[all …]
/external/swiftshader/third_party/llvm-subzero/build/Linux/include/llvm/IR/
DIntrinsics.gen20312 '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'd', 'j', 'u', 's',
20313 't', '_', 't', 'r', 'a', 'm', 'p', 'o', 'l', 'i', 'n', 'e', '\000', '_', '_',
20314 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'd', 'e', 'b', 'u', 'g', 't', 'r',
20315 'a', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'u', 'n',
20316 'w', 'i', 'n', 'd', '_', 'i', 'n', 'i', 't', '\000', '_', '_', 'b', 'u', 'i',
20317 'l', 't', 'i', 'n', '_', 'f', 'l', 't', '_', 'r', 'o', 'u', 'n', 'd', 's',
20318 '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'n', 'i', 't',
20319 '_', 't', 'r', 'a', 'm', 'p', 'o', 'l', 'i', 'n', 'e', '\000', '_', '_', 'b',
20320 'u', 'i', 'l', 't', 'i', 'n', '_', 'o', 'b', 'j', 'e', 'c', 't', '_', 's',
20321 'i', 'z', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
[all …]
/external/swiftshader/third_party/llvm-subzero/build/Fuchsia/include/llvm/IR/
DIntrinsics.gen20312 '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'd', 'j', 'u', 's',
20313 't', '_', 't', 'r', 'a', 'm', 'p', 'o', 'l', 'i', 'n', 'e', '\000', '_', '_',
20314 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'd', 'e', 'b', 'u', 'g', 't', 'r',
20315 'a', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'u', 'n',
20316 'w', 'i', 'n', 'd', '_', 'i', 'n', 'i', 't', '\000', '_', '_', 'b', 'u', 'i',
20317 'l', 't', 'i', 'n', '_', 'f', 'l', 't', '_', 'r', 'o', 'u', 'n', 'd', 's',
20318 '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'n', 'i', 't',
20319 '_', 't', 'r', 'a', 'm', 'p', 'o', 'l', 'i', 'n', 'e', '\000', '_', '_', 'b',
20320 'u', 'i', 'l', 't', 'i', 'n', '_', 'o', 'b', 'j', 'e', 'c', 't', '_', 's',
20321 'i', 'z', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
[all …]
/external/swiftshader/third_party/llvm-subzero/build/Android/include/llvm/IR/
DIntrinsics.gen20312 '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'd', 'j', 'u', 's',
20313 't', '_', 't', 'r', 'a', 'm', 'p', 'o', 'l', 'i', 'n', 'e', '\000', '_', '_',
20314 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'd', 'e', 'b', 'u', 'g', 't', 'r',
20315 'a', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'u', 'n',
20316 'w', 'i', 'n', 'd', '_', 'i', 'n', 'i', 't', '\000', '_', '_', 'b', 'u', 'i',
20317 'l', 't', 'i', 'n', '_', 'f', 'l', 't', '_', 'r', 'o', 'u', 'n', 'd', 's',
20318 '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'n', 'i', 't',
20319 '_', 't', 'r', 'a', 'm', 'p', 'o', 'l', 'i', 'n', 'e', '\000', '_', '_', 'b',
20320 'u', 'i', 'l', 't', 'i', 'n', '_', 'o', 'b', 'j', 'e', 'c', 't', '_', 's',
20321 'i', 'z', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
[all …]
/external/swiftshader/third_party/llvm-subzero/build/MacOS/include/llvm/IR/
DIntrinsics.gen20189 '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'd', 'j', 'u', 's',
20190 't', '_', 't', 'r', 'a', 'm', 'p', 'o', 'l', 'i', 'n', 'e', '\000', '_', '_',
20191 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'd', 'e', 'b', 'u', 'g', 't', 'r',
20192 'a', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'u', 'n',
20193 'w', 'i', 'n', 'd', '_', 'i', 'n', 'i', 't', '\000', '_', '_', 'b', 'u', 'i',
20194 'l', 't', 'i', 'n', '_', 'f', 'l', 't', '_', 'r', 'o', 'u', 'n', 'd', 's',
20195 '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'n', 'i', 't',
20196 '_', 't', 'r', 'a', 'm', 'p', 'o', 'l', 'i', 'n', 'e', '\000', '_', '_', 'b',
20197 'u', 'i', 'l', 't', 'i', 'n', '_', 'o', 'b', 'j', 'e', 'c', 't', '_', 's',
20198 'i', 'z', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/GlobalISel/
Dmachine-cse-mid-pipeline.mir9 ; CHECK: %[[ONE:[0-9]+]]:_(s32) = G_CONSTANT i32 1
10 ; CHECK-NEXT: %[[TWO:[0-9]+]]:_(s32) = G_ADD %[[ONE]], %[[ONE]]
11 ; CHECK-NEXT: %[[SUM:[0-9]+]]:_(s32) = G_ADD %[[TWO]], %[[TWO]]
15 %0:_(s32) = G_CONSTANT i32 1
16 %1:_(s32) = G_ADD %0, %0
17 %2:_(s32) = G_ADD %0, %0
18 %3:_(s32) = G_ADD %1, %2
49 ; CHECK: %[[ONE:[0-9]+]]:_(s32) = G_CONSTANT i32 1
51 ; CHECK-NEXT: %[[SUM:[0-9]+]]:_(s32) = G_ADD %[[TWO]], %[[TWO]]
55 %0:_(s32) = G_CONSTANT i32 1
[all …]

12345678910>>...227