Searched refs:call_target_address (Results 1 – 2 of 2) sorted by relevance
221 Address call_target_address = pc_after - kIntSize; in PatchStackCheckCodeAt() local223 Assembler::target_address_at(call_target_address)); in PatchStackCheckCodeAt()242 ASSERT_EQ(*(call_target_address - 3), kJnsInstruction); in PatchStackCheckCodeAt()243 ASSERT_EQ(*(call_target_address - 2), kJnsOffset); in PatchStackCheckCodeAt()245 ASSERT_EQ(*(call_target_address - 3), kJaeInstruction); in PatchStackCheckCodeAt()246 ASSERT_EQ(*(call_target_address - 2), kJaeOffset); in PatchStackCheckCodeAt()248 ASSERT_EQ(*(call_target_address - 1), kCallInstruction); in PatchStackCheckCodeAt()249 *(call_target_address - 3) = kNopByteOne; in PatchStackCheckCodeAt()250 *(call_target_address - 2) = kNopByteTwo; in PatchStackCheckCodeAt()251 Assembler::set_target_address_at(call_target_address, in PatchStackCheckCodeAt()[all …]
118 Address call_target_address = pc_after - kIntSize; in PatchStackCheckCodeAt() local120 Assembler::target_address_at(call_target_address)); in PatchStackCheckCodeAt()138 ASSERT(*(call_target_address - 3) == 0x73 && // jae in PatchStackCheckCodeAt()139 *(call_target_address - 2) == 0x07 && // offset in PatchStackCheckCodeAt()140 *(call_target_address - 1) == 0xe8); // call in PatchStackCheckCodeAt()141 *(call_target_address - 3) = 0x66; // 2 byte nop part 1 in PatchStackCheckCodeAt()142 *(call_target_address - 2) = 0x90; // 2 byte nop part 2 in PatchStackCheckCodeAt()143 Assembler::set_target_address_at(call_target_address, in PatchStackCheckCodeAt()147 unoptimized_code, call_target_address, replacement_code); in PatchStackCheckCodeAt()155 Address call_target_address = pc_after - kIntSize; in RevertStackCheckCodeAt() local[all …]