Searched refs:use_pos (Results 1 – 7 of 7) sorted by relevance
/third_party/node/deps/v8/src/torque/ |
D | kythe-data.cc | 50 KythePosition use_pos = MakeKythePosition(use_position); in AddConstantUse() local 51 that->consumer_->AddUse(KytheConsumer::Kind::Constant, constant_id, use_pos); in AddConstantUse() 107 KythePosition use_pos = MakeKythePosition(use_position); in AddClassFieldUse() local 108 that->consumer_->AddUse(KytheConsumer::Kind::ClassField, field_id, use_pos); in AddClassFieldUse() 146 KythePosition use_pos = MakeKythePosition(use_position); in AddBindingUse() local 147 that->consumer_->AddUse(KytheConsumer::Kind::Variable, binding_id, use_pos); in AddBindingUse() 156 KythePosition use_pos = MakeKythePosition(use_position); in AddBindingUse() local 157 that->consumer_->AddUse(KytheConsumer::Kind::Variable, binding_id, use_pos); in AddBindingUse() 181 KythePosition use_pos = MakeKythePosition(use_position); in AddTypeUse() local 182 that->consumer_->AddUse(KytheConsumer::Kind::Type, type_id, use_pos); in AddTypeUse()
|
D | kythe-data.h | 42 KythePosition use_pos) = 0;
|
/third_party/node/deps/v8/src/compiler/backend/ |
D | register-allocator.cc | 199 UsePosition* use_pos = reinterpret_cast<UsePosition*>(hint_); in HintRegister() local 200 int assigned_register = AssignedRegisterField::decode(use_pos->flags_); in HintRegister() 245 void UsePosition::SetHint(UsePosition* use_pos) { in SetHint() argument 246 DCHECK_NOT_NULL(use_pos); in SetHint() 247 hint_ = use_pos; in SetHint() 251 void UsePosition::ResolveHint(UsePosition* use_pos) { in ResolveHint() argument 252 DCHECK_NOT_NULL(use_pos); in ResolveHint() 254 hint_ = use_pos; in ResolveHint() 429 UsePosition* use_pos = last_processed_use_; in NextUsePosition() local 430 if (use_pos == nullptr || use_pos->pos() > start) { in NextUsePosition() [all …]
|
D | register-allocator.h | 499 void SetHint(UsePosition* use_pos); in NON_EXPORTED_BASE() 500 void ResolveHint(UsePosition* use_pos); in NON_EXPORTED_BASE() 1251 void MapPhiHint(InstructionOperand* operand, UsePosition* use_pos); 1252 void ResolvePhiHint(InstructionOperand* operand, UsePosition* use_pos);
|
/third_party/ltp/tools/sparse/sparse-src/ |
D | parse.h | 128 extern void check_label_usage(struct symbol *label, struct position use_pos);
|
D | parse.c | 2376 void check_label_usage(struct symbol *label, struct position use_pos) in check_label_usage() argument 2382 warn_label_usage(def->pos, use_pos, label->ident); in check_label_usage() 2385 label->label_pos = use_pos; in check_label_usage()
|
/third_party/node/deps/v8/src/compiler/ |
D | verifier.cc | 1904 int use_pos) { in HasDominatingDef() argument 1907 while (use_pos >= 0) { in HasDominatingDef() 1908 if (block->NodeAt(use_pos) == node) return true; in HasDominatingDef() 1909 use_pos--; in HasDominatingDef() 1913 use_pos = static_cast<int>(block->NodeCount()) - 1; in HasDominatingDef() 1934 Node* node, int use_pos) { in CheckInputsDominate() argument 1939 use_pos = static_cast<int>(use_block->NodeCount()) - 1; in CheckInputsDominate() 1943 use_pos)) { in CheckInputsDominate()
|