Home
last modified time | relevance | path

Searched refs:QueryType (Results 1 – 4 of 4) sorted by relevance

/external/llvm/include/llvm/CodeGen/
DMachineInstr.h304 enum QueryType {
315 bool hasProperty(unsigned MCFlag, QueryType Type = AnyInBundle) const {
328 bool isVariadic(QueryType Type = IgnoreBundle) const {
334 bool hasOptionalDef(QueryType Type = IgnoreBundle) const {
341 bool isPseudo(QueryType Type = IgnoreBundle) const {
345 bool isReturn(QueryType Type = AnyInBundle) const {
349 bool isCall(QueryType Type = AnyInBundle) const {
356 bool isBarrier(QueryType Type = AnyInBundle) const {
366 bool isTerminator(QueryType Type = AnyInBundle) const {
374 bool isBranch(QueryType Type = AnyInBundle) const {
[all …]
/external/skia/bench/
DRTreeBench.cpp69 enum QueryType { enum in BBoxQueryBench
77 QueryType q, SkBBoxHierarchy* tree) in BBoxQueryBench()
144 QueryType fQuery;
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeVectorOps.cpp189 EVT QueryType; in LegalizeOp() local
249 QueryType = Node->getValueType(0); in LegalizeOp()
252 QueryType = cast<VTSDNode>(Node->getOperand(1))->getVT(); in LegalizeOp()
256 QueryType = Node->getOperand(0).getValueType(); in LegalizeOp()
260 switch (TLI.getOperationAction(Node->getOpcode(), QueryType)) { in LegalizeOp()
/external/llvm/lib/CodeGen/
DMachineInstr.cpp754 bool MachineInstr::hasPropertyInBundle(unsigned Mask, QueryType Type) const { in hasPropertyInBundle()