/arkcompiler/ets_runtime/ecmascript/ |
D | ecma_string-inl.h | 95 inline EcmaString *EcmaString::CreateLineString(const EcmaVM *vm, size_t length, bool compressed) in CreateLineString() argument 97 …size_t size = compressed ? LineEcmaString::ComputeSizeUtf8(length) : LineEcmaString::ComputeSizeUt… in CreateLineString() 99 string->SetLength(length, compressed); in CreateLineString() 105 …line EcmaString *EcmaString::CreateLineStringNoGC(const EcmaVM *vm, size_t length, bool compressed) in CreateLineStringNoGC() argument 107 …size_t size = compressed ? LineEcmaString::ComputeSizeUtf8(length) : LineEcmaString::ComputeSizeUt… in CreateLineStringNoGC() 112 string->SetLength(length, compressed); in CreateLineStringNoGC() 118 …String *EcmaString::CreateLineStringWithSpaceType(const EcmaVM *vm, size_t length, bool compressed, in CreateLineStringWithSpaceType() argument 121 …size_t size = compressed ? LineEcmaString::ComputeSizeUtf8(length) : LineEcmaString::ComputeSizeUt… in CreateLineStringWithSpaceType() 137 string->SetLength(length, compressed); in CreateLineStringWithSpaceType() 143 size_t length, bool compressed, MemSpaceType type, uint32_t idOffset) in CreateConstantString() argument [all …]
|
D | ecma_string.h | 91 static EcmaString *CreateLineString(const EcmaVM *vm, size_t length, bool compressed); 92 static EcmaString *CreateLineStringNoGC(const EcmaVM *vm, size_t length, bool compressed); 94 size_t length, bool compressed, MemSpaceType type); 96 …t JSHandle<EcmaString> &left, const JSHandle<EcmaString> &right, uint32_t length, bool compressed); 98 …size_t length, bool compressed, MemSpaceType type = MemSpaceType::SEMI_SPACE, uint32_t idOffset = … 102 uint32_t length, bool compressed); 138 void SetLength(uint32_t length, bool compressed = false) 142 SetMixLength((length << 2U) | (compressed ? STRING_COMPRESSED : STRING_UNCOMPRESSED)); 743 static EcmaString *CreateLineString(const EcmaVM *vm, size_t length, bool compressed) in CreateLineString() argument 745 return EcmaString::CreateLineString(vm, length, compressed); in CreateLineString() [all …]
|
D | ecma_string.cpp | 30 bool compressed = (strLeft->IsUtf8() && strRight->IsUtf8()); in Concat() local 41 return CopyStringToOldSpace(vm, right, rightLength, compressed); in Concat() 50 return CopyStringToOldSpace(vm, left, leftLength, compressed); in Concat() 60 auto newString = CreateLineStringWithSpaceType(vm, newLength, compressed, type); in Concat() 64 if (compressed) { in Concat() 91 …ASSERT_PRINT(compressed == CanBeCompressed(newString), "compressed does not match the real value!"… in Concat() 94 return CreateTreeString(vm, left, right, newLength, compressed); in Concat() 99 uint32_t length, bool compressed) in CopyStringToOldSpace() argument 105 newString = CreateLineStringWithSpaceType(vm, length, compressed, MemSpaceType::OLD_SPACE); in CopyStringToOldSpace() 110 if (compressed) { in CopyStringToOldSpace() [all …]
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | new_object_stub_builder.h | 53 void AllocLineStringObject(Variable *result, Label *exit, GateRef length, bool compressed);
|
D | new_object_stub_builder.cpp | 402 …tStubBuilder::AllocLineStringObject(Variable *result, Label *exit, GateRef length, bool compressed) in AllocLineStringObject() argument 405 if (compressed) { in AllocLineStringObject() 419 SetLength(glue_, result->ReadVariable(), length, compressed); in AllocLineStringObject()
|
D | stub_builder-inl.h | 2363 inline void StubBuilder::SetLength(GateRef glue, GateRef str, GateRef length, bool compressed) in SetLength() argument 2367 if (compressed) { in SetLength()
|
D | stub_builder.h | 640 inline void SetLength(GateRef glue, GateRef str, GateRef length, bool compressed);
|
/arkcompiler/runtime_core/compiler/docs/ |
D | interface_inline_cache.md | 100 because Method* is 8bit align, so Method* can be compressed. So the actual range we can store is:
|
/arkcompiler/runtime_core/docs/ |
D | memory-management.md | 198 If the compressed bit is 1, the string has a compressed payload - 8 bits for each element. 200 If the compressed bit is 0, the string has not been compressed - its payload consists of 16 bits el…
|
D | doxygen.config | 1285 # compressed HTML files.
|
/arkcompiler/ets_frontend/arkguard/ |
D | README.md | 143 …necessary blank spaces and all line feeds. If you use this option, all code will be compressed into
|