Home
last modified time | relevance | path

Searched refs:block_ (Results 1 – 25 of 28) sorted by relevance

12

/external/deqp-deps/SPIRV-Tools/source/opt/
Dir_loader.cpp61 if (block_ != nullptr) { in AddInstruction()
73 if (block_ != nullptr) { in AddInstruction()
77 block_ = MakeUnique<BasicBlock>(std::move(spv_inst)); in AddInstruction()
83 if (block_ == nullptr) { in AddInstruction()
87 block_->AddInstruction(std::move(spv_inst)); in AddInstruction()
88 function_->AddBasicBlock(std::move(block_)); in AddInstruction()
89 block_ = nullptr; in AddInstruction()
92 SPIRV_ASSERT(consumer_, block_ == nullptr); in AddInstruction()
123 if (block_ == nullptr) { // Inside function but outside blocks in AddInstruction()
133 block_->AddInstruction(std::move(spv_inst)); in AddInstruction()
[all …]
Dir_loader.h78 std::unique_ptr<BasicBlock> block_; variable
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dir_loader.cpp61 if (block_ != nullptr) { in AddInstruction()
73 if (block_ != nullptr) { in AddInstruction()
77 block_ = MakeUnique<BasicBlock>(std::move(spv_inst)); in AddInstruction()
83 if (block_ == nullptr) { in AddInstruction()
87 block_->AddInstruction(std::move(spv_inst)); in AddInstruction()
88 function_->AddBasicBlock(std::move(block_)); in AddInstruction()
89 block_ = nullptr; in AddInstruction()
92 SPIRV_ASSERT(consumer_, block_ == nullptr); in AddInstruction()
123 if (block_ == nullptr) { // Inside function but outside blocks in AddInstruction()
133 block_->AddInstruction(std::move(spv_inst)); in AddInstruction()
[all …]
Dir_loader.h78 std::unique_ptr<BasicBlock> block_; variable
/external/v8/src/parsing/
Dpattern-rewriter.cc60 block_(nullptr), in PatternRewriter()
109 Block* block_; member in v8::internal::PatternRewriter
149 rewriter.block_ = block; in DeclareAndInitializeVariables()
174 block_->statements()->Add( in VisitVariableProxy()
180 DCHECK_NOT_NULL(block_); in VisitVariableProxy()
278 block_->statements()->Add(factory()->NewExpressionStatement(assignment, pos), in VisitVariableProxy()
289 block_->statements()->Add( in CreateTempVar()
317 Block* old_block = block_; in VisitRewritableExpression()
318 block_ = factory()->NewBlock(8, true); in VisitRewritableExpression()
331 Expression* expr = factory()->NewDoExpression(block_, temp, pos); in VisitRewritableExpression()
[all …]
/external/bcc/src/cc/frontends/b/
Dnode.h349 BlockStmtNode::Ptr block_; variable
351 : id_(move(id)), args_(move(args)), block_(make_unique<BlockStmtNode>()) { in MethodCallExprNode()
399 StmtNode::Ptr block_; variable
403 : cond_(move(cond)), block_(move(block)) {} in OnValidStmtNode()
406 : cond_(move(cond)), block_(move(block)), in OnValidStmtNode()
414 BlockStmtNode::Ptr block_; variable
416 : cond_(move(cond)), block_(move(block)) {} in SwitchStmtNode()
423 BlockStmtNode::Ptr block_; variable
425 : value_(move(value)), block_(move(block)) {} in CaseStmtNode()
426 explicit CaseStmtNode(BlockStmtNode::Ptr block) : block_(move(block)) {} in CaseStmtNode()
[all …]
Dtype_check.cc59 TRY2(n->block_->accept(this)); in visit_onvalid_stmt_node()
70 TRY2(n->block_->accept(this)); in visit_switch_stmt_node()
71 for (auto it = n->block_->stmts_.begin(); it != n->block_->stmts_.end(); ++it) { in visit_switch_stmt_node()
83 TRY2(n->block_->accept(this)); in visit_case_stmt_node()
260 if (n->block_->scope_) { in check_lookup_method()
263 n->block_->scope_->add("_result", result.get()); in check_lookup_method()
264 n->block_->stmts_.insert(n->block_->stmts_.begin(), move(result)); in check_lookup_method()
336 if (!n->block_->stmts_.empty()) { in visit_method_call_expr_node()
339 TRY2(n->block_->accept(this)); in visit_method_call_expr_node()
434 s1->subs_[0].block_->scope_->add("$" + name, offset_var.get()); in visit_state_decl_stmt_node()
[all …]
Dprinter.cc60 TRY2(n->block_->accept(this)); in visit_onvalid_stmt_node()
72 TRY2(n->block_->accept(this)); in visit_switch_stmt_node()
83 TRY2(n->block_->accept(this)); in visit_case_stmt_node()
169 if (!n->block_->stmts_.empty()) { in visit_method_call_expr_node()
172 for (auto it = n->block_->stmts_.begin(); it != n->block_->stmts_.end(); ++it) { in visit_method_call_expr_node()
270 TRY2(n->block_->accept(this)); in visit_match_decl_stmt_node()
285 TRY2(n->block_->accept(this)); in visit_miss_decl_stmt_node()
300 TRY2(n->block_->accept(this)); in visit_failure_decl_stmt_node()
330 TRY2(n->block_->accept(this)); in visit_func_decl_stmt_node()
Dcodegen_llvm.cc182 TRY2(n->block_->accept(this)); in visit_onvalid_stmt_node()
209 TRY2(n->block_->accept(this)); in visit_switch_stmt_node()
234 TRY2(n->block_->accept(this)); in visit_case_stmt_node()
775 TRY2(n->block_->accept(this)); in visit_method_call_expr_node()
910 TRY2(n->block_->accept(this)); in visit_match_decl_stmt_node()
938 TRY2(n->block_->accept(this)); in visit_miss_decl_stmt_node()
1067 TRY2(it->block_->accept(this)); in visit_state_decl_stmt_node()
1219 TRY2(n->block_->accept(this)); in visit_func_decl_stmt_node()
Dparser.yy186 $1->block_->stmts_ = move(*$4); delete $4;
187 $1->block_->scope_ = $3;
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dinstruction.h53 const BasicBlock* block() const { return block_; } in block()
54 void set_block(BasicBlock* b) { block_ = b; } in set_block()
110 BasicBlock* block_ = nullptr; variable
/external/deqp-deps/SPIRV-Tools/source/val/
Dinstruction.h53 const BasicBlock* block() const { return block_; } in block()
54 void set_block(BasicBlock* b) { block_ = b; } in set_block()
110 BasicBlock* block_ = nullptr; variable
/external/tensorflow/tensorflow/core/lib/io/
Dtable_test.cc191 BlockConstructor() : block_(nullptr) {} in BlockConstructor()
192 ~BlockConstructor() override { delete block_; } in ~BlockConstructor()
194 delete block_; in FinishImpl()
195 block_ = nullptr; in FinishImpl()
207 block_ = new Block(contents); in FinishImpl()
210 Iterator* NewIterator() const override { return block_->NewIterator(); } in NewIterator()
214 Block* block_; member in tensorflow::table::BlockConstructor
/external/stressapptest/src/
Derror_diag.h113 int block_; // error block. variable
124 int block_; // error block. variable
Derror_diag.cc225 error->block_ = block; in AddHDDMiscompareError()
279 error->block_ = block; in AddHDDSectorTagError()
/external/v8/tools/gcmole/
Dgcmole.cc550 block_(NULL), in FunctionAnalyzer()
1018 block_->MergeOut(env); in DECL_VISIT_STMT()
1023 block_->MergeIn(env); in DECL_VISIT_STMT()
1078 Environment in = Environment::Merge(env, block_->in()); in DECL_VISIT_STMT()
1084 Environment in = Environment::Merge(env, block_->in()); in DECL_VISIT_STMT()
1184 Block* parent = block_; in EnterBlock()
1185 block_ = block; in EnterBlock()
1190 block_ = block; in LeaveBlock()
1209 Block* block_; member in __anon85d096280111::FunctionAnalyzer
/external/v8/src/
Dglobal-handles.cc479 : block_(global_handles->first_used_block_), in NodeIterator()
482 bool done() const { return block_ == nullptr; } in done()
486 return block_->node_at(index_); in node()
493 block_ = block_->next_used(); in Advance()
497 NodeBlock* block_; member in v8::internal::GlobalHandles::NodeIterator
/external/v8/src/compiler/
Draw-machine-assembler.cc449 if (label->block_ == nullptr) { in EnsureBlock()
450 label->block_ = schedule()->NewBasicBlock(); in EnsureBlock()
452 return label->block_; in EnsureBlock()
532 << "\n# label: " << *block_; in ~RawMachineLabel()
Dinstruction.cc327 block_(nullptr) { in Instruction()
342 block_(nullptr) { in Instruction()
696 const InstructionBlock* block = printable_block.block_; in operator <<()
1098 printable_block.block_ = code.InstructionBlockAt(RpoNumber::FromInt(i)); in operator <<()
Dinstruction.h951 InstructionBlock* block() const { return block_; } in block()
954 block_ = block; in set_block()
983 InstructionBlock* block_; variable
1458 const InstructionBlock* block_; member
Dregister-allocator.h725 const InstructionBlock* block() const { return block_; } in block()
740 const InstructionBlock* const block_; variable
Draw-machine-assembler.h956 BasicBlock* block() const { return block_; } in block()
959 BasicBlock* block_ = nullptr;
/external/v8/src/debug/
Ddebug-interface.h266 : block_(block), coverage_(std::move(coverage)) {} in BlockData()
268 i::CoverageBlock* block_; variable
/external/v8/src/ast/
Dast.h367 Block* block() { return block_; } in block()
374 : Expression(pos, kDoExpression), block_(block), result_(result) { in DoExpression()
375 DCHECK_NOT_NULL(block_); in DoExpression()
379 Block* block_; variable
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/visitor/
DCloneVisitor.java336 BlockStmt block_ = cloneNodes(_n.getBody(), _arg); in visit() local
352 block_ in visit()

12