Changeset 281555 in webkit for trunk/Source/JavaScriptCore/offlineasm
- Timestamp:
- Aug 25, 2021, 7:49:34 AM (4 years ago)
- Location:
- trunk/Source/JavaScriptCore/offlineasm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/offlineasm/arm64.rb
r281523 r281555 885 885 if operands[0].immediate? 886 886 emitARM64MoveImmediate(operands[0].value, operands[1]) 887 els if operands[0] != operands[1]887 else 888 888 emitARM64("mov", operands, :quad) 889 889 end -
trunk/Source/JavaScriptCore/offlineasm/generate_offset_extractor.rb
r281523 r281555 93 93 94 94 emitCodeInConfiguration(concreteSettings, lowLevelAST, backend) { 95 96 # Windows complains about signed integers being cast to unsigned but we just want the bits.97 outp.puts "\#if COMPILER(MSVC)"98 outp.puts "\#pragma warning(disable:4308)"99 outp.puts "\#endif"100 95 constsList.each_with_index { 101 96 | const, index |
Note:
See TracChangeset
for help on using the changeset viewer.