Home
last modified time | relevance | path

Searched defs:tag (Results 1 – 25 of 137) sorted by relevance

123456

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
Dbin_func_import.cpp44 int64 tag = ReadNum(); in ImportFuncIdInfo() local
61 int64 tag = ReadNum(); in ImportLocalSymbol() local
92 int64 tag = ReadNum(); in ImportPreg() local
113 int64 tag = ReadNum(); in ImportLabel() local
130 int64 tag = ReadNum(); in ImportLocalTypeNameTable() local
142 auto tag = ReadNum(); in ImportFormalsStIdx() local
152 int64 tag = ReadNum(); in ImportAliasMap() local
176 int64 tag = ReadNum(); in ImportReturnValues() local
/arkcompiler/ets_frontend/es2panda/ir/expressions/literals/
DtaggedLiteral.h34 explicit TaggedLiteral(LiteralTag tag) : Literal(AstNodeType::TAGGED_LITERAL), tag_(tag) {} in TaggedLiteral()
35 explicit TaggedLiteral(LiteralTag tag, util::StringView str) in TaggedLiteral()
40 explicit TaggedLiteral(LiteralTag tag, uint16_t num) in TaggedLiteral()
/arkcompiler/toolchain/build/third_party_gn/libuv/src/
Dtrace_ohos.c18 void uv_start_trace(uint64_t tag, const char* name) {} in uv_start_trace()
19 void uv_end_trace(uint64_t tag) {} in uv_end_trace()
/arkcompiler/ets_runtime/test/fuzztest/jsvaluerefbooleavalue_fuzzer/
Djsvaluerefbooleavalue_fuzzer.cpp36 Local<JSValueRef> tag = JSValueRef::False(vm); in BooleaValueFuzztest() local
39 Local<JSValueRef> tag = JSValueRef::True(vm); in BooleaValueFuzztest() local
/arkcompiler/runtime_core/static_core/verification/util/
Denum_tag.h59 static Enum GetValueFor(size_t tag) in GetValueFor()
83 static Enum GetValueFor(size_t tag) in GetValueFor()
Dint_tag.h42 static Int GetValueFor(size_t tag) in GetValueFor()
/arkcompiler/ets_frontend/es2panda/compiler/core/
DswitchBuilder.cpp46 void SwitchBuilder::CompileTagOfSwitch(VReg tag) in CompileTagOfSwitch()
59 void SwitchBuilder::JumpIfCase(VReg tag, uint32_t index) in JumpIfCase()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_atomics.cpp319 uint8_t tag = JSTaggedValue::ToInt8(thread, value); in AtomicReadModifyWriteCase() local
325 int8_t tag = JSTaggedValue::ToInt8(thread, value); in AtomicReadModifyWriteCase() local
331 uint16_t tag = JSTaggedValue::ToInt16(thread, value); in AtomicReadModifyWriteCase() local
337 int16_t tag = JSTaggedValue::ToInt16(thread, value); in AtomicReadModifyWriteCase() local
343 uint32_t tag = JSTaggedValue::ToUint32(thread, value); in AtomicReadModifyWriteCase() local
349 int32_t tag = static_cast<int32_t>(JSTaggedValue::ToUint32(thread, value)); in AtomicReadModifyWriteCase() local
378 … EcmaRuntimeCallInfo *argv, const callbackfun &op, uint8_t &tag) in HandleWithUint8()
401 … EcmaRuntimeCallInfo *argv, const callbackfun &op, int8_t &tag) in HandleWithInt8()
424 … EcmaRuntimeCallInfo *argv, const callbackfun &op, uint16_t &tag) in HandleWithUint16()
447 … EcmaRuntimeCallInfo *argv, const callbackfun &op, int16_t &tag) in HandleWithInt16()
[all …]
/arkcompiler/runtime_core/static_core/runtime/
Dtiming.h89 void NewSection(std::string_view tag) in NewSection()
122 ScopedTiming(std::string_view tag, Timing &timing) : timing_(timing) in ScopedTiming()
/arkcompiler/ets_frontend/ets2panda/compiler/core/
DswitchBuilder.h57 void CompileTagOfSwitch(const VReg tag) in CompileTagOfSwitch()
73 void JumpIfCase(const VReg tag, const uint32_t index) in JumpIfCase()
/arkcompiler/runtime_core/static_core/libpandafile/
Dhelpers.h143 inline std::optional<T> GetOptionalTaggedValue(Span<const uint8_t> sp, E tag, Span<const uint8_t> *… in GetOptionalTaggedValue()
160 inline void EnumerateTaggedValues(Span<const uint8_t> sp, E tag, Callback cb, Span<const uint8_t> *… in EnumerateTaggedValues()
176 inline bool EnumerateTaggedValuesWithEarlyStop(Span<const uint8_t> sp, E tag, Callback cb) in EnumerateTaggedValuesWithEarlyStop()
Dclass_data_accessor.cpp40 auto tag = static_cast<ClassTag>(sp[0]); in ClassDataAccessor() local
Dfield_data_accessor.cpp50 auto tag = static_cast<FieldTag>(sp[0]); in GetValueInternal() local
Dliteral_data_accessor-inl.h47 auto tag = static_cast<LiteralTag>(helpers::Read<TAG_SIZE>(&sp)); in EnumerateLiteralVals() local
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
Dvisualizer_printer.cpp32 void VisualizerPrinter::PrintBeginTag(const char *tag) in PrintBeginTag()
38 void VisualizerPrinter::PrintEndTag(const char *tag) in PrintEndTag()
/arkcompiler/runtime_core/libpandafile/
Dclass_data_accessor.cpp42 auto tag = static_cast<ClassTag>(sp[0]); in ClassDataAccessor() local
Dhelpers.h181 inline std::optional<T> GetOptionalTaggedValue(Span<const uint8_t> sp, E tag, Span<const uint8_t> *… in GetOptionalTaggedValue()
202 inline void EnumerateTaggedValues(Span<const uint8_t> sp, E tag, Callback cb, Span<const uint8_t> *… in EnumerateTaggedValues()
218 inline bool EnumerateTaggedValuesWithEarlyStop(Span<const uint8_t> sp, E tag, Callback cb) in EnumerateTaggedValuesWithEarlyStop()
Dfield_data_accessor.cpp52 auto tag = static_cast<FieldTag>(sp[0]); in GetValueInternal() local
Dliteral_data_accessor-inl.h52 auto tag = static_cast<LiteralTag>(helpers::Read<TAG_SIZE>(&sp)); in EnumerateLiteralVals() local
/arkcompiler/ets_runtime/test/fuzztest/proxyrefisrevoked_fuzzer/
Dproxyrefisrevoked_fuzzer.cpp34 Local<ProxyRef> tag = ProxyRef::New(vm); in ProxyRefIsRevokedFuzzTest() local
/arkcompiler/ets_runtime/test/fuzztest/jsvaluerefwithinint32_fuzzer/
Djsvaluerefwithinint32_fuzzer.cpp35 Local<JSValueRef> tag = StringRef::NewFromUtf8(vm, (char *)data, (int)size); in JSValueRefWithinInt32FuzzTest() local
/arkcompiler/ets_frontend/ets2panda/ir/expressions/
DtaggedTemplateExpression.h33 …explicit TaggedTemplateExpression(Expression *tag, TemplateLiteral *quasi, TSTypeParameterInstanti… in TaggedTemplateExpression()
/arkcompiler/ets_frontend/es2panda/ir/expressions/
DtaggedTemplateExpression.h37 explicit TaggedTemplateExpression(Expression *tag, TemplateLiteral *quasi, in TaggedTemplateExpression()
/arkcompiler/ets_frontend/ets2panda/compiler/base/
Dliterals.h59 … explicit Literal(LiteralTag tag, const util::StringView &str) : tag_(tag), value_(str.Mutf8()) {} in Literal()
128 explicit Literal(LiteralTag tag) : tag_(tag) {} in Literal()
/arkcompiler/ets_runtime/test/fuzztest/jsvalueref_fuzzer/
Djsvalueref_fuzzer.cpp47 Local<JSValueRef> tag = BooleanRef::New(vm, false); in JSValueRefIsBooleanFuzzTest() local

123456