Home | History | Annotate | Download | only in compiler

Lines Matching full:static

20   static inline Node* GetValueInput(Node* node, int index);
21 static inline Node* GetContextInput(Node* node);
22 static inline Node* GetFrameStateInput(Node* node);
23 static inline Node* GetEffectInput(Node* node, int index = 0);
24 static inline Node* GetControlInput(Node* node, int index = 0);
26 static inline int GetFrameStateIndex(Node* node);
28 static inline bool IsValueEdge(Node::Edge edge);
29 static inline bool IsContextEdge(Node::Edge edge);
30 static inline bool IsEffectEdge(Node::Edge edge);
31 static inline bool IsControlEdge(Node::Edge edge);
33 static inline bool IsControl(Node* node);
35 static inline void ReplaceControlInput(Node* node, Node* control);
36 static inline void ReplaceEffectInput(Node* node, Node* effect,
38 static inline void ReplaceFrameStateInput(Node* node, Node* frame_state);
39 static inline void RemoveNonValueInputs(Node* node);
40 static inline void ReplaceWithValue(Node* node, Node* value,
43 static inline Bounds GetBounds(Node* node);
44 static inline void SetBounds(Node* node, Bounds bounds);
46 static inline int FirstValueIndex(Node* node);
47 static inline int FirstContextIndex(Node* node);
48 static inline int FirstFrameStateIndex(Node* node);
49 static inline int FirstEffectIndex(Node* node);
50 static inline int FirstControlIndex(Node* node);
51 static inline int PastValueIndex(Node* node);
52 static inline int PastContextIndex(Node* node);
53 static inline int PastFrameStateIndex(Node* node);
54 static inline int PastEffectIndex(Node* node);
55 static inline int PastControlIndex(Node* node);
57 static inline bool IsInputRange(Node::Edge edge, int first, int count);