Home
last modified time | relevance | path

Searched refs:GetOperands (Results 1 – 13 of 13) sorted by relevance

/external/llvm-project/lldb/test/API/python_api/disassemble-raw-data/
DTestDisassembleRawData.py51 self.assertTrue(inst.GetOperands(target) ==
55 self.assertTrue(inst.GetOperands(target) == "4, 0")
58 self.assertTrue(inst.GetOperands(target) ==
/external/tensorflow/tensorflow/compiler/jit/
Ddeadness_analysis.cc132 virtual absl::Span<Predicate* const> GetOperands() const = 0;
173 absl::Span<Predicate* const> GetOperands() const override { in GetOperands() function in tensorflow::__anonaeebdbfa0111::AndPredicate
202 absl::Span<Predicate* const> GetOperands() const override { in GetOperands() function in tensorflow::__anonaeebdbfa0111::OrPredicate
223 absl::Span<Predicate* const> GetOperands() const override { in GetOperands() function in tensorflow::__anonaeebdbfa0111::NotPredicate
267 absl::Span<Predicate* const> GetOperands() const override { in GetOperands() function in tensorflow::__anonaeebdbfa0111::AndRecurrencePredicate
294 absl::Span<Predicate* const> GetOperands() const override { return {}; } in GetOperands() function in tensorflow::__anonaeebdbfa0111::SymbolPredicate
329 absl::Span<Predicate* const> GetOperands() const override { return {}; } in GetOperands() function in tensorflow::__anonaeebdbfa0111::IntSymbolPredicate
363 for (Predicate* op : current->GetOperands()) { in Visit()
527 absl::c_transform(pred->GetOperands(), std::back_inserter(new_operands), in SimplifyUsingDeMorgan()
693 for (Predicate* subop : op->GetOperands()) { in MakeAndOrImpl()
[all …]
/external/llvm-project/lldb/bindings/interface/
DSBInstruction.i39 GetOperands (lldb::SBTarget target);
84 return self.GetOperands (target)
/external/llvm-project/lldb/source/API/
DSBInstruction.cpp134 const char *SBInstruction::GetOperands(SBTarget target) { in GetOperands() function in SBInstruction
135 LLDB_RECORD_METHOD(const char *, SBInstruction, GetOperands, (lldb::SBTarget), in GetOperands()
149 return inst_sp->GetOperands(&exe_ctx); in GetOperands()
360 LLDB_REGISTER_METHOD(const char *, SBInstruction, GetOperands, in RegisterMethods()
/external/llvm-project/lldb/include/lldb/API/
DSBInstruction.h42 const char *GetOperands(lldb::SBTarget target);
/external/tensorflow/tensorflow/compiler/mlir/xla/
Dhlo_function_importer.h116 StatusOr<llvm::SmallVector<mlir::Value, 4>> GetOperands(
Dhlo_function_importer.cc229 TF_ASSIGN_OR_RETURN(auto operands, GetOperands(instruction)); in ImportInstructionImpl()
861 StatusOr<llvm::SmallVector<mlir::Value, 4>> HloFunctionImporter::GetOperands( in GetOperands() function in xla::HloFunctionImporter
/external/llvm-project/lldb/include/lldb/Core/
DDisassembler.h72 const char *GetOperands(const ExecutionContext *exe_ctx) { in GetOperands() function
/external/llvm-project/lldb/examples/python/
Dlldbtk.py386 self.target) + ' ' + self.instr.GetOperands(self.target)
Dsymbolication.py586 operands = inst.GetOperands(target)
/external/llvm-project/lldb/tools/lldb-vscode/
DJSONUtils.cpp637 const char *o = inst.GetOperands(g_vsc.target); in CreateSource()
/external/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
DDisassemblerLLVMC.cpp727 const char *operands_string = GetOperands(nullptr); in ParseOperands()
/external/llvm-project/lldb/source/Core/
DIOHandlerCursesGUI.cpp3812 const char *operands = inst->GetOperands(&exe_ctx); in WindowDelegateDraw()