Searched refs:Custom (Results 1 - 25 of 106) sorted by last modified time

12345

/external/skia/src/sfnt/
H A DSkOTTable_name.cpp492 case SkOTTableName::Record::PlatformID::Custom:
H A DSkOTTable_name.h44 ((Custom, SkTEndian_SwapBE16(4)))
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDGPUISelLowering.cpp31 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
40 setOperationAction(ISD::UDIVREM, MVT::i32, Custom);
85 assert(0 && "Custom lowering code for this"
H A DAMDILISelLowering.cpp110 setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Custom);
115 setOperationAction(ISD::BRCOND, VT, Custom);
123 setOperationAction(ISD::SDIV, VT, Custom);
165 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
211 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Custom);
215 setOperationAction(ISD::BRCOND, MVT::Other, Custom);
220 setOperationAction(ISD::BUILD_VECTOR, MVT::Other, Custom);
H A DR600ISelLowering.cpp36 setOperationAction(ISD::BR_CC, MVT::i32, Custom);
40 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
41 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
43 setOperationAction(ISD::ROTL, MVT::i32, Custom);
45 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
46 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
48 setOperationAction(ISD::SETCC, MVT::i32, Custom);
239 // Custom DAG Lowering Operations
H A DSIISelLowering.cpp42 setOperationAction(ISD::AND, MVT::i1, Custom);
47 setOperationAction(ISD::BR_CC, MVT::i32, Custom);
49 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
53 setOperationAction(ISD::LOAD, MVT::i32, Custom);
54 setOperationAction(ISD::LOAD, MVT::i64, Custom);
56 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
57 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
258 // Custom DAG Lowering Operations
389 // Custom DAG optimizations
/external/llvm/tools/bugpoint/
H A DExecutionDriver.cpp31 AutoPick, RunLLI, RunJIT, RunLLC, RunLLCIA, LLC_Safe, CompileCustom, Custom enumerator in enum:__anon26379::OutputType
54 clEnumValN(Custom, "run-custom",
64 clEnumValN(Custom, "safe-run-custom",
194 case Custom:
244 case Custom:
/external/llvm/include/llvm/Target/
H A DTargetLowering.h88 Custom // Use the LowerOperation hook to implement custom lowering. enumerator in enum:llvm::TargetLoweringBase::LegalizeAction
374 /// integer type (return 'Expand'). 'Custom' is not an option.
481 if (Op > array_lengthof(OpActions[0])) return Custom;
492 getOperationAction(Op, VT) == Custom);
564 getIndexedLoadAction(IdxMode, VT.getSimpleVT()) == Custom);
582 getIndexedStoreAction(IdxMode, VT.getSimpleVT()) == Custom);
605 getCondCodeAction(CC, VT) == Custom;
1394 /// types that support FMAs (via Legal or Custom actions)
/external/llvm/lib/CodeGen/
H A DBasicTargetTransformInfo.cpp521 if (LA != TargetLowering::Legal && LA != TargetLowering::Custom) {
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp743 case TargetLowering::Custom: {
855 case TargetLowering::Custom: {
908 case TargetLowering::Custom: {
1065 case TargetLowering::Custom:
1266 Action = TargetLowering::Custom;
1346 case TargetLowering::Custom: {
4128 // FIXME: Custom lowering for these operations shouldn't return null!
H A DLegalizeIntegerTypes.cpp388 // and SINT conversions are Custom, there is no way to tell which is
2097 Action == TargetLowering::Custom) {
2805 TLI.getOperationAction(ISD::SINT_TO_FP, SrcVT) == TargetLowering::Custom){
H A DLegalizeTypes.cpp911 if (TLI.getOperationAction(N->getOpcode(), VT) != TargetLowering::Custom)
926 "Custom lowering returned the wrong number of results!");
938 if (TLI.getOperationAction(N->getOpcode(), VT) != TargetLowering::Custom)
950 "Custom lowering returned the wrong number of results!");
H A DLegalizeVectorOps.cpp217 case TargetLowering::Custom:
318 case TargetLowering::Custom: {
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp122 setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
123 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
124 setOperationAction(ISD::SETCC, MVT::i32, Custom);
125 setOperationAction(ISD::SETCC, MVT::i64, Custom);
126 setOperationAction(ISD::SETCC, MVT::f32, Custom);
127 setOperationAction(ISD::SETCC, MVT::f64, Custom);
129 setOperationAction(ISD::BR_CC, MVT::i32, Custom);
130 setOperationAction(ISD::BR_CC, MVT::i64, Custom);
131 setOperationAction(ISD::BR_CC, MVT::f32, Custom);
132 setOperationAction(ISD::BR_CC, MVT::f64, Custom);
[all...]
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp101 setOperationAction(ISD::SETCC, VT, Custom);
102 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
103 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
105 setOperationAction(ISD::SINT_TO_FP, VT, Custom);
106 setOperationAction(ISD::UINT_TO_FP, VT, Custom);
107 setOperationAction(ISD::FP_TO_SINT, VT, Custom);
108 setOperationAction(ISD::FP_TO_UINT, VT, Custom);
115 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
116 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
124 setOperationAction(ISD::SHL, VT, Custom);
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp1311 // Custom legalize GlobalAddress nodes into CONST32.
1312 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
1313 setOperationAction(ISD::GlobalAddress, MVT::i8, Custom);
1314 setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
1339 // We need to make the operation type of SELECT node to be Custom,
1342 setOperationAction(ISD::SELECT, MVT::f32, Custom);
1343 setOperationAction(ISD::SELECT, MVT::f64, Custom);
1356 setOperationAction(ISD::BR_JT, MVT::Other, Custom);
1369 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Custom);
1430 setOperationAction(ISD::EH_RETURN, MVT::Other, Custom);
[all...]
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp92 setOperationAction(ISD::SRA, MVT::i8, Custom);
93 setOperationAction(ISD::SHL, MVT::i8, Custom);
94 setOperationAction(ISD::SRL, MVT::i8, Custom);
95 setOperationAction(ISD::SRA, MVT::i16, Custom);
96 setOperationAction(ISD::SHL, MVT::i16, Custom);
97 setOperationAction(ISD::SRL, MVT::i16, Custom);
102 setOperationAction(ISD::GlobalAddress, MVT::i16, Custom);
103 setOperationAction(ISD::ExternalSymbol, MVT::i16, Custom);
104 setOperationAction(ISD::BlockAddress, MVT::i16, Custom);
106 setOperationAction(ISD::BR_CC, MVT::i8, Custom);
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp239 // Mips Custom Operations
240 setOperationAction(ISD::BR_JT, MVT::Other, Custom);
241 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
242 setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
243 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
244 setOperationAction(ISD::JumpTable, MVT::i32, Custom);
245 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
246 setOperationAction(ISD::SELECT, MVT::f32, Custom);
247 setOperationAction(ISD::SELECT, MVT::f64, Custom);
248 setOperationAction(ISD::SELECT, MVT::i32, Custom);
[all...]
H A DMipsSEISelLowering.cpp116 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Custom);
117 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Custom);
118 setOperationAction(ISD::MULHS, MVT::i32, Custom);
119 setOperationAction(ISD::MULHU, MVT::i32, Custom);
124 setOperationAction(ISD::MUL, MVT::i64, Custom);
127 setOperationAction(ISD::MULHS, MVT::i64, Custom);
128 setOperationAction(ISD::MULHU, MVT::i64, Custom);
131 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::i64, Custom);
132 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i64, Custom);
134 setOperationAction(ISD::SDIVREM, MVT::i32, Custom);
[all...]
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp157 setOperationAction(ISD::SHL_PARTS, MVT::i32 , Custom);
158 setOperationAction(ISD::SRA_PARTS, MVT::i32 , Custom);
159 setOperationAction(ISD::SRL_PARTS, MVT::i32 , Custom);
160 setOperationAction(ISD::SHL_PARTS, MVT::i64 , Custom);
161 setOperationAction(ISD::SRA_PARTS, MVT::i64 , Custom);
162 setOperationAction(ISD::SRL_PARTS, MVT::i64 , Custom);
192 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
193 setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
197 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
205 setOperationAction(ISD::LOAD, MVT::i1, Custom);
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp111 setOperationAction(ISD::SINT_TO_FP, MVT::i1, Custom);
112 setOperationAction(ISD::UINT_TO_FP, MVT::i1, Custom);
116 setOperationAction(ISD::LOAD, MVT::i1, Custom);
117 setOperationAction(ISD::STORE, MVT::i1, Custom);
121 setOperationAction(ISD::TRUNCATE, MVT::i1, Custom);
135 setOperationAction(ISD::FP_ROUND_INREG, MVT::ppcf128, Custom);
175 setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
239 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
240 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
244 setOperationAction(ISD::SETCC, MVT::i32, Custom);
[all...]
/external/llvm/lib/Target/R600/
H A DAMDGPUISelLowering.cpp120 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
160 // Custom lowering of vector stores is required for local address space
162 setOperationAction(ISD::STORE, MVT::v4i32, Custom);
165 setOperationAction(ISD::STORE, MVT::v2i32, Custom);
167 setTruncStoreAction(MVT::v2i32, MVT::v2i16, Custom);
168 setTruncStoreAction(MVT::v2i32, MVT::v2i8, Custom);
169 setTruncStoreAction(MVT::v4i32, MVT::v4i8, Custom);
171 // XXX: This can be change to Custom, once ExpandVectorStores can
206 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
207 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4f32, Custom);
[all...]
H A DR600ISelLowering.cpp11 /// \brief Custom DAG lowering for R600
63 setOperationAction(ISD::FCOS, MVT::f32, Custom);
64 setOperationAction(ISD::FSIN, MVT::f32, Custom);
71 setOperationAction(ISD::BRCOND, MVT::Other, Custom);
75 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
76 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
77 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::i1, Custom);
79 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
80 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
84 setOperationAction(ISD::FP_TO_UINT, MVT::i1, Custom);
[all...]
H A DSIISelLowering.cpp11 /// \brief Custom DAG lowering for SI
84 setOperationAction(ISD::LOAD, MVT::v2i32, Custom);
85 setOperationAction(ISD::LOAD, MVT::v4i32, Custom);
86 setOperationAction(ISD::LOAD, MVT::v8i32, Custom);
87 setOperationAction(ISD::LOAD, MVT::v16i32, Custom);
89 setOperationAction(ISD::STORE, MVT::v8i32, Custom);
90 setOperationAction(ISD::STORE, MVT::v16i32, Custom);
93 setOperationAction(ISD::LOAD, MVT::i32, Custom);
94 setOperationAction(ISD::LOAD, MVT::v2i32, Custom);
95 setOperationAction(ISD::LOAD, MVT::v4i32, Custom);
[all...]
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp145 // Set the Custom bit if this i32 goes in the high bits of a register.
1392 // Custom legalize GlobalAddress nodes into LO/HI parts.
1393 setOperationAction(ISD::GlobalAddress, getPointerTy(), Custom);
1394 setOperationAction(ISD::GlobalTLSAddress, getPointerTy(), Custom);
1395 setOperationAction(ISD::ConstantPool, getPointerTy(), Custom);
1396 setOperationAction(ISD::BlockAddress, getPointerTy(), Custom);
1417 // Custom expand fp<->sint
1418 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
1419 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
1420 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
[all...]

Completed in 8179 milliseconds

12345