• Home
  • Raw
  • Download

Lines Matching full:bool

31 …NativeInlineLowering(Circuit *circuit, CompilationConfig* cmpCfg, PassContext *ctx, bool enableLog,  in NativeInlineLowering()
49 std::optional<std::pair<size_t, bool>> GetCallInfo(GateRef gate);
50 void TryInlineStringFromCharCode(GateRef gate, size_t argc, bool skipThis);
51 void TryInlineStringCharCodeAt(GateRef gate, size_t argc, bool skipThis);
52 void TryInlineStringSubstring(GateRef gate, size_t argc, bool skipThis);
53 void TryInlineStringSubStr(GateRef gate, size_t argc, bool skipThis);
54 void TryInlineStringSlice(GateRef gate, size_t argc, bool skipThis);
55 void TryInlineNumberIsFinite(GateRef gate, size_t argc, bool skipThis);
56 void TryInlineNumberIsInteger(GateRef gate, size_t argc, bool skipThis);
57 void TryInlineNumberIsNaN(GateRef gate, size_t argc, bool skipThis);
58 void TryInlineNumberParseFloat(GateRef gate, size_t argc, bool skipThis);
59 void TryInlineNumberParseInt(GateRef gate, size_t argc, bool skipThis);
60 void TryInlineNumberIsSafeInteger(GateRef gate, size_t argc, bool skipThis);
62 const GateMetaData* op, bool skipThis);
64 bool skipThis);
66 bool skipThis);
68 bool skipThis);
70 bool skipThis);
72 bool skipThis);
74 double defaultValue, bool skipThis);
75 void TryInlineMathAbsBuiltin(GateRef gate, size_t argc, bool skipThis);
76 void TryInlineMathClz32Builtin(GateRef gate, size_t argc, bool skipThis);
77 …void TryInlineArrayBufferIsView(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThi…
78 void TryInlineBigIntAsIntN(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
79 void TryInlineDataViewGet(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
80 void TryInlineDataViewSet(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
82 const GateMetaData* op, bool skipThis);
83 void TryInlineDateGetTime(GateRef gate, size_t argc, bool skipThis);
85 const GateMetaData* op, bool skipThis);
86 void TryInlineObjectIs(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
87 …void TryInlineObjectGetPrototypeOf(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skip…
88 … void TryInlineObjectGetProto(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
89 void TryInlineObjectCreate(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
90 …void TryInlineObjectIsPrototypeOf(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipT…
91 …void TryInlineObjectHasOwnProperty(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skip…
92 …void TryInlineReflectGetPrototypeOf(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool ski…
93 void TryInlineReflectGet(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
94 void TryInlineReflectHas(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
95 …void TryInlineReflectConstruct(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis…
96 void TryInlineReflectApply(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
97 …void TryInlineFunctionPrototypeApply(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool sk…
98 …void TryInlineFunctionPrototypeBind(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool ski…
99 …void TryInlineFunctionPrototypeCall(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool ski…
100 …eFunctionPrototypeHasInstance(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
102 void TryInlineBigIntConstructor(GateRef gate, size_t argc, bool skipThis);
105 …void TryInlineIndexOfIncludes(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
106 void TryInlineArrayIterator(GateRef gate, BuiltinsStubCSigns::ID id, bool skipThis);
107 void TryInlineArrayForEach(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
108 …void TryInlineArrayFindOrFindIndex(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skip…
109 void TryInlineArrayFilter(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
110 void TryInlineArrayMap(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
111 void TryInlineArraySome(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
112 void TryInlineArrayEvery(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
113 void TryInlineArrayPop(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
114 void TryInlineArrayPush(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
115 void TryInlineArraySlice(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
116 void TryInlineArraySort(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, bool skipThis);
118 bool EnableLog() const in EnableLog()
128 bool Uncheck() const in Uncheck()
133 bool EnableTrace() const in EnableTrace()
143 bool enableLog_;
145 bool nocheck_;
146 bool traceInline_;
147 bool enableMutantArray_;