/arkcompiler/runtime_core/static_core/assembler/ |
H A D | context.cpp | 34 token = std::string_view(&*(tokens[number - 1].wholeLine.begin() + tokens[number - 1].boundLeft), in Make() 35 tokens[number - 1].boundRight - tokens[number - 1].boundLeft); in Make() 146 token = std::string_view(&*(tokens[number - 1].wholeLine.begin() + tokens[number - 1].boundLeft), in operator ++() 147 tokens[number - 1].boundRight - tokens[number - 1].boundLeft); in operator ++() 162 token = std::string_view(&*(tokens[number - 1].wholeLine.begin() + tokens[number - 1].boundLeft), in operator ++() 163 tokens[number - 1].boundRight - tokens[number - 1].boundLeft); in operator ++() 183 token = std::string_view(&*(tokens[number - 1].wholeLine.begin() + tokens[number - 1].boundLeft), in operator --() 184 tokens[number - 1].boundRight - tokens[number - 1].boundLeft); in operator --() 201 token = std::string_view(&*(tokens[number - 1].wholeLine.begin() + tokens[number - 1].boundLeft), in operator --() 202 tokens[number - 1].boundRight - tokens[number - 1].boundLeft); in operator --() [all...] |
H A D | assembly-file-location.h | 26 size_t boundLeft = 0; member in ark::pandasm::FileLocation 33 : wholeLine(std::move(fC)), boundLeft(bL), boundRight(bR), lineNumber(lN), isDefined(d) in FileLocation()
|
H A D | assembly-parser.h | 112 context_.tokens[static_cast<int>(context_.number) + tokenShift - 1].boundLeft + shift, in GetError() 121 context_.tokens[context_.number - 1].boundLeft + static_cast<size_t>(shift), in GetWarning() 129 return SourcePosition {lineStric_, context_.tokens[context_.number - 1].boundLeft}; in GetCurrentPosition() 235 return item.try_emplace(cid, cid, program_.lang, context_.tokens[context_.number - 1].boundLeft, in TryEmplaceInTable() 260 iter->second.fileLocation->boundLeft = context_.tokens[context_.number - 1].boundLeft; in AddObjectInTable() 276 context_.tokens[context_.number - 1].boundLeft, in TryEmplaceInTable()
|
H A D | assembly-debug.h | 29 size_t boundLeft = 0; member 44 : lineNumber(lN), wholeLine(std::move(fC)), boundLeft(bL), boundRight(bR) in Ins()
|
H A D | lexer.cpp | 178 << std::string_view(&*(fI.wholeLine.begin() + fI.boundLeft), fI.boundRight - fI.boundLeft) in TokenizeString() 289 size_t boundLeft; in LexTokens() local 292 boundLeft = currLine_->pos; in LexTokens() 308 << std::string_view(&*(currLine_->buffer.begin() + boundLeft), boundRight - boundLeft) in LexTokens() 310 << "type: " << TokenTypeWhat(LexGetType(boundLeft, boundRight)) << ")"; in LexTokens() 312 currLine_->tokens.emplace_back(boundLeft, boundRight, LexGetType(boundLeft, boundRight), currLine_->buffer); in LexTokens()
|
H A D | assembly-field.h | 36 size_t boundLeft = 0; member
|
H A D | lexer.h | 68 size_t boundLeft; /* right and left bounds of tokens */ member 75 : wholeLine(std::move(begOfLine)), boundLeft(bL), boundRight(bR), type(t) in Token()
|
H A D | assembly-parser.cpp | 698 k.second.fileLocation->boundLeft, k.second.fileLocation->boundRight, in ParseResetFunctionLabelsAndParams() 719 "", debug.boundLeft, debug.boundRight, debug.wholeLine); in ParseResetFunctionLabelsAndParams() 749 Error::ErrorType::ERR_FUNCTION_MULTIPLE_ALTERNATIVES, "", debug.boundLeft, in ParseInsFromFuncTable() 766 "", debug.boundLeft, debug.boundRight, debug.wholeLine); in ParseInsFromFuncTable() 778 Error::ErrorType::ERR_BAD_ID_FUNCTION, "", func.fileLocation->boundLeft, in ParseResetFunctionTable() 785 func.fileLocation->boundLeft, func.fileLocation->boundRight, func.fileLocation->wholeLine); in ParseResetFunctionTable() 799 Error::ErrorType::ERR_BAD_FIELD_METADATA, "", fld.boundLeft, fld.boundRight, fld.wholeLine); in ParseResetRecords() 804 fld.boundLeft, fld.boundRight, fld.wholeLine); in ParseResetRecords() 816 Error::ErrorType::ERR_BAD_ID_RECORD, "", record.fileLocation->boundLeft, in ParseResetRecordTable() 1912 field.boundLeft in ParseOperandField() [all...] |
/arkcompiler/runtime_core/static_core/assembler/tests/ |
H A D | lexer_test.cpp | 186 ASSERT_EQ(tok.first[0].boundLeft, 0U); in TEST() 200 ASSERT_EQ(tok.first[0].boundLeft, 0U); in TEST()
|
/arkcompiler/ets_frontend/ets2panda/compiler/debugger/ |
H A D | debuginfoDumper.cpp | 134 WriteProperty("boundLeft", posInfo.boundLeft); in WritePosInfo()
|
/arkcompiler/ets_frontend/ets2panda/compiler/core/ |
H A D | emitter.cpp | 218 pandaIns->insDebug.boundLeft = offset_; in GenInstructionDebugInfo()
|
/arkcompiler/runtime_core/static_core/disassembler/ |
H A D | disassembler.cpp | 304 panda_file::LineTableEntry {static_cast<uint32_t>(method.ins[i].insDebug.boundLeft), lineNumber - 1}); in Serialize() 1827 paIns.insDebug.boundLeft = in GetInstructions()
|