Home
last modified time | relevance | path

Searched refs:passedEntity (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/flang/lib/Lower/
H A DCallInterface.cpp181 const PassedEntity &passedEntity, mlir::Value arg) { in placeInput() argument
183 passedEntity.firArgument >= 0 && in placeInput()
186 actualInputs[passedEntity.firArgument] = arg; in placeInput()
190 const PassedEntity &passedEntity, mlir::Value addr, mlir::Value len) { in placeAddressAndLengthInput() argument
192 static_cast<int>(actualInputs.size()) > passedEntity.firLength && in placeAddressAndLengthInput()
193 passedEntity.firArgument >= 0 && passedEntity.firLength >= 0 && in placeAddressAndLengthInput()
196 actualInputs[passedEntity.firArgument] = addr; in placeAddressAndLengthInput()
197 actualInputs[passedEntity.firLength] = len; in placeAddressAndLengthInput()
472 PassedEntity &passedEntity = in mapBackInputToPassedEntity() local
477 passedEntity.firLength = firValue; in mapBackInputToPassedEntity()
[all …]
/llvm-project-15.0.7/flang/include/flang/Lower/
H A DCallInterface.h289 void placeInput(const PassedEntity &passedEntity, mlir::Value arg);
290 void placeAddressAndLengthInput(const PassedEntity &passedEntity,