當前位置: 首頁>>代碼示例>>Java>>正文


Java AMD64Kind.QWORD屬性代碼示例

本文整理匯總了Java中jdk.vm.ci.amd64.AMD64Kind.QWORD屬性的典型用法代碼示例。如果您正苦於以下問題:Java AMD64Kind.QWORD屬性的具體用法?Java AMD64Kind.QWORD怎麽用?Java AMD64Kind.QWORD使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在jdk.vm.ci.amd64.AMD64Kind的用法示例。


在下文中一共展示了AMD64Kind.QWORD屬性的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: emitIntegerTest

private void emitIntegerTest(Value a, Value b) {
    assert ((AMD64Kind) a.getPlatformKind()).isInteger();
    OperandSize size = a.getPlatformKind() == AMD64Kind.QWORD ? QWORD : DWORD;
    if (isJavaConstant(b) && NumUtil.is32bit(asJavaConstant(b).asLong())) {
        append(new AMD64BinaryConsumer.ConstOp(AMD64MIOp.TEST, size, asAllocatable(a), (int) asJavaConstant(b).asLong()));
    } else if (isJavaConstant(a) && NumUtil.is32bit(asJavaConstant(a).asLong())) {
        append(new AMD64BinaryConsumer.ConstOp(AMD64MIOp.TEST, size, asAllocatable(b), (int) asJavaConstant(a).asLong()));
    } else if (isAllocatableValue(b)) {
        append(new AMD64BinaryConsumer.Op(AMD64RMOp.TEST, size, asAllocatable(b), asAllocatable(a)));
    } else {
        append(new AMD64BinaryConsumer.Op(AMD64RMOp.TEST, size, asAllocatable(a), asAllocatable(b)));
    }
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:13,代碼來源:AMD64LIRGenerator.java

示例2: emitNarrow

@Override
public Value emitNarrow(Value inputVal, int bits) {
    if (inputVal.getPlatformKind() == AMD64Kind.QWORD && bits <= 32) {
        // TODO make it possible to reinterpret Long as Int in LIR without move
        return emitConvertOp(LIRKind.combine(inputVal).changeType(AMD64Kind.DWORD), AMD64RMOp.MOV, DWORD, inputVal);
    } else {
        return inputVal;
    }
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:9,代碼來源:AMD64ArithmeticLIRGenerator.java

示例3: emitBitCount

@Override
public Variable emitBitCount(Value value) {
    Variable result = getLIRGen().newVariable(LIRKind.combine(value).changeType(AMD64Kind.DWORD));
    assert ((AMD64Kind) value.getPlatformKind()).isInteger();
    if (value.getPlatformKind() == AMD64Kind.QWORD) {
        getLIRGen().append(new AMD64Unary.RMOp(POPCNT, QWORD, result, getLIRGen().asAllocatable(value)));
    } else {
        getLIRGen().append(new AMD64Unary.RMOp(POPCNT, DWORD, result, getLIRGen().asAllocatable(value)));
    }
    return result;
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:11,代碼來源:AMD64ArithmeticLIRGenerator.java

示例4: emitBitScanReverse

@Override
public Variable emitBitScanReverse(Value value) {
    Variable result = getLIRGen().newVariable(LIRKind.combine(value).changeType(AMD64Kind.DWORD));
    assert ((AMD64Kind) value.getPlatformKind()).isInteger();
    if (value.getPlatformKind() == AMD64Kind.QWORD) {
        getLIRGen().append(new AMD64Unary.RMOp(BSR, QWORD, result, getLIRGen().asAllocatable(value)));
    } else {
        getLIRGen().append(new AMD64Unary.RMOp(BSR, DWORD, result, getLIRGen().asAllocatable(value)));
    }
    return result;
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:11,代碼來源:AMD64ArithmeticLIRGenerator.java

示例5: emitCountLeadingZeros

@Override
public Value emitCountLeadingZeros(Value value) {
    Variable result = getLIRGen().newVariable(LIRKind.combine(value).changeType(AMD64Kind.DWORD));
    assert ((AMD64Kind) value.getPlatformKind()).isInteger();
    if (value.getPlatformKind() == AMD64Kind.QWORD) {
        getLIRGen().append(new AMD64Unary.RMOp(LZCNT, QWORD, result, getLIRGen().asAllocatable(value)));
    } else {
        getLIRGen().append(new AMD64Unary.RMOp(LZCNT, DWORD, result, getLIRGen().asAllocatable(value)));
    }
    return result;
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:11,代碼來源:AMD64ArithmeticLIRGenerator.java

示例6: emitCountTrailingZeros

@Override
public Value emitCountTrailingZeros(Value value) {
    Variable result = getLIRGen().newVariable(LIRKind.combine(value).changeType(AMD64Kind.DWORD));
    assert ((AMD64Kind) value.getPlatformKind()).isInteger();
    if (value.getPlatformKind() == AMD64Kind.QWORD) {
        getLIRGen().append(new AMD64Unary.RMOp(TZCNT, QWORD, result, getLIRGen().asAllocatable(value)));
    } else {
        getLIRGen().append(new AMD64Unary.RMOp(TZCNT, DWORD, result, getLIRGen().asAllocatable(value)));
    }
    return result;
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:11,代碼來源:AMD64ArithmeticLIRGenerator.java


注:本文中的jdk.vm.ci.amd64.AMD64Kind.QWORD屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。