HomeSort by relevance Sort by last modified time
    Searched refs:getValueType (Results 1 - 25 of 696) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/value/
EncodedValue.java 47 int getValueType();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/value/
BaseNullEncodedValue.java 55 return Ints.compare(getValueType(), o.getValueType());
58 public int getValueType() { return ValueType.NULL; }
BaseArrayEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
63 public int getValueType() { return ValueType.ARRAY; }
BaseBooleanEncodedValue.java 59 int res = Ints.compare(getValueType(), o.getValueType());
64 public int getValueType() { return ValueType.BOOLEAN; }
BaseByteEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
63 public int getValueType() { return ValueType.BYTE; }
BaseCharEncodedValue.java 59 int res = Ints.compare(getValueType(), o.getValueType());
64 public int getValueType() { return ValueType.CHAR; }
BaseDoubleEncodedValue.java 60 int res = Ints.compare(getValueType(), o.getValueType());
65 public int getValueType() { return ValueType.DOUBLE; }
BaseEnumEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
63 public int getValueType() { return ValueType.ENUM; }
BaseFieldEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
63 public int getValueType() { return ValueType.FIELD; }
BaseFloatEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
63 public int getValueType() { return ValueType.FLOAT; }
BaseIntEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
63 public int getValueType() { return ValueType.INT; }
BaseLongEncodedValue.java 61 int res = Ints.compare(getValueType(), o.getValueType());
66 public int getValueType() { return ValueType.LONG; }
BaseMethodEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
63 public int getValueType() { return ValueType.METHOD; }
BaseShortEncodedValue.java 59 int res = Ints.compare(getValueType(), o.getValueType());
64 public int getValueType() { return ValueType.SHORT; }
BaseStringEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
63 public int getValueType() { return ValueType.STRING; }
BaseTypeEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
63 public int getValueType() { return ValueType.TYPE; }
BaseAnnotationEncodedValue.java 62 int res = Ints.compare(getValueType(), o.getValueType());
70 public int getValueType() {
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp 121 N->getValueType(0)),
129 N->getValueType(0)));
135 NewOp.getValueType().getVectorElementType(),
140 EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
152 EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
155 return MakeLibCall(GetFPLibCall(N->getValueType(0),
164 EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
166 return MakeLibCall(GetFPLibCall(N->getValueType(0),
179 EVT LVT = LHS.getValueType();
180 EVT RVT = RHS.getValueType();
    [all...]
LegalizeVectorTypes.cpp 129 LHS.getValueType(), LHS, RHS);
139 EVT NewVT = N->getValueType(0).getVectorElementType();
145 EVT NewVT = N->getValueType(0).getVectorElementType();
148 Op0, DAG.getValueType(NewVT),
149 DAG.getValueType(Op0.getValueType()),
157 N->getValueType(0).getVectorElementType(),
162 EVT NewVT = N->getValueType(0).getVectorElementType();
171 Op.getValueType(), Op, N->getOperand(1));
178 EVT EltVT = N->getValueType(0).getVectorElementType()
    [all...]
LegalizeIntegerTypes.cpp 41 if (CustomLowerNode(N, N->getValueType(ResNo), true))
156 Op.getValueType(), Op, N->getOperand(1));
163 Op.getValueType(), Op, N->getOperand(1));
167 EVT ResVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
207 EVT InVT = InOp.getValueType();
209 EVT OutVT = N->getValueType(0);
265 EVT OVT = N->getValueType(0);
266 EVT NVT = Op.getValueType();
279 N->getValueType(0)), JoinIntegers(N->getOperand(0),
284 EVT VT = N->getValueType(0)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp 149 LHS.getValueType(), LHS, RHS, N->getFlags());
157 Op0.getValueType(), Op0, Op1, Op2);
167 EVT NewVT = N->getValueType(0).getVectorElementType();
173 EVT EltVT = N->getValueType(0).getVectorElementType();
183 EVT NewVT = N->getValueType(0).getVectorElementType();
186 Op0, DAG.getValueType(NewVT),
187 DAG.getValueType(Op0.getValueType()),
195 N->getValueType(0).getVectorElementType(),
200 EVT NewVT = N->getValueType(0).getVectorElementType()
    [all...]
LegalizeFloatTypes.cpp 65 assert(isLegalInHWReg(N->getValueType(ResNo)) &&
127 if (isLegalInHWReg(N->getValueType(ResNo)))
142 N->getValueType(0)),
149 if (isLegalInHWReg(N->getValueType(ResNo)))
160 CN->getValueType(0).getSimpleVT() == llvm::MVT::ppcf128) {
166 CN->getValueType(0)));
170 CN->getValueType(0)));
177 NewOp.getValueType().getVectorElementType(),
183 if (isLegalInHWReg(N->getValueType(ResNo)))
185 EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0))
    [all...]
LegalizeIntegerTypes.cpp 42 if (CustomLowerNode(N, N->getValueType(ResNo), true))
176 Op.getValueType(), Op, N->getOperand(1));
183 Op.getValueType(), Op, N->getOperand(1));
187 EVT ResVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
216 EVT SVT = getSetCCResultType(N->getOperand(2).getValueType());
217 EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(1));
224 SDVTList VTs = DAG.getVTList(N->getValueType(0), SVT, MVT::Other);
238 DAG.getVTList(Op2.getValueType(), N->getValueType(1), MVT::Other);
251 EVT InVT = InOp.getValueType();
    [all...]
LegalizeTypesGeneric.cpp 42 EVT OutVT = N->getValueType(0);
45 EVT InVT = InOp.getValueType();
147 LHS.getValueType().getSizeInBits() << 1),
182 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
184 StackPtr.getValueType()));
209 assert(Part.getValueType() == N->getValueType(0) &&
218 unsigned OldElts = OldVec.getValueType().getVectorNumElements();
219 EVT OldEltVT = OldVec.getValueType().getVectorElementType();
224 EVT OldVT = N->getValueType(0)
    [all...]
LegalizeTypes.cpp 130 } else if (isTypeLegal(Res.getValueType()) || IgnoreNodeResults(&Node)) {
223 EVT ResultVT = N->getValueType(i);
282 EVT OpVT = N->getOperand(i).getValueType();
425 if (!isTypeLegal(Node.getValueType(i)) &&
426 !TLI.isTypeLegal(Node.getValueType(i))) {
435 !isTypeLegal(Node.getOperand(i).getValueType()) &&
436 !TLI.isTypeLegal(Node.getOperand(i).getValueType())) {
751 assert(Result.getValueType() ==
752 TLI.getTypeToTransformTo(*DAG.getContext(), Op.getValueType()) &&
764 assert((Result.getValueType() =
    [all...]

Completed in 223 milliseconds

1 2 3 4 5 6 7 8 91011>>