Home
last modified time | relevance | path

Searched refs:SmiIndex (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/x64/
Dmacro-assembler-x64.h68 struct SmiIndex { struct
69 SmiIndex(Register index_register, ScaleFactor scale) in SmiIndex() function
725 SmiIndex SmiToIndex(Register dst, Register src, int shift);
728 SmiIndex SmiToNegativeIndex(Register dst, Register src, int shift);
Dmacro-assembler-x64.cc2391 SmiIndex MacroAssembler::SmiToIndex(Register dst, in SmiToIndex()
2406 return SmiIndex(dst, times_1); in SmiToIndex()
2418 return SmiIndex(dst, times_1); in SmiToIndex()
2420 return SmiIndex(dst, static_cast<ScaleFactor>(shift - 1)); in SmiToIndex()
2425 SmiIndex MacroAssembler::SmiToNegativeIndex(Register dst, in SmiToNegativeIndex()
2440 return SmiIndex(dst, times_1); in SmiToNegativeIndex()
2450 return SmiIndex(dst, times_1); in SmiToNegativeIndex()
2452 return SmiIndex(dst, static_cast<ScaleFactor>(shift - 1)); in SmiToNegativeIndex()
Dbuiltins-x64.cc465 SmiIndex index = masm->SmiToIndex(rbx, rbx, kPointerSizeLog2); in Generate_JSConstructStubHelper()
1366 SmiIndex index = masm->SmiToIndex(rbx, rbx, kPointerSizeLog2); in LeaveArgumentsAdaptorFrame()
Dcode-stubs-x64.cc2808 SmiIndex index = masm->SmiToIndex(kScratchRegister, code_, kPointerSizeLog2); in GenerateFast()
3031 SmiIndex smi_as_index = masm->SmiToIndex(rdx, rdx, times_1); in Generate()
3054 SmiIndex smi_as_index = masm->SmiToIndex(rdx, rdx, times_2); in Generate()
Dfull-codegen-x64.cc1176 SmiIndex index = masm()->SmiToIndex(rax, rax, kPointerSizeLog2); in VisitForInStatement()
3769 SmiIndex index = in EmitGetFromCache()
/external/v8/src/ic/x64/
Dic-x64.cc210 SmiIndex index = masm->SmiToIndex(scratch, key, kPointerSizeLog2); in GenerateFastArrayLoad()
/external/v8/test/cctest/
Dtest-macro-assembler-x64.cc53 using i::SmiIndex;
1488 SmiIndex index = masm->SmiToIndex(rdx, rcx, i); in TestSmiIndex()
1524 TEST(SmiIndex) { in TEST() argument