• Home
  • Raw
  • Download

Lines Matching full:static

29static JSTaggedValue CallSpread(JSThread *thread, JSTaggedValue func, JSTaggedValue obj, JSTaggedV…
30 static JSTaggedValue Neg(JSThread *thread, JSTaggedValue value);
31 static JSTaggedValue AsyncFunctionEnter(JSThread *thread);
32 static JSTaggedValue ToNumber(JSThread *thread, JSTaggedValue value);
33 static JSTaggedValue ToNumeric(JSThread *thread, JSTaggedValue value);
34 static JSTaggedValue Not(JSThread *thread, JSTaggedValue value);
35 static JSTaggedValue Inc(JSThread *thread, JSTaggedValue value);
36 static JSTaggedValue Dec(JSThread *thread, JSTaggedValue value);
37 static void Throw(JSThread *thread, JSTaggedValue value);
38 static JSTaggedValue GetPropIterator(JSThread *thread, JSTaggedValue value);
39 static void ThrowConstAssignment(JSThread *thread, JSTaggedValue value);
40 static JSTaggedValue Add2(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
41 static JSTaggedValue Sub2(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
42 static JSTaggedValue Mul2(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
43 static JSTaggedValue Div2(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
44 static JSTaggedValue Mod2(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
45 static JSTaggedValue Eq(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
46 static JSTaggedValue NotEq(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
47 static JSTaggedValue Less(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
48 static JSTaggedValue LessEq(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
49 static JSTaggedValue Greater(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
50 static JSTaggedValue GreaterEq(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
51 static JSTaggedValue Shl2(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
52 static JSTaggedValue Shr2(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
53 static JSTaggedValue Ashr2(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
54 static JSTaggedValue And2(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
55 static JSTaggedValue Or2(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
56 static JSTaggedValue Xor2(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
58 static JSTaggedValue ToJSTaggedValueWithInt32(JSThread *thread, JSTaggedValue value);
59 static JSTaggedValue ToJSTaggedValueWithUint32(JSThread *thread, JSTaggedValue value);
61 static JSTaggedValue DelObjProp(JSThread *thread, JSTaggedValue obj, JSTaggedValue prop);
62 static JSTaggedValue NewObjRange(JSThread *thread, JSTaggedValue func, JSTaggedValue newTarget,
64static JSTaggedValue CreateObjectWithExcludedKeys(JSThread *thread, uint16_t numKeys, JSTaggedValu…
66 static JSTaggedValue Exp(JSThread *thread, JSTaggedValue base, JSTaggedValue exponent);
67 static JSTaggedValue IsIn(JSThread *thread, JSTaggedValue prop, JSTaggedValue obj);
68 static JSTaggedValue Instanceof(JSThread *thread, JSTaggedValue obj, JSTaggedValue target);
69static JSTaggedValue InstanceofByHandler(JSThread *thread, JSTaggedValue target, JSTaggedValue obj…
72 static JSTaggedValue NewLexicalEnv(JSThread *thread, uint16_t numVars);
73static JSTaggedValue NewLexicalEnvWithName(JSThread *thread, uint16_t numVars, uint16_t scopeId);
74static JSTaggedValue CreateIterResultObj(JSThread *thread, JSTaggedValue value, JSTaggedValue flag…
76 static JSTaggedValue CreateGeneratorObj(JSThread *thread, JSTaggedValue genFunc);
77static JSTaggedValue SuspendGenerator(JSThread *thread, JSTaggedValue genObj, JSTaggedValue value);
78 static void SetGeneratorState(JSThread *thread, JSTaggedValue genObj, int32_t index);
79static JSTaggedValue AsyncFunctionAwaitUncaught(JSThread *thread, JSTaggedValue asyncFuncObj, JSTa…
80static JSTaggedValue AsyncFunctionResolveOrReject(JSThread *thread, JSTaggedValue asyncFuncObj, JS…
83 static JSTaggedValue NewObjApply(JSThread *thread, JSTaggedValue func, JSTaggedValue array);
84 static void ThrowUndefinedIfHole(JSThread *thread, JSTaggedValue obj);
85 static void ThrowIfNotObject(JSThread *thread);
86 static void ThrowThrowNotExists(JSThread *thread);
87 static void ThrowPatternNonCoercible(JSThread *thread);
88static JSTaggedValue ThrowIfSuperNotCorrectCall(JSThread *thread, uint16_t index, JSTaggedValue th…
89 static void ThrowDeleteSuperProperty(JSThread *thread);
91static JSTaggedValue StOwnByName(JSThread *thread, JSTaggedValue obj, JSTaggedValue prop, JSTagged…
92static JSTaggedValue StOwnByNameWithNameSet(JSThread *thread, JSTaggedValue obj, JSTaggedValue pro…
94static JSTaggedValue StOwnByIndex(JSThread *thread, JSTaggedValue obj, uint32_t idx, JSTaggedValue…
95static JSTaggedValue StOwnByValue(JSThread *thread, JSTaggedValue obj, JSTaggedValue key, JSTagged…
96static JSTaggedValue StOwnByValueWithNameSet(JSThread *thread, JSTaggedValue obj, JSTaggedValue ke…
98static JSTaggedValue CreateEmptyArray(JSThread *thread, ObjectFactory *factory, JSHandle<GlobalEnv…
99static JSTaggedValue CreateEmptyObject(JSThread *thread, ObjectFactory *factory, JSHandle<GlobalEn…
100static JSTaggedValue CreateObjectWithBuffer(JSThread *thread, ObjectFactory *factory, JSObject *li…
101static JSTaggedValue CreateObjectHavingMethod(JSThread *thread, ObjectFactory *factory, JSObject *…
103static JSTaggedValue SetObjectWithProto(JSThread *thread, JSTaggedValue proto, JSTaggedValue obj);
104static JSTaggedValue CreateArrayWithBuffer(JSThread *thread, ObjectFactory *factory, JSArray *lite…
106 static JSTaggedValue GetTemplateObject(JSThread *thread, JSTaggedValue literal);
107 static JSTaggedValue GetNextPropName(JSThread *thread, JSTaggedValue iter);
108 static JSTaggedValue CopyDataProperties(JSThread *thread, JSTaggedValue dst, JSTaggedValue src);
110static JSTaggedValue GetUnmapedArgs(JSThread *thread, JSTaggedType *sp, uint32_t actualNumArgs, ui…
111static JSTaggedValue CopyRestArgs(JSThread *thread, JSTaggedType *sp, uint32_t restNumArgs, uint32…
112 static JSTaggedValue GetIterator(JSThread *thread, JSTaggedValue obj);
113 static JSTaggedValue GetAsyncIterator(JSThread *thread, JSTaggedValue obj);
114 static JSTaggedValue IterNext(JSThread *thread, JSTaggedValue iter);
115 static JSTaggedValue CloseIterator(JSThread *thread, JSTaggedValue iter);
116 static void StModuleVar(JSThread *thread, JSTaggedValue key, JSTaggedValue value);
117 static JSTaggedValue LdModuleVar(JSThread *thread, JSTaggedValue key, bool inner);
118 static void StModuleVar(JSThread *thread, int32_t index, JSTaggedValue value);
119 static JSTaggedValue LdLocalModuleVar(JSThread *thread, int32_t index);
120 static JSTaggedValue LdExternalModuleVar(JSThread *thread, int32_t index);
121static JSTaggedValue CreateRegExpWithLiteral(JSThread *thread, JSTaggedValue pattern, uint8_t flag…
122 static JSTaggedValue GetIteratorNext(JSThread *thread, JSTaggedValue obj, JSTaggedValue method);
124static JSTaggedValue DefineGetterSetterByValue(JSThread *thread, JSTaggedValue obj, JSTaggedValue …
127static JSTaggedValue LdObjByIndex(JSThread *thread, JSTaggedValue obj, uint32_t idx, bool callGett…
129static JSTaggedValue StObjByIndex(JSThread *thread, JSTaggedValue obj, uint32_t idx, JSTaggedValue…
130static JSTaggedValue LdObjByName(JSThread *thread, JSTaggedValue obj, JSTaggedValue prop, bool cal…
132static JSTaggedValue StObjByName(JSThread *thread, JSTaggedValue obj, JSTaggedValue prop, JSTagged…
133static JSTaggedValue LdObjByValue(JSThread *thread, JSTaggedValue obj, JSTaggedValue prop, bool ca…
135static JSTaggedValue StObjByValue(JSThread *thread, JSTaggedValue obj, JSTaggedValue prop, JSTagge…
136static JSTaggedValue TryLdGlobalByNameFromGlobalProto(JSThread *thread, JSTaggedValue global, JSTa…
137 static JSTaggedValue TryStGlobalByName(JSThread *thread, JSTaggedValue prop);
138static JSTaggedValue LdGlobalVarFromGlobalProto(JSThread *thread, JSTaggedValue global, JSTaggedVa…
139 static JSTaggedValue StGlobalVar(JSThread *thread, JSTaggedValue prop, JSTaggedValue value);
140static JSTaggedValue StGlobalRecord(JSThread *thread, JSTaggedValue prop, JSTaggedValue value, boo…
141 static JSTaggedValue LdGlobalRecord(JSThread *thread, JSTaggedValue key);
142static JSTaggedValue TryUpdateGlobalRecord(JSThread *thread, JSTaggedValue prop, JSTaggedValue val…
143static JSTaggedValue StArraySpread(JSThread *thread, JSTaggedValue dst, JSTaggedValue index, JSTag…
145 static JSTaggedValue DefineFunc(JSThread *thread, JSTaggedValue constPool, uint16_t methodId,
148 static JSTaggedValue GetSuperConstructor(JSThread *thread, JSTaggedValue ctor);
149static JSTaggedValue SuperCall(JSThread *thread, JSTaggedValue func, JSTaggedValue newTarget, uint…
151static JSTaggedValue SuperCallSpread(JSThread *thread, JSTaggedValue func, JSTaggedValue newTarget,
153static JSTaggedValue DynamicImport(JSThread *thread, JSTaggedValue specifier, JSTaggedValue func);
154 static JSTaggedValue DefineMethod(JSThread *thread, Method *method, JSTaggedValue homeObject,
156 static JSTaggedValue LdSendableClass(JSThread *thread, JSTaggedValue env, uint16_t level);
157static JSTaggedValue LdSuperByValue(JSThread *thread, JSTaggedValue obj, JSTaggedValue key, JSTagg…
158static JSTaggedValue StSuperByValue(JSThread *thread, JSTaggedValue obj, JSTaggedValue key, JSTagg…
160 static JSTaggedValue NotifyInlineCache(JSThread *thread, Method *method);
161static JSTaggedValue ThrowReferenceError(JSThread *thread, JSTaggedValue prop, const char *desc);
163static JSTaggedValue ResolveClass(JSThread *thread, JSTaggedValue ctor, TaggedArray *literal, JSTa…
165static JSTaggedValue CloneClassFromTemplate(JSThread *thread, JSTaggedValue ctor, JSTaggedValue ba…
167 static JSTaggedValue CreateClassWithBuffer(JSThread *thread, JSTaggedValue base,
171 static JSTaggedValue CreateSharedClass(JSThread *thread, JSTaggedValue base,
174static JSTaggedValue SetClassConstructorLength(JSThread *thread, JSTaggedValue ctor, JSTaggedValue…
175 static JSTaggedValue GetModuleNamespace(JSThread *thread, JSTaggedValue localName);
176 static JSTaggedValue GetModuleNamespace(JSThread *thread, int32_t index);
177 static JSTaggedValue LdBigInt(JSThread *thread, JSTaggedValue numberBigInt);
178 static JSTaggedValue ThrowTypeError(JSThread *thread, const char *message);
179static JSTaggedValue SetClassInheritanceRelationship(JSThread *thread, JSTaggedValue ctor, JSTagge…
181 static JSTaggedValue AsyncGeneratorResolve(JSThread *thread, JSTaggedValue asyncFuncObj,
183 static JSTaggedValue AsyncGeneratorReject(JSThread *thread, JSTaggedValue asyncFuncObj,
185 static JSTaggedValue CreateAsyncGeneratorObj(JSThread *thread, JSTaggedValue genFunc);
187 static JSTaggedValue LdPatchVar(JSThread *thread, uint32_t index);
188 static JSTaggedValue StPatchVar(JSThread *thread, uint32_t index, JSTaggedValue value);
190static JSTaggedValue NotifyConcurrentResult(JSThread *thread, JSTaggedValue result, JSTaggedValue …
191static JSTaggedValue DefineField(JSThread *thread, JSTaggedValue obj, JSTaggedValue propKey, JSTag…
192 static JSTaggedValue CreatePrivateProperty(JSThread *thread, JSTaggedValue lexicalEnv,
194 static JSTaggedValue DefinePrivateProperty(JSThread *thread, JSTaggedValue lexicalEnv,
196 static JSTaggedValue LdPrivateProperty(JSThread *thread, JSTaggedValue lexicalEnv,
198 static JSTaggedValue StPrivateProperty(JSThread *thread, JSTaggedValue lexicalEnv,
200 static JSTaggedValue TestIn(JSThread *thread, JSTaggedValue lexicalEnv,
202 static JSTaggedValue UpdateAOTHClass(JSThread *thread, JSTaggedValue jshclass,
206 static JSTaggedValue ThrowSyntaxError(JSThread *thread, const char *message);
207 static JSTaggedValue GetCallSpreadArgs(JSThread *thread, JSTaggedValue array);