/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | operations_stub_builder.cpp | 137 Branch(TaggedIsInt(left), &leftIsInt, &leftOrRightNotInt); in Less() 141 Branch(TaggedIsInt(right), &rightIsInt, &leftOrRightNotInt); in Less() 170 Branch(TaggedIsInt(left), &leftIsInt1, &leftNotInt1); in Less() 184 Branch(TaggedIsInt(right), &rightIsInt1, &rightNotInt1); in Less() 242 Branch(TaggedIsInt(left), &leftIsInt, &leftOrRightNotInt); in LessEq() 246 Branch(TaggedIsInt(right), &rightIsInt, &leftOrRightNotInt); in LessEq() 275 Branch(TaggedIsInt(left), &leftIsInt1, &leftNotInt1); in LessEq() 289 Branch(TaggedIsInt(right), &rightIsInt1, &rightNotInt1); in LessEq() 346 Branch(TaggedIsInt(left), &leftIsInt, &leftOrRightNotInt); in Greater() 350 Branch(TaggedIsInt(right), &rightIsInt, &leftOrRightNotInt); in Greater() [all …]
|
D | profiler_stub_builder.cpp | 79 Branch(TaggedIsInt(slotValue), &compareLabel, &uninitialize); in ProfileOpType() 307 Branch(TaggedIsInt(value), &isInt, ¬Int); in TaggedToTrackType()
|
D | stub_builder.cpp | 915 Branch(TaggedIsInt(value), &isInt, ¬Int); in TaggedToRepresentation() 953 Branch(TaggedIsInt(value), &isInt, &isNotInt); in TaggedToElementKind() 1064 Branch(TaggedIsInt(value), &valueIsInt, &valueIsNotInt); in SetValueWithRep() 1098 Branch(TaggedIsInt(value), &valueIsInt, &valueIsNotInt); in SetValueWithRep() 1385 Branch(TaggedIsInt(key), &isKeyInt, ¬KeyInt); in TryToElementsIndex() 1592 Branch(TaggedIsInt(*handler), &handlerIsInt, &handlerNotInt); in LoadICWithHandler() 1728 Branch(TaggedIsInt(*varHandler), &handlerIsInt, &handlerNotInt); in ICStoreElement() 1862 Branch(TaggedIsInt(*handler), &handlerIsInt, &handlerNotInt); in StoreICWithHandler() 3871 Branch(TaggedIsInt(left), &leftIsInt, &leftNotInt); in SameValue() 3886 Branch(TaggedIsInt(right), &rightIsInt, &rightNotInt); in SameValue() [all …]
|
D | lcr_lowering.cpp | 283 builder_.Branch(builder_.TaggedIsInt(gate), &isInt, &isDouble); in ConvertTaggedNumberToBool() 306 builder_.Branch(builder_.TaggedIsInt(gate), &isInt, &isDouble); in ConvertTaggedNumberToInt32() 322 builder_.Branch(builder_.TaggedIsInt(gate), &isInt, &isDouble); in ConvertTaggedNumberToFloat64() 375 GateRef typeCheck = builder_.TaggedIsInt(value); in LowerCheckTaggedIntAndConvert()
|
D | builtins_lowering.cpp | 158 builder_.Branch(builder_.TaggedIsInt(para1), &isInt, ¬Int); in TypedAbs()
|
D | circuit_builder-inl.h | 147 Branch(TaggedIsInt(x), &isInt, &isDouble); in GetDoubleOfTNumber() 299 GateRef CircuitBuilder::TaggedIsInt(GateRef x) in TaggedIsInt() function
|
D | stub_builder-inl.h | 561 inline GateRef StubBuilder::TaggedIsInt(GateRef x) in TaggedIsInt() function 563 return env_->GetBuilder()->TaggedIsInt(x); in TaggedIsInt() 568 return BoolAnd(TaggedIsNumber(x), BoolNot(TaggedIsInt(x))); in TaggedIsDouble()
|
D | interpreter_stub.cpp | 2067 Branch(TaggedIsInt(acc), &accIsInt, &accNotInt); in DECLARE_ASM_HANDLER() 2108 Branch(TaggedIsInt(acc), &accIsInt, &accNotInt); in DECLARE_ASM_HANDLER() 2149 Branch(TaggedIsInt(acc), &accIsInt, &accNotInt); in DECLARE_ASM_HANDLER() 2190 Branch(TaggedIsInt(acc), &accIsInt, &accNotInt); in DECLARE_ASM_HANDLER() 2231 Branch(TaggedIsInt(acc), &accIsInt, &accNotInt); in DECLARE_ASM_HANDLER() 2272 Branch(TaggedIsInt(acc), &accIsInt, &accNotInt); in DECLARE_ASM_HANDLER()
|
D | stub_builder.h | 197 GateRef TaggedIsInt(GateRef x);
|
D | circuit_builder.h | 457 inline GateRef TaggedIsInt(GateRef x);
|
D | type_mcr_lowering.cpp | 195 GateRef typeCheck = builder_.TaggedIsInt(value); in LowerIntCheck()
|
D | slowpath_lowering.cpp | 1726 ifBranch = isEqualJump ? builder_.Branch(ifFalse, builder_.TaggedIsInt(value)) in LowerConditionJump() 1727 : builder_.Branch(ifTrue, builder_.TaggedIsInt(value)); in LowerConditionJump()
|
D | circuit_builder.cpp | 1503 Branch(TaggedIsInt(*result), &isInt, &exit); in GetObjectFromConstPool()
|
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
D | builtins_stubs.cpp | 181 Branch(TaggedIsInt(posTag), &posTagIsInt, &posTagNotInt); in DECLARE_BUILTINS() 260 Branch(TaggedIsInt(posTag), &posTagIsInt, &posTagNotInt); in DECLARE_BUILTINS() 376 Branch(TaggedIsInt(startTag), &posTagIsInt, &posTagNotInt); in DECLARE_BUILTINS() 397 Branch(TaggedIsInt(endTag), &endTagIsInt, &endTagNotInt); in DECLARE_BUILTINS() 523 Branch(TaggedIsInt(posTag), &posTagIsInt, &posTagNotInt); in DECLARE_BUILTINS() 1135 Branch(TaggedIsInt(arg0), &argIsInt, &argIsDouble); in DECLARE_BUILTINS()
|