Home
last modified time | relevance | path

Searched refs:CSR (Results 1 – 25 of 104) sorted by relevance

12345

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonGenExtract.cpp99 ConstantInt *CSL = nullptr, *CSR = nullptr, *CM = nullptr; in INITIALIZE_PASS_DEPENDENCY() local
106 bool Match = match(In, m_And(m_Shl(m_LShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
113 Match = match(In, m_And(m_Shl(m_AShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
120 CSR = ConstantInt::get(Type::getInt32Ty(Ctx), 0); in INITIALIZE_PASS_DEPENDENCY()
130 Match = match(In, m_And(m_LShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
137 Match = match(In, m_And(m_AShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
144 Match = match(In, m_Shl(m_LShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
151 Match = match(In, m_Shl(m_AShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
164 uint32_t SR = CSR->getZExtValue(); in INITIALIZE_PASS_DEPENDENCY()
/external/llvm/lib/Target/Hexagon/
DHexagonGenExtract.cpp87 ConstantInt *CSL = 0, *CSR = 0, *CM = 0; in INITIALIZE_PASS_DEPENDENCY() local
94 bool Match = match(In, m_And(m_Shl(m_LShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
101 Match = match(In, m_And(m_Shl(m_AShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
108 CSR = ConstantInt::get(Type::getInt32Ty(Ctx), 0); in INITIALIZE_PASS_DEPENDENCY()
118 Match = match(In, m_And(m_LShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
125 Match = match(In, m_And(m_AShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
132 Match = match(In, m_Shl(m_LShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
139 Match = match(In, m_Shl(m_AShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
152 uint32_t SR = CSR->getZExtValue(); in INITIALIZE_PASS_DEPENDENCY()
DHexagonInstrInfoV3.td27 class T_Call<bit CSR, string ExtStr>
33 let Defs = !if (CSR, VolatileV3.Regs, []);
43 class T_CallPred<bit CSR, bit IfTrue, string ExtStr>
52 let Defs = !if (CSR, VolatileV3.Regs, []);
61 multiclass T_Calls<bit CSR, string ExtStr> {
62 def NAME : T_Call<CSR, ExtStr>;
63 def t : T_CallPred<CSR, 1, ExtStr>;
64 def f : T_CallPred<CSR, 0, ExtStr>;
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/
Dspill-stack-realignment.mir3 # Ensure references to scavenged stack slots in the CSR area use the
6 # alignment padding area is between the CSR area and the SP, so the SP
7 # cannot be used to reference the CSR area.
33 ; Force preserve a CSR to create a hole in the CSR stack region.
Dreverse-csr-restore-seq.mir65 ; The local stack size is not 0, and we can combine the CSR stack size with
68 ; In this case, there is no point of moving the first CSR pair at the end.
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_CSRSparseMatrixComponents.pbtxt14 description: "An array containing CSR matrix row pointers."
18 description: "An array containing CSR matrix column indices."
22 description: "An array containing CSR matrix nonzero values."
24 summary: "Reads out the CSR components at batch `index`."
Dapi_def_SparseMatrixSparseMatMul.pbtxt32 summary: "Sparse-matrix-multiplies two CSR matrices `a` and `b`."
77 # Convert SparseTensors to CSR SparseMatrix
83 # Compute the CSR SparseMatrix matrix multiplication
87 # Convert the CSR SparseMatrix product to a dense Tensor
Dapi_def_SparseMatrixZeros.pbtxt10 description: "An empty CSR matrix with shape `dense_shape`."
Dapi_def_SparseMatrixOrderingAMD.pbtxt50 # Convert SparseTensors to CSR SparseMatrix.
54 # Obtain the AMD Ordering for the CSR SparseMatrix.
Dapi_def_SparseMatrixAdd.pbtxt24 summary: "Sparse addition of two CSR matrices, C = alpha * A + beta * B."
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86MachineFunctionInfo.cpp24 for (const MCPhysReg *CSR = MF->getRegInfo().getCalleeSavedRegs(); in setRestoreBasePointer() local
25 unsigned Reg = *CSR; ++CSR) { in setRestoreBasePointer()
/external/llvm/lib/Target/X86/
DX86MachineFunctionInfo.cpp23 for (const MCPhysReg *CSR = in setRestoreBasePointer() local
25 unsigned Reg = *CSR; in setRestoreBasePointer()
26 ++CSR) in setRestoreBasePointer()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DLiveRegUnits.cpp96 for (const MCPhysReg *CSR = MRI.getCalleeSavedRegs(); CSR && *CSR; ++CSR) in addCalleeSavedRegs() local
97 LiveUnits.addReg(*CSR); in addCalleeSavedRegs()
DMachineFrameInfo.cpp122 for (const MCPhysReg *CSR = MRI.getCalleeSavedRegs(); CSR && *CSR; in getPristineRegs() local
123 ++CSR) in getPristineRegs()
124 BV.set(*CSR); in getPristineRegs()
DRegisterClassInfo.cpp59 const MCPhysReg *CSR = MF->getRegInfo().getCalleeSavedRegs(); in runOnMachineFunction() local
60 if (Update || CSR != CalleeSavedRegs) { in runOnMachineFunction()
64 for (const MCPhysReg *I = CSR; *I; ++I) in runOnMachineFunction()
70 CalleeSavedRegs = CSR; in runOnMachineFunction()
DLivePhysRegs.cpp180 for (const MCPhysReg *CSR = MRI.getCalleeSavedRegs(); CSR && *CSR; ++CSR) in addCalleeSavedRegs() local
181 LiveRegs.addReg(*CSR); in addCalleeSavedRegs()
/external/llvm/lib/CodeGen/
DLivePhysRegs.cpp154 for (const MCPhysReg *CSR = TRI.getCalleeSavedRegs(&MF); CSR && *CSR; ++CSR) in addPristines() local
155 LiveRegs.addReg(*CSR); in addPristines()
DRegisterClassInfo.cpp51 const MCPhysReg *CSR = TRI->getCalleeSavedRegs(MF); in runOnMachineFunction() local
52 if (Update || CSR != CalleeSaved) { in runOnMachineFunction()
57 for (unsigned N = 0; unsigned Reg = CSR[N]; ++N) in runOnMachineFunction()
62 CalleeSaved = CSR; in runOnMachineFunction()
DMachineFunction.cpp662 for (const MCPhysReg *CSR = TRI->getCalleeSavedRegs(&MF); CSR && *CSR; ++CSR) in getPristineRegs() local
663 BV.set(*CSR); in getPristineRegs()
/external/python/cryptography/docs/x509/
Dtutorial.rst7 Creating a Certificate Signing Request (CSR)
16 3. You give your CSR to a CA (but *not* the private key).
50 Next we need to generate a certificate signing request. A typical CSR contains
62 >>> # Generate a CSR
78 ... # Sign the CSR with our private key.
80 >>> # Write our CSR out to disk.
84 Now we can give our CSR to a CA, who will give a certificate to us in return.
100 Like generating a CSR, we start with creating a new private key:
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/X86/
Dspill-nospill.ll5 ; each. x must be spilled, but y will be allocated to a CSR. x's location
31 ; CHECK: movl %eax, %[[CSR:[^ ]*]]
35 ; CHECK: movl %[[CSR]], %ecx
37 ; CHECK: movl %[[CSR]], %ecx
41 ; CHECK: addl %[[CSR]], %eax
/external/perfetto/src/trace_processor/sqlite/
Dsqlite_raw_table.cc198 using CSR = protos::pbzero::ClockSetRateFtraceEvent; in SerializeArgs() typedef
203 WriteArgForField(CSR::kStateFieldNumber); in SerializeArgs()
204 WriteArgForField(CSR::kCpuIdFieldNumber); in SerializeArgs()
207 using CSR = protos::pbzero::ClkSetRateFtraceEvent; in SerializeArgs() typedef
209 WriteValueForField(CSR::kNameFieldNumber); in SerializeArgs()
211 WriteValueForField(CSR::kRateFieldNumber); in SerializeArgs()
/external/tensorflow/tensorflow/python/ops/linalg/sparse/
DBUILD1 # Description: Sparse CSR support for TensorFlow.
/external/llvm/lib/Target/BPF/
DBPFCallingConv.td29 def CSR : CalleeSavedRegs<(add R6, R7, R8, R9, R10)>;
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/
Dspill-csr-frame-ptr-reg-copy.ll3 ; For the CSR copy of s5, it may be possible to see it in

12345