/external/v8/src/compiler/ |
D | effect-control-linearizer.h | 44 void ProcessNode(Node* node, Node** frame_state, Node** effect, 45 Node** control); 47 bool TryWireInStateEffect(Node* node, Node* frame_state, Node** effect, 48 Node** control); 49 Node* LowerChangeBitToTagged(Node* node); 50 Node* LowerChangeInt31ToTaggedSigned(Node* node); 51 Node* LowerChangeInt32ToTagged(Node* node); 52 Node* LowerChangeUint32ToTagged(Node* node); 53 Node* LowerChangeFloat64ToTagged(Node* node); 54 Node* LowerChangeFloat64ToTaggedPointer(Node* node); [all …]
|
D | raw-machine-assembler.h | 69 Node* NullConstant(); 70 Node* UndefinedConstant(); 73 Node* PointerConstant(void* value) { in PointerConstant() 76 Node* IntPtrConstant(intptr_t value) { in IntPtrConstant() 81 Node* RelocatableIntPtrConstant(intptr_t value, RelocInfo::Mode rmode); 82 Node* Int32Constant(int32_t value) { in Int32Constant() 85 Node* StackSlot(MachineRepresentation rep, int alignment = 0) { 88 Node* Int64Constant(int64_t value) { in Int64Constant() 91 Node* NumberConstant(double value) { in NumberConstant() 94 Node* Float32Constant(float value) { in Float32Constant() [all …]
|
D | wasm-compiler.h | 29 class Node; variable 40 typedef compiler::Node TFNode; 112 Node* mem_start; 113 Node* mem_size; 114 Node* mem_mask; 131 Node** Buffer(size_t count) { in Buffer() 135 reinterpret_cast<Node**>(zone_->New(new_size * sizeof(Node*))); in Buffer() 144 Node* Error(); 145 Node* Start(unsigned params); 146 Node* Param(unsigned index); [all …]
|
D | js-call-reducer.h | 52 Reduction Reduce(Node* node) final; 59 Reduction ReduceArrayConstructor(Node* node); 60 Reduction ReduceBooleanConstructor(Node* node); 61 Reduction ReduceCallApiFunction(Node* node, 63 Reduction ReduceFunctionPrototypeApply(Node* node); 64 Reduction ReduceFunctionPrototypeBind(Node* node); 65 Reduction ReduceFunctionPrototypeCall(Node* node); 66 Reduction ReduceFunctionPrototypeHasInstance(Node* node); 67 Reduction ReduceObjectConstructor(Node* node); 68 Reduction ReduceObjectGetPrototype(Node* node, Node* object); [all …]
|
D | node-properties.h | 30 static int FirstValueIndex(Node* node) { return 0; } in FirstValueIndex() 31 static int FirstContextIndex(Node* node) { return PastValueIndex(node); } in FirstContextIndex() 32 static int FirstFrameStateIndex(Node* node) { return PastContextIndex(node); } in FirstFrameStateIndex() 33 static int FirstEffectIndex(Node* node) { return PastFrameStateIndex(node); } in FirstEffectIndex() 34 static int FirstControlIndex(Node* node) { return PastEffectIndex(node); } in FirstControlIndex() 35 static int PastValueIndex(Node* node); 36 static int PastContextIndex(Node* node); 37 static int PastFrameStateIndex(Node* node); 38 static int PastEffectIndex(Node* node); 39 static int PastControlIndex(Node* node); [all …]
|
D | js-native-context-specialization.h | 59 Reduction Reduce(Node* node) final; 62 Reduction ReduceJSAdd(Node* node); 63 Reduction ReduceJSGetSuperConstructor(Node* node); 64 Reduction ReduceJSInstanceOf(Node* node); 65 Reduction ReduceJSHasInPrototypeChain(Node* node); 66 Reduction ReduceJSOrdinaryHasInstance(Node* node); 67 Reduction ReduceJSPromiseResolve(Node* node); 68 Reduction ReduceJSResolvePromise(Node* node); 69 Reduction ReduceJSLoadContext(Node* node); 70 Reduction ReduceJSLoadGlobal(Node* node); [all …]
|
D | machine-operator-reducer.h | 32 Reduction Reduce(Node* node) override; in NON_EXPORTED_BASE() 35 Node* Float32Constant(volatile float value); in NON_EXPORTED_BASE() 36 Node* Float64Constant(volatile double value); in NON_EXPORTED_BASE() 37 Node* Int32Constant(int32_t value); in NON_EXPORTED_BASE() 38 Node* Int64Constant(int64_t value); in NON_EXPORTED_BASE() 39 Node* Uint32Constant(uint32_t value) { in NON_EXPORTED_BASE() 42 Node* Uint64Constant(uint64_t value) { in NON_EXPORTED_BASE() 45 Node* Float64Mul(Node* lhs, Node* rhs); in NON_EXPORTED_BASE() 46 Node* Float64PowHalf(Node* value); in NON_EXPORTED_BASE() 47 Node* Word32And(Node* lhs, Node* rhs); in NON_EXPORTED_BASE() [all …]
|
D | js-create-lowering.h | 48 Reduction Reduce(Node* node) final; in NON_EXPORTED_BASE() 51 Reduction ReduceJSCreate(Node* node); in NON_EXPORTED_BASE() 52 Reduction ReduceJSCreateArguments(Node* node); in NON_EXPORTED_BASE() 53 Reduction ReduceJSCreateArray(Node* node); in NON_EXPORTED_BASE() 54 Reduction ReduceJSCreateArrayIterator(Node* node); in NON_EXPORTED_BASE() 55 Reduction ReduceJSCreateCollectionIterator(Node* node); in NON_EXPORTED_BASE() 56 Reduction ReduceJSCreateBoundFunction(Node* node); in NON_EXPORTED_BASE() 57 Reduction ReduceJSCreateClosure(Node* node); in NON_EXPORTED_BASE() 58 Reduction ReduceJSCreateIterResultObject(Node* node); in NON_EXPORTED_BASE() 59 Reduction ReduceJSCreateStringIterator(Node* node); in NON_EXPORTED_BASE() [all …]
|
D | js-type-hint-lowering.h | 24 class Node; variable 61 Node* value() const { return value_; } in value() 62 Node* effect() const { return effect_; } in effect() 63 Node* control() const { return control_; } in control() 71 static LoweringResult SideEffectFree(Node* value, Node* effect, in SideEffectFree() 72 Node* control) { in SideEffectFree() 84 static LoweringResult Exit(Node* control) { in Exit() 92 LoweringResult(LoweringResultKind kind, Node* value, Node* effect, in LoweringResult() 93 Node* control) in LoweringResult() 97 Node* value_; [all …]
|
D | bytecode-graph-builder.h | 58 Node* GetFunctionClosure(); 61 Node* BuildLoadNativeContextField(int index); 72 Node* NewNode(const Operator* op, bool incomplete = false) { 73 return MakeNode(op, 0, static_cast<Node**>(nullptr), incomplete); 76 Node* NewNode(const Operator* op, Node* n1) { in NewNode() 77 Node* buffer[] = {n1}; in NewNode() 81 Node* NewNode(const Operator* op, Node* n1, Node* n2) { in NewNode() 82 Node* buffer[] = {n1, n2}; in NewNode() 86 Node* NewNode(const Operator* op, Node* n1, Node* n2, Node* n3) { in NewNode() 87 Node* buffer[] = {n1, n2, n3}; in NewNode() [all …]
|
D | js-typed-lowering.h | 40 Reduction Reduce(Node* node) final; in NON_EXPORTED_BASE() 45 Reduction ReduceJSAdd(Node* node); in NON_EXPORTED_BASE() 46 Reduction ReduceJSBitwiseNot(Node* node); in NON_EXPORTED_BASE() 47 Reduction ReduceJSDecrement(Node* node); in NON_EXPORTED_BASE() 48 Reduction ReduceJSIncrement(Node* node); in NON_EXPORTED_BASE() 49 Reduction ReduceJSNegate(Node* node); in NON_EXPORTED_BASE() 50 Reduction ReduceJSComparison(Node* node); in NON_EXPORTED_BASE() 51 Reduction ReduceJSLoadNamed(Node* node); in NON_EXPORTED_BASE() 52 Reduction ReduceJSHasInPrototypeChain(Node* node); in NON_EXPORTED_BASE() 53 Reduction ReduceJSOrdinaryHasInstance(Node* node); in NON_EXPORTED_BASE() [all …]
|
/external/v8/src/builtins/ |
D | builtins-promise-gen.h | 79 Node* AllocateAndInitJSPromise(Node* context); 82 Node* AllocateAndInitJSPromise(Node* context, Node* parent); 86 Node* AllocateAndSetJSPromise(Node* context, v8::Promise::PromiseState status, 87 Node* result); 89 Node* AllocatePromiseReaction(Node* next, Node* promise_or_capability, 90 Node* fulfill_handler, Node* reject_handler); 92 Node* AllocatePromiseReactionJobTask(Heap::RootListIndex map_root_index, 93 Node* context, Node* argument, 94 Node* handler, 95 Node* promise_or_capability); [all …]
|
D | builtins-regexp-gen.h | 18 void BranchIfFastRegExp(Node* const context, Node* const object, 19 Node* const map, Label* const if_isunmodified, 53 void FastStoreLastIndex(Node* regexp, Node* value); 54 void SlowStoreLastIndex(Node* context, Node* regexp, Node* value); 55 void StoreLastIndex(Node* context, Node* regexp, Node* value, 60 void GetStringPointers(Node* const string_data, Node* const offset, 61 Node* const last_index, Node* const string_length, 84 Node* ThrowIfNotJSReceiver(Node* context, Node* maybe_receiver, 92 void BranchIfFastRegExp(Node* const context, Node* const object, 98 Node* IsFastRegExpNoPrototype(Node* const context, Node* const object); [all …]
|
D | builtins-async-gen.h | 19 typedef std::function<void(Node*)> ContextInitializer; 26 Node* Await(Node* context, Node* generator, Node* value, Node* outer_promise, 29 Node* on_resolve_context_index, Node* on_reject_context_index, 30 Node* is_predicted_as_caught); 31 Node* AwaitOptimized(Node* context, Node* generator, Node* value, 32 Node* outer_promise, int context_length, 34 Node* on_resolve_context_index, 35 Node* on_reject_context_index, 36 Node* is_predicted_as_caught); 37 Node* Await(Node* context, Node* generator, Node* value, Node* outer_promise, in Await() [all …]
|
D | builtins-string-gen.h | 19 Node* GetSubstitution(Node* context, Node* subject_string, 20 Node* match_start_index, Node* match_end_index, 21 Node* replace_string); 22 void StringEqual_Core(Node* context, Node* lhs, Node* lhs_instance_type, 23 Node* rhs, Node* rhs_instance_type, 28 void StringEqual_Loop(Node* lhs, Node* lhs_instance_type, 29 MachineType lhs_type, Node* rhs, 30 Node* rhs_instance_type, MachineType rhs_type, 33 Node* DirectStringData(Node* string, Node* string_instance_type); 35 void DispatchOnStringEncodings(Node* const lhs_instance_type, [all …]
|
D | builtins-async-iterator-gen.cc | 15 using compiler::Node; 23 void ThrowIfNotAsyncFromSyncIterator(Node* const context, Node* const object, 28 typedef std::function<void(Node* const context, Node* const promise, 31 typedef std::function<Node*(Node*)> SyncIteratorNodeGenerator; 33 Node* const context, Node* const iterator, Node* const sent_value, 38 Node* const initial_exception_value = nullptr); 40 Node* const context, Node* const iterator, Node* const sent_value, 45 Node* const initial_exception_value = nullptr); 48 Node* const context, Node* const iterator, Node* const sent_value, in Generate_AsyncFromSyncIteratorMethod() 52 Node* const initial_exception_value = nullptr) { in Generate_AsyncFromSyncIteratorMethod() [all …]
|
/external/one-true-awk/ |
D | proto.h | 27 extern int constnode(Node *); 28 extern char *strnode(Node *); 29 extern Node *notnull(Node *); 44 extern void penter(Node *); 45 extern void freetr(Node *); 50 extern void cfoll(fa *, Node *); 51 extern int first(Node *); 52 extern void follow(Node *); 57 extern Node *reparse(const char *); 58 extern Node *regexp(void); [all …]
|
D | parse.c | 32 Node *nodealloc(int n) in nodealloc() 34 Node *x; in nodealloc() 36 x = (Node *) malloc(sizeof(Node) + (n-1)*sizeof(Node *)); in nodealloc() 44 Node *exptostat(Node *a) in exptostat() 50 Node *node1(int a, Node *b) in node1() 52 Node *x; in node1() 60 Node *node2(int a, Node *b, Node *c) in node2() 62 Node *x; in node2() 71 Node *node3(int a, Node *b, Node *c, Node *d) in node3() 73 Node *x; in node3() [all …]
|
/external/tensorflow/tensorflow/core/graph/ |
D | testlib.h | 41 Node* Constant(Graph* g, const Tensor& tensor); 42 Node* Constant(Graph* g, const Tensor& tensor, const string& name); 49 Node* HostConstant(Graph* g, const Tensor& tensor); 50 Node* HostConstant(Graph* g, const Tensor& tensor, const string& name); 53 Node* Var(Graph* g, const DataType dtype, const TensorShape& shape); 54 Node* Var(Graph* g, const DataType dtype, const TensorShape& shape, 58 Node* Assign(Graph* g, Node* var, Node* val); 62 Node* Send(Graph* g, Node* input, const string& tensor, const string& sender, 67 Node* Recv(Graph* g, const string& tensor, const string& type, 72 Node* Cumsum(Graph* g, Node* data, Node* axes, bool exclusive = false, [all …]
|
D | testlib.cc | 35 Node* Send(Graph* g, Node* input, const string& tensor, const string& sender, in Send() 37 Node* ret; in Send() 49 Node* Recv(Graph* g, const string& tensor, const string& type, in Recv() 52 Node* ret; in Recv() 66 Node* Constant(Graph* g, const Tensor& tensor) { in Constant() 67 Node* ret; in Constant() 75 Node* Constant(Graph* g, const Tensor& tensor, const string& name) { in Constant() 76 Node* ret; in Constant() 84 Node* HostConstant(Graph* g, const Tensor& tensor) { in HostConstant() 88 Node* HostConstant(Graph* g, const Tensor& tensor, const string& name) { in HostConstant() [all …]
|
/external/v8/src/interpreter/ |
D | interpreter-assembler.h | 28 compiler::Node* BytecodeOperandCount(int operand_index); 31 compiler::Node* BytecodeOperandFlag(int operand_index); 34 compiler::Node* BytecodeOperandIdxInt32(int operand_index); 37 compiler::Node* BytecodeOperandIdx(int operand_index); 40 compiler::Node* BytecodeOperandIdxSmi(int operand_index); 43 compiler::Node* BytecodeOperandUImm(int operand_index); 46 compiler::Node* BytecodeOperandUImmWord(int operand_index); 49 compiler::Node* BytecodeOperandUImmSmi(int operand_index); 52 compiler::Node* BytecodeOperandImm(int operand_index); 55 compiler::Node* BytecodeOperandImmIntPtr(int operand_index); [all …]
|
/external/clang/lib/AST/ |
D | StmtPrinter.cpp | 96 void VisitStmt(Stmt *Node) LLVM_ATTRIBUTE_UNUSED { in VisitStmt() argument 99 void VisitExpr(Expr *Node) LLVM_ATTRIBUTE_UNUSED { in VisitExpr() argument 102 void VisitCXXNamedCastExpr(CXXNamedCastExpr *Node); 106 void Visit##CLASS(CLASS *Node); 117 void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) { in PrintRawCompoundStmt() argument 119 for (auto *I : Node->body()) in PrintRawCompoundStmt() 134 void StmtPrinter::VisitNullStmt(NullStmt *Node) { in VisitNullStmt() argument 138 void StmtPrinter::VisitDeclStmt(DeclStmt *Node) { in VisitDeclStmt() argument 140 PrintRawDeclStmt(Node); in VisitDeclStmt() 144 void StmtPrinter::VisitCompoundStmt(CompoundStmt *Node) { in VisitCompoundStmt() argument [all …]
|
/external/v8/src/ic/ |
D | binary-op-assembler.h | 20 typedef compiler::Node Node; typedef 25 Node* Generate_AddWithFeedback(Node* context, Node* lhs, Node* rhs, 26 Node* slot_id, Node* feedback_vector, 29 Node* Generate_SubtractWithFeedback(Node* context, Node* lhs, Node* rhs, 30 Node* slot_id, Node* feedback_vector, 33 Node* Generate_MultiplyWithFeedback(Node* context, Node* lhs, Node* rhs, 34 Node* slot_id, Node* feedback_vector, 37 Node* Generate_DivideWithFeedback(Node* context, Node* dividend, 38 Node* divisor, Node* slot_id, 39 Node* feedback_vector, bool rhs_is_smi); [all …]
|
D | accessor-assembler.h | 21 using Node = compiler::Node; 52 void TryProbeStubCache(StubCache* stub_cache, Node* receiver, Node* name, 56 Node* StubCachePrimaryOffsetForTesting(Node* name, Node* map) { in StubCachePrimaryOffsetForTesting() 59 Node* StubCacheSecondaryOffsetForTesting(Node* name, Node* map) { in StubCacheSecondaryOffsetForTesting() 64 LoadICParameters(Node* context, Node* receiver, Node* name, Node* slot, 65 Node* vector, Node* holder = nullptr) 73 Node* context; 74 Node* receiver; 75 Node* name; 76 Node* slot; [all …]
|
/external/libxml2/result/pattern/ |
D | multiple | 1 Node /c/b[1]/a[1] matches pattern a 2 Node /c/b[1]/a[2] matches pattern a 3 Node /c/c/b/a[1] matches pattern a 4 Node /c/c/b/a[2] matches pattern a 5 Node /c/b[2]/a[1] matches pattern a 6 Node /c/b[2]/a[2] matches pattern a 7 Node /c/b[1] matches pattern b 8 Node /c/c/b matches pattern b 9 Node /c/b[2] matches pattern b 10 Node /c matches pattern c [all …]
|