/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | StackMaps.cpp | 368 StackMapOpers opers(&MI); in recordStackMap() local 370 recordStackMapOpers(MI, ID, std::next(MI.operands_begin(), opers.getVarIdx()), in recordStackMap() 377 PatchPointOpers opers(&MI); in recordPatchPoint() local 378 const int64_t ID = opers.getID(); in recordPatchPoint() 379 auto MOI = std::next(MI.operands_begin(), opers.getStackMapStartIdx()); in recordPatchPoint() 381 opers.isAnyReg() && opers.hasDef()); in recordPatchPoint() 386 if (opers.isAnyReg()) { in recordPatchPoint() 387 unsigned NArgs = opers.getNumCallArgs(); in recordPatchPoint() 388 for (unsigned i = 0, e = (opers.hasDef() ? NArgs + 1 : NArgs); i != e; ++i) in recordPatchPoint() 398 StatepointOpers opers(&MI); in recordStatepoint() local [all …]
|
/external/llvm/lib/CodeGen/ |
D | StackMaps.cpp | 355 PatchPointOpers opers(&MI); in recordPatchPoint() local 356 int64_t ID = opers.getMetaOper(PatchPointOpers::IDPos).getImm(); in recordPatchPoint() 358 auto MOI = std::next(MI.operands_begin(), opers.getStackMapStartIdx()); in recordPatchPoint() 360 opers.isAnyReg() && opers.hasDef()); in recordPatchPoint() 365 if (opers.isAnyReg()) { in recordPatchPoint() 366 unsigned NArgs = opers.getMetaOper(PatchPointOpers::NArgPos).getImm(); in recordPatchPoint() 367 for (unsigned i = 0, e = (opers.hasDef() ? NArgs + 1 : NArgs); i != e; ++i) in recordPatchPoint() 376 StatepointOpers opers(&MI); in recordStatepoint() local 379 const unsigned StartIdx = opers.getVarIdx(); in recordStatepoint() 380 recordStackMapOpers(MI, opers.getID(), MI.operands_begin() + StartIdx, in recordStatepoint()
|
D | TargetInstrInfo.cpp | 445 PatchPointOpers opers(&MI); in foldPatchpoint() local 446 StartIdx = opers.getVarIdx(); in foldPatchpoint()
|
/external/tensorflow/tensorflow/python/client/ |
D | tf_session.i | 410 %typemap(in, numinputs=0) (int* num_opers, TF_Operation*** opers) 411 (int num_opers, TF_Operation** opers) { 413 $2 = &opers; 416 %typemap(argout) (int* num_opers, TF_Operation*** opers) { 422 TF_Operation** opers = *$2; 424 PyList_SET_ITEM($result, i, CreateWrappedTFOperation(opers[i])); 587 %typemap(in) (const std::vector<TF_Operation*>* opers) 588 (std::vector<TF_Operation*> opers) { 599 opers.push_back(oper_ptr); 601 $1 = &opers;
|
D | tf_session_helper.cc | 591 const std::vector<TF_Operation*>* opers, in TF_GraphToFunction_wrapper() argument 609 if (opers != nullptr) { in TF_GraphToFunction_wrapper() 610 nopers = opers->size(); in TF_GraphToFunction_wrapper() 611 opers_array = opers->data(); in TF_GraphToFunction_wrapper()
|
D | tf_session_helper.h | 209 const std::vector<TF_Operation*>* opers,
|
/external/tensorflow/tensorflow/c/ |
D | c_api_function.cc | 521 const TF_Operation* const* opers, in ComputeBodyNodes() argument 547 const Node* node = &opers[i]->node; in ComputeBodyNodes() 563 const TF_Operation* const* opers, int ninputs, const TF_Output* inputs, in TF_GraphToFunctionWithControlOutputs() argument 604 fn_body, fn_name, num_opers, opers, input_nodes, &body_nodes); in TF_GraphToFunctionWithControlOutputs() 629 int num_opers, const TF_Operation* const* opers, in TF_GraphToFunction() argument 636 fn_body, fn_name, append_hash_to_fn_name, num_opers, opers, ninputs, in TF_GraphToFunction()
|
D | c_api.h | 1020 TF_ImportGraphDefResults* results, int* num_opers, TF_Operation*** opers); 1313 const TF_Operation* const* opers, int ninputs, const TF_Output* inputs, 1333 const TF_Operation* const* opers, int ninputs, const TF_Output* inputs,
|
D | c_api_function_test.cc | 153 void Define(int num_opers, const std::vector<TF_Operation*>& opers, in Define() argument 158 DefineT(num_opers, opers, ToOutput(inputs), ToOutput(outputs), output_names, in Define() 177 void DefineT(int num_opers, const std::vector<TF_Operation*>& opers, in DefineT() argument 185 num_opers == -1 ? nullptr : opers.data(), in DefineT()
|
D | c_api.cc | 2098 TF_Operation*** opers) { in TF_ImportGraphDefResultsReturnOperations() argument 2100 *opers = results->return_nodes.data(); in TF_ImportGraphDefResultsReturnOperations()
|
/external/llvm/lib/Target/X86/ |
D | X86MCInstLower.cpp | 979 PatchPointOpers opers(&MI); in LowerPATCHPOINT() local 980 unsigned ScratchIdx = opers.getNextScratchIdx(); in LowerPATCHPOINT() 983 opers.getMetaOper(PatchPointOpers::TargetPos); in LowerPATCHPOINT() 1019 unsigned NumBytes = opers.getMetaOper(PatchPointOpers::NBytesPos).getImm(); in LowerPATCHPOINT()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86MCInstLower.cpp | 1071 PatchPointOpers opers(&MI); in LowerPATCHPOINT() local 1072 unsigned ScratchIdx = opers.getNextScratchIdx(); in LowerPATCHPOINT() 1074 const MachineOperand &CalleeMO = opers.getCallTarget(); in LowerPATCHPOINT() 1113 unsigned NumBytes = opers.getNumPatchBytes(); in LowerPATCHPOINT()
|