Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for load_le64 (0.11 sec)

  1. test/codegen/memcombine.go

    // license that can be found in the LICENSE file.
    
    package codegen
    
    import (
    	"encoding/binary"
    	"runtime"
    )
    
    // ------------- //
    //    Loading    //
    // ------------- //
    
    func load_le64(b []byte) uint64 {
    	// amd64:`MOVQ\s\(.*\),`,-`MOV[BWL]\t[^$]`,-`OR`
    	// s390x:`MOVDBR\s\(.*\),`
    	// arm64:`MOVD\s\(R[0-9]+\),`,-`MOV[BHW]`
    	// ppc64le:`MOVD\s`,-`MOV[BHW]Z`
    	// ppc64:`MOVDBR\s`,-`MOV[BHW]Z`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top