Changeset 48445 in webkit for trunk/JavaScriptCore/assembler
- Timestamp:
- Sep 16, 2009, 4:23:00 PM (16 years ago)
- Location:
- trunk/JavaScriptCore/assembler
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/assembler/ARMv7Assembler.h
r47530 r48445 200 200 } PatternBytes; 201 201 202 ALWAYS_INLINE static int32_tcountLeadingZerosPartial(uint32_t& value, int32_t& zeros, const int N)202 ALWAYS_INLINE static void countLeadingZerosPartial(uint32_t& value, int32_t& zeros, const int N) 203 203 { 204 204 if (value & ~((1<<N)-1)) /* check for any of the top N bits (of 2N bits) are set */ \ -
trunk/JavaScriptCore/assembler/MacroAssemblerARMv7.h
r47530 r48445 533 533 { 534 534 ASSERT_NOT_REACHED(); 535 return jump(); 535 536 } 536 537 … … 1039 1040 } 1040 1041 1041 DataLabel32moveFixedWidthEncoding(Imm32 imm, RegisterID dst)1042 void moveFixedWidthEncoding(Imm32 imm, RegisterID dst) 1042 1043 { 1043 1044 uint32_t value = imm.m_value;
Note:
See TracChangeset
for help on using the changeset viewer.