Home
last modified time | relevance | path

Searched refs:floatConstTable (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
Dglobal_tables.cpp410 const auto it = floatConstTable.find(floatVal); in DoGetOrCreateFloatConst()
411 if (it != floatConstTable.cend()) { in DoGetOrCreateFloatConst()
416 floatConstTable[floatVal] = floatConst; in DoGetOrCreateFloatConst()
424 const auto it = floatConstTable.find(floatVal); in DoGetOrCreateFloatConstThreadSafe()
425 if (it != floatConstTable.cend()) { in DoGetOrCreateFloatConstThreadSafe()
432 floatConstTable[floatVal] = floatConst; in DoGetOrCreateFloatConstThreadSafe()
493 for (const auto &floatConst : floatConstTable) { in ~FPConstTable()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Dglobal_tables.h720 FPConstTable() : floatConstTable(), doubleConstTable() {}; in FPConstTable()
728 …std::unordered_map<float, MIRFloatConst *> floatConstTable; // map float const value to the ta… variable