Searched refs:SmiIndex (Results 1 – 7 of 7) sorted by relevance
/external/v8/src/x64/ |
D | macro-assembler-x64.h | 68 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);
|
D | macro-assembler-x64.cc | 2391 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()
|
D | builtins-x64.cc | 465 SmiIndex index = masm->SmiToIndex(rbx, rbx, kPointerSizeLog2); in Generate_JSConstructStubHelper() 1366 SmiIndex index = masm->SmiToIndex(rbx, rbx, kPointerSizeLog2); in LeaveArgumentsAdaptorFrame()
|
D | code-stubs-x64.cc | 2808 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()
|
D | full-codegen-x64.cc | 1176 SmiIndex index = masm()->SmiToIndex(rax, rax, kPointerSizeLog2); in VisitForInStatement() 3769 SmiIndex index = in EmitGetFromCache()
|
/external/v8/src/ic/x64/ |
D | ic-x64.cc | 210 SmiIndex index = masm->SmiToIndex(scratch, key, kPointerSizeLog2); in GenerateFastArrayLoad()
|
/external/v8/test/cctest/ |
D | test-macro-assembler-x64.cc | 53 using i::SmiIndex; 1488 SmiIndex index = masm->SmiToIndex(rdx, rcx, i); in TestSmiIndex() 1524 TEST(SmiIndex) { in TEST() argument
|