/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/ |
H A D | SparcRegisterInfo.cpp | 55 // FIXME: G1 reserved for now for large imm generation by frame code. in getReservedRegs() 56 Reserved.set(SP::G1); in getReservedRegs() 58 // G1-G4 can be used in applications. in getReservedRegs() 136 // reserving G1 all of the time. in replaceFI() 141 // Insert G1+%lo(offset) into the user. in replaceFI() 142 BuildMI(*MI.getParent(), II, dl, TII.get(SP::SETHIi), SP::G1) in replaceFI() 146 // Emit G1 = G1 + I6 in replaceFI() 147 BuildMI(*MI.getParent(), II, dl, TII.get(SP::ADDrr), SP::G1).addReg(SP::G1) in replaceFI() [all...] |
H A D | SparcFrameLowering.cpp | 64 BuildMI(MBB, MBBI, dl, TII.get(SP::SETHIi), SP::G1) in emitSPAdjustment() 66 BuildMI(MBB, MBBI, dl, TII.get(SP::ORri), SP::G1) in emitSPAdjustment() 67 .addReg(SP::G1).addImm(LO10(NumBytes)); in emitSPAdjustment() 69 .addReg(SP::O6).addReg(SP::G1); in emitSPAdjustment() 77 BuildMI(MBB, MBBI, dl, TII.get(SP::SETHIi), SP::G1) in emitSPAdjustment() 79 BuildMI(MBB, MBBI, dl, TII.get(SP::XORri), SP::G1) in emitSPAdjustment() 80 .addReg(SP::G1).addImm(LOX10(NumBytes)); in emitSPAdjustment() 82 .addReg(SP::O6).addReg(SP::G1); in emitSPAdjustment() 177 regUnbiased = SP::G1; in emitPrologue() 238 BuildMI(MBB, MBBI, dl, TII.get(SP::ORrr), SP::G1) in emitEpilogue() [all …]
|
H A D | SparcRegisterInfo.td | 143 def G1 : Ri< 1, "g1">, DwarfRegNum<[1]>; 299 def G0_G1 : Rdi< 0, "g0", [G0, G1]>;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | SCCIterator.h | 277 NodeInfo *G1 = find(&NodeInfoMap[Edge->Source]); in unionGroups() local 281 if (G1 == G2) in unionGroups() 285 if (G1->Rank < G2->Rank) in unionGroups() 286 G1->Group = G2; in unionGroups() 288 G2->Group = G1; in unionGroups() 290 if (G1->Rank == G2->Rank) in unionGroups() 291 G1->Rank++; in unionGroups()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64A57FPLoadBalancing.cpp | 453 llvm::sort(GV, [](const Chain *G1, const Chain *G2) { in colorChainSet() 454 if (G1->size() != G2->size()) in colorChainSet() argument 455 return G1->size() > G2->size(); in colorChainSet() 456 if (G1->requiresFixup() != G2->requiresFixup()) in colorChainSet() 457 return G1->requiresFixup() > G2->requiresFixup(); in colorChainSet() 459 assert((G1 == G2 || (G1->startsBefore(G2) ^ G2->startsBefore(G1))) && in colorChainSet() 461 return G1->startsBefore(G2); in colorChainSet()
|
/freebsd/sys/contrib/libb2/ |
H A D | blake2s-round.h | 44 #define G1(row1,row2,row3,row4,buf) \ macro 80 G1(row1,row2,row3,row4,buf1); \ 85 G1(row1,row2,row3,row4,buf3); \
|
H A D | blake2b-round.h | 47 #define G1(row1l,row2l,row3l,row4l,row1h,row2h,row3h,row4h,b0,b1) \ macro 149 G1(row1l,row2l,row3l,row4l,row1h,row2h,row3h,row4h,b0,b1); \ 154 G1(row1l,row2l,row3l,row4l,row1h,row2h,row3h,row4h,b0,b1); \
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/ |
H A D | blamka-round-ssse3.h | 31 #define G1(A0, B0, C0, D0, A1, B1, C1, D1) \ macro 109 G1(A0, B0, C0, D0, A1, B1, C1, D1); \ 114 G1(A0, B0, C0, D0, A1, B1, C1, D1); \
|
/freebsd/sys/teken/ |
H A D | sequences | 79 G1SCS0 G1 SCS Special Graphics ^[ ) 0 80 G1SCS1 G1 SCS US ASCII ^[ ) 1 81 G1SCS2 G1 SCS Special Graphics ^[ ) 2 82 G1SCSA G1 SCS UK National ^[ ) A 83 G1SCSB G1 SCS US ASCII ^[ ) B
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_generichash/blake2b/ref/ |
H A D | blake2b-compress-sse41.h | 21 #define G1(row1l, row2l, row3l, row4l, row1h, row2h, row3h, row4h, b0, b1) \ macro 93 G1(row1l, row2l, row3l, row4l, row1h, row2h, row3h, row4h, b0, b1); \ 98 G1(row1l, row2l, row3l, row4l, row1h, row2h, row3h, row4h, b0, b1); \
|
H A D | blake2b-compress-ssse3.h | 21 #define G1(row1l, row2l, row3l, row4l, row1h, row2h, row3h, row4h, b0, b1) \ macro 93 G1(row1l, row2l, row3l, row4l, row1h, row2h, row3h, row4h, b0, b1); \ 98 G1(row1l, row2l, row3l, row4l, row1h, row2h, row3h, row4h, b0, b1); \
|
/freebsd/sys/contrib/device-tree/Bindings/media/ |
H A D | renesas,vsp1.txt | 5 It can be found in the Renesas R-Car Gen2, R-Car Gen3, RZ/G1, and RZ/G2 SoCs. 10 - "renesas,vsp1" for the R-Car Gen2 and RZ/G1 VSP1
|
/freebsd/secure/caroot/trusted/ |
H A D | emSign_Root_CA_-_G1.pem | 2 ## emSign Root CA - G1 20 Issuer: C = IN, OU = emSign PKI, O = eMudhra Technologies Limited, CN = emSign Root CA - G1 24 Subject: C = IN, OU = emSign PKI, O = eMudhra Technologies Limited, CN = emSign Root CA - G1
|
H A D | HiPKI_Root_CA_-_G1.pem | 2 ## HiPKI Root CA - G1 20 Issuer: C = TW, O = "Chunghwa Telecom Co., Ltd.", CN = HiPKI Root CA - G1 24 Subject: C = TW, O = "Chunghwa Telecom Co., Ltd.", CN = HiPKI Root CA - G1
|
/freebsd/sys/contrib/device-tree/Bindings/net/ |
H A D | renesas,ravb.txt | 19 R-Car Gen2 and RZ/G1 devices. 43 R-Car Gen2 and RZ/G1 SoCs, and on R-Car H3 (R8A7795), M3-W (R8A77960),
|
/freebsd/sys/contrib/device-tree/Bindings/pci/ |
H A D | pci-rcar-gen2.txt | 18 RZ/G1 compatible device.
|
H A D | rcar-pci.txt | 20 RZ/G1 compatible device.
|
/freebsd/sys/contrib/device-tree/Bindings/i2c/ |
H A D | renesas,iic.txt | 26 - "renesas,rcar-gen2-iic" (generic R-Car Gen2 or RZ/G1
|
H A D | renesas,i2c.txt | 31 "renesas,rcar-gen2-i2c" for a generic R-Car Gen2 or RZ/G1 compatible
|
/freebsd/sys/contrib/device-tree/Bindings/phy/ |
H A D | rcar-gen2-phy.txt | 16 RZ/G1 compatible device.
|
/freebsd/sys/contrib/device-tree/Bindings/net/can/ |
H A D | rcar_can.txt | 28 "renesas,rcar-gen2-can" for a generic R-Car Gen2 or RZ/G1
|
/freebsd/sys/contrib/device-tree/Bindings/mmc/ |
H A D | renesas,sdhi.txt | 36 "renesas,rcar-gen2-sdhi" - a generic R-Car Gen2 and RZ/G1 SDHI
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/Disassembler/ |
H A D | SparcDisassembler.cpp | 61 SP::G0, SP::G1, SP::G2, SP::G3,
|
/freebsd/sys/contrib/device-tree/src/arm/aspeed/ |
H A D | aspeed-bmc-tyan-s7106.dts | 486 /*G1*/ "BMC_PE_SMB_EN_2_N", /* out */
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | DependenceAnalysis.cpp | 1498 APInt G1 = BM.abs(); in findGCD() local 1501 APInt::sdivrem(G0, G1, Q, R); in findGCD() 1505 G0 = G1; G1 = R; in findGCD() 1506 APInt::sdivrem(G0, G1, Q, R); in findGCD() 1508 G = G1; in findGCD()
|