Overview
| Comment: | lookup-asm-mips64-n64-elf.S: Tagged pointers |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | tagged-pointers |
| Files: | files | file ages | folders |
| SHA3-256: |
681c2e3087f73bdaafdcc60c8d88a4f1 |
| User & Date: | js on 2020-07-06 20:07:13 |
| Other Links: | branch diff | manifest | tags |
Context
|
2020-07-06
| ||
| 23:36 | lookup-asm-mips-elf.S: Support tagged pointers (check-in: 8870c49908 user: js tags: tagged-pointers) | |
| 20:07 | lookup-asm-mips64-n64-elf.S: Tagged pointers (check-in: 681c2e3087 user: js tags: tagged-pointers) | |
|
2020-07-05
| ||
| 14:06 | lookup-asm-x86(_64)-*.S: Shave off one instruction (check-in: 0579faebb2 user: js tags: tagged-pointers) | |
Changes
Modified src/runtime/lookup-asm/lookup-asm-mips64-n64-elf.S from [93cafb41c5] to [eccb0ae4e7].
| ︙ | |||
25 26 27 28 29 30 31 | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | + + + - + - + - + - + - + + + + + + + + + + + + + + + - + | .globl objc_msg_lookup_super_stret .section .text .macro generate_lookup name not_found \name: beqz $a0, 0f andi $t0, $a0, 1 bnez $t0, .Ltagged_pointer_\name |
| ︙ |