Home
last modified time | relevance | path

Searched refs:getAsOpaquePointer (Results 1 – 25 of 32) sorted by relevance

12

/external/llvm-project/mlir/include/mlir/IR/
DBlockAndValueMapping.h32 valueMap[from.getAsOpaquePointer()] = to.getAsOpaquePointer(); in map()
46 void erase(Value from) { valueMap.erase(from.getAsOpaquePointer()); } in erase()
51 return valueMap.count(from.getAsOpaquePointer()); in contains()
87 auto it = valueMap.find(from.getAsOpaquePointer()); in lookupOrValue()
DBuiltinOps.h59 return hash_value(val.getAsOpaquePointer());
68 return const_cast<void *>(val.getAsOpaquePointer());
81 return const_cast<void *>(val.getAsOpaquePointer());
DIdentifier.h63 const void *getAsOpaquePointer() const { in getAsOpaquePointer() function
99 return llvm::hash_value(arg.getAsOpaquePointer()); in hash_value()
130 return const_cast<void *>(i.getAsOpaquePointer());
DOperationSupport.h352 void *getAsOpaquePointer() const { in getAsOpaquePointer() function
369 return lhs.getAsOpaquePointer() == rhs.getAsOpaquePointer();
373 return lhs.getAsOpaquePointer() != rhs.getAsOpaquePointer();
378 return llvm::hash_value(arg.getAsOpaquePointer()); in hash_value()
906 return DenseMapInfo<void *>::getHashValue(Val.getAsOpaquePointer());
919 return const_cast<void *>(I.getAsOpaquePointer());
DLocation.h82 const void *getAsOpaquePointer() const { return impl.getAsOpaquePointer(); } in getAsOpaquePointer() function
294 return const_cast<void *>(I.getAsOpaquePointer());
DValue.h215 void *getAsOpaquePointer() const { return ownerAndKind.getOpaqueValue(); } in getAsOpaquePointer() function
373 return const_cast<void *>(I.getAsOpaquePointer());
407 return const_cast<void *>(I.getAsOpaquePointer());
DTypes.h161 const void *getAsOpaquePointer() const { in getAsOpaquePointer() function
267 return const_cast<void *>(I.getAsOpaquePointer());
DAttributes.h76 const void *getAsOpaquePointer() const { return impl; } in getAsOpaquePointer() function
196 return const_cast<void *>(attr.getAsOpaquePointer());
DAffineMap.h204 const void *getAsOpaquePointer() const { in getAsOpaquePointer() function
DAffineExpr.h168 const void *getAsOpaquePointer() const { in getAsOpaquePointer() function
/external/tensorflow/tensorflow/compiler/mlir/tools/kernel_gen/transforms/
Dsame_shape_propagation.cc237 return equal_shapes_.isEquivalent(one.getAsOpaquePointer(), in haveSameShape()
238 other.getAsOpaquePointer()); in haveSameShape()
263 equal_shapes_.insert(value.getAsOpaquePointer()); in registerAssociation()
272 equal_shapes_.unionSets(rep.getAsOpaquePointer(), in registerAssociation()
273 value.getAsOpaquePointer()); in registerAssociation()
300 equal_shapes_.unionSets(candidate.getAsOpaquePointer(), in tryEvaluateShapeToRoot()
301 value.getAsOpaquePointer()); in tryEvaluateShapeToRoot()
Dbuffer_reuse_pass.cc39 return lhs.getAsOpaquePointer() < rhs.getAsOpaquePointer(); in operator <()
/external/llvm-project/mlir/lib/IR/
DAttributes.cpp20 : type(type.getAsOpaquePointer()) {} in AttributeStorage()
27 type = newType.getAsOpaquePointer(); in setType()
DValue.cpp250 OpaqueValue::OpaqueValue(Value value) : impl(value.getAsOpaquePointer()) {} in OpaqueValue()
DDiagnostics.cpp36 opaqueVal(reinterpret_cast<intptr_t>(attr.getAsOpaquePointer())) {} in DiagnosticArgument()
41 opaqueVal(reinterpret_cast<intptr_t>(val.getAsOpaquePointer())) {} in DiagnosticArgument()
/external/llvm-project/mlir/include/mlir/Dialect/SPIRV/
DSPIRVOps.h65 return hash_value(val.getAsOpaquePointer());
77 return const_cast<void *>(I.getAsOpaquePointer());
/external/llvm-project/mlir/include/mlir/Support/
DTypeID.h75 const void *getAsOpaquePointer() const { in getAsOpaquePointer() function
160 return const_cast<void *>(info.getAsOpaquePointer());
/external/llvm-project/mlir/include/mlir/CAPI/
DWrap.h33 return name{cpp.getAsOpaquePointer()}; \
/external/llvm-project/mlir/lib/Rewrite/
DByteCode.cpp179 const void *opaqueVal = val.getAsOpaquePointer(); in getMemIndex()
311 using has_pointer_traits = decltype(std::declval<T>().getAsOpaquePointer());
945 memory[resultIndex] = result.getAsOpaquePointer(); in execute()
1025 memory[memIndex] = attr.getAsOpaquePointer(); in execute()
1035 memory[memIndex] = attr.getType().getAsOpaquePointer(); in execute()
1070 memory[memIndex] = operand.getAsOpaquePointer(); in execute()
1094 memory[memIndex] = result.getAsOpaquePointer(); in execute()
1104 memory[memIndex] = value.getType().getAsOpaquePointer(); in execute()
/external/llvm-project/mlir/lib/Pass/
DPassTiming.cpp249 getTimer(name.getAsOpaquePointer(), TimerKind::Pipeline, in runBeforePipeline()
271 parentTimer->children.count(name.getAsOpaquePointer()) && in runAfterPipeline()
296 Timer *timer = getTimer(id.getAsOpaquePointer(), TimerKind::PassOrAnalysis, in startAnalysisTimer()
DIRPrinting.cpp45 addDataToHash(hasher, op->getLoc().getAsOpaquePointer()); in OperationFingerPrint()
/external/tensorflow/tensorflow/compiler/mlir/hlo/lib/Dialect/mhlo/transforms/
Dmhlo_fusion.cc86 auto lhs_value = lhs.getValue().getAsOpaquePointer(); in operator <()
87 auto rhs_value = rhs.getValue().getAsOpaquePointer(); in operator <()
/external/llvm-project/mlir/include/mlir/Dialect/LLVMIR/
DLLVMTypes.h73 using Type::getAsOpaquePointer;
622 return const_cast<void *>(type.getAsOpaquePointer());
/external/clang/include/clang/Sema/
DOwnership.h229 void *getAsOpaquePointer() const { return (void*)PtrWithInvalid; }
/external/llvm-project/clang/include/clang/Sema/
DOwnership.h238 void *getAsOpaquePointer() const { return (void*)PtrWithInvalid; }

12